File size: 2,122 Bytes
fe5005f
 
 
 
c3883a9
 
fe5005f
 
c3883a9
 
fe5005f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c3883a9
fe5005f
c3883a9
 
fe5005f
 
 
c3883a9
612150f
fe5005f
 
 
 
 
 
 
 
 
612150f
c3883a9
fe5005f
 
 
 
 
 
 
 
 
 
 
 
612150f
 
fe5005f
ef81ad8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from flask import Flask, render_template, redirect, url_for, request
import csv
import telegram
from dotenv import load_dotenv
import os

load_dotenv()

app = Flask(__name__)

# Configuration Telegram
TELEGRAM_TOKEN = "7126991043:AAEzeKswNo6eO7oJA49Hxn_bsbzgzUoJ-6A" # Votre jeton de bot Telegram
TELEGRAM_CHAT_ID = "-1002081124539" # L'identifiant du groupe

bot = telegram.Bot(token=TELEGRAM_TOKEN)


# Chargement du dataset de traductions
def load_translations(filename):
    translations = []
    with open(filename, 'r', encoding='utf-8') as file:
        reader = csv.DictReader(file)
        for i, row in enumerate(reader):
            translations.append({
                "id": i,
                "fr": row["fr"],
                "yi": row["yi"],
                "likes": 0,
                "dislikes": 0,
                "feedback_sent": False
            })
    return translations

translations = load_translations('translations.csv') # Votre dataset au format csv


@app.route('/')
def index():
    return render_template('index.html', translations=translations)


@app.route('/vote/<int:id>/<string:action>')
def vote(id, action):
    translation = next((t for t in translations if t["id"] == id), None)
    if translation:
        if action == "like":
            translation["likes"] += 1
        elif action == "dislike":
            translation["dislikes"] += 1
    return redirect(url_for('index'))


@app.route('/submit_feedback/<int:id>', methods=['POST'])
def submit_feedback(id):
    translation = next((t for t in translations if t["id"] == id), None)
    if translation and not translation["feedback_sent"]:
        feedback = request.form['feedback']
        message = f"Feedback sur la traduction #{translation['id']}:\n\n" \
                  f"Français: {translation['fr']}\n\n" \
                  f"Yipunu: {translation['yi']}\n\n" \
                  f"Avis de l'utilisateur:\n{feedback}"
        bot.send_message(chat_id=TELEGRAM_CHAT_ID, text=message)
        translation["feedback_sent"] = True
    return redirect(url_for('index'))


if __name__ == '__main__':
    app.run(debug=True)