|
import streamlit as st |
|
import os |
|
import random |
|
import hashlib |
|
import json |
|
from datetime import datetime |
|
from collections import Counter |
|
import re |
|
import time |
|
|
|
|
|
def generate_user_hash(): |
|
if 'user_hash' not in st.session_state: |
|
session_id = str(random.getrandbits(128)) |
|
hash_object = hashlib.md5(session_id.encode()) |
|
st.session_state['user_hash'] = hash_object.hexdigest()[:8] |
|
return st.session_state['user_hash'] |
|
|
|
|
|
def load_vote_history(): |
|
try: |
|
with open('vote_history.json', 'r') as f: |
|
return json.load(f) |
|
except FileNotFoundError: |
|
return {'images': {}, 'users': {}, 'words': {}} |
|
|
|
|
|
def save_vote_history(history): |
|
with open('vote_history.json', 'w') as f: |
|
json.dump(history, f) |
|
|
|
|
|
def update_history_md(image_name, user_hash): |
|
with open('history.md', 'a') as f: |
|
f.write(f"- {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} - User {user_hash} voted for {image_name}\n") |
|
|
|
|
|
def extract_words(filename): |
|
words = re.findall(r'\w+', filename.lower()) |
|
return [word for word in words if len(word) > 2] |
|
|
|
|
|
def update_word_counts(history, image_name): |
|
words = extract_words(image_name) |
|
for word in words: |
|
if word not in history['words']: |
|
history['words'][word] = 0 |
|
history['words'][word] += 1 |
|
|
|
|
|
def display_images(image_dir): |
|
col1, col2 = st.columns(2) |
|
valid_extensions = ('.png', '.jpg', '.jpeg', '.gif', '.bmp', '.tiff', '.webp') |
|
images = [f for f in os.listdir(image_dir) if f.lower().endswith(valid_extensions)] |
|
|
|
if len(images) < 2: |
|
st.error("Not enough images in the directory.") |
|
return |
|
|
|
image1, image2 = random.sample(images, 2) |
|
with col1: |
|
st.image(os.path.join(image_dir, image1)) |
|
if st.button(f"Upvote {image1}", key=f"upvote_{image1}"): |
|
handle_vote(image1) |
|
|
|
with col2: |
|
st.image(os.path.join(image_dir, image2)) |
|
if st.button(f"Upvote {image2}", key=f"upvote_{image2}"): |
|
handle_vote(image2) |
|
|
|
|
|
def handle_vote(image_name): |
|
user_hash = generate_user_hash() |
|
vote_history = load_vote_history() |
|
|
|
if image_name not in vote_history['images']: |
|
vote_history['images'][image_name] = {'votes': 0, 'users': {}} |
|
|
|
if user_hash not in vote_history['users']: |
|
vote_history['users'][user_hash] = 0 |
|
|
|
vote_history['images'][image_name]['votes'] += 1 |
|
if user_hash not in vote_history['images'][image_name]['users']: |
|
vote_history['images'][image_name]['users'][user_hash] = 0 |
|
vote_history['images'][image_name]['users'][user_hash] += 1 |
|
vote_history['users'][user_hash] += 1 |
|
|
|
update_word_counts(vote_history, image_name) |
|
save_vote_history(vote_history) |
|
update_history_md(image_name, user_hash) |
|
st.success(f"Upvoted {image_name}! Total votes: {vote_history['images'][image_name]['votes']}") |
|
|
|
|
|
st.session_state.last_interaction = time.time() |
|
|
|
|
|
def show_vote_history(): |
|
st.sidebar.title("Vote History") |
|
vote_history = load_vote_history() |
|
|
|
|
|
sorted_users = sorted(vote_history['users'].items(), key=lambda x: x[1], reverse=True) |
|
|
|
st.sidebar.subheader("User Vote Totals") |
|
for user_hash, votes in sorted_users: |
|
st.sidebar.write(f"User {user_hash}: {votes} votes") |
|
|
|
|
|
sorted_images = sorted(vote_history['images'].items(), key=lambda x: x[1]['votes'], reverse=True) |
|
|
|
st.sidebar.subheader("Image Vote Totals") |
|
for i, (image_name, data) in enumerate(sorted_images): |
|
votes = data['votes'] |
|
st.sidebar.write(f"{image_name}: {votes} votes") |
|
|
|
|
|
if i < 3: |
|
st.sidebar.image(os.path.join('.', image_name), caption=f"#{i+1}: {image_name}", width=150) |
|
|
|
|
|
st.sidebar.subheader("Top 3 Words in Voted Images") |
|
top_words = sorted(vote_history['words'].items(), key=lambda x: x[1], reverse=True)[:3] |
|
for word, count in top_words: |
|
st.sidebar.write(f"{word}: {count} occurrences") |
|
|
|
|
|
def add_refresh_rate_slider(): |
|
st.sidebar.subheader("Refresh Settings") |
|
refresh_rate = st.sidebar.slider("Refresh rate (seconds)", 0, 120, 30, |
|
help="Set to 0 for no auto-refresh") |
|
return refresh_rate |
|
|
|
|
|
def main(): |
|
st.title("Image Voting App") |
|
|
|
|
|
if 'last_interaction' not in st.session_state: |
|
st.session_state.last_interaction = time.time() |
|
|
|
|
|
show_vote_history() |
|
|
|
|
|
image_dir = '.' |
|
display_images(image_dir) |
|
|
|
|
|
st.sidebar.subheader("Your User ID") |
|
st.sidebar.write(generate_user_hash()) |
|
|
|
|
|
refresh_rate = add_refresh_rate_slider() |
|
|
|
|
|
if refresh_rate > 0: |
|
time_since_last_interaction = time.time() - st.session_state.last_interaction |
|
if time_since_last_interaction >= refresh_rate: |
|
st.session_state.last_interaction = time.time() |
|
st.rerun() |
|
|
|
|
|
if st.button("Refresh Now"): |
|
st.session_state.last_interaction = time.time() |
|
st.rerun() |
|
|
|
|
|
if __name__ == "__main__": |
|
main() |