pywallter/views/blog.py

120 lines
5.1 KiB
Python
Raw Normal View History

2020-11-29 02:05:19 +01:00
# -*- coding: utf-8 -*-
2022-08-06 18:22:24 +02:00
from flask import Blueprint, escape, render_template, session, redirect, url_for, request, flash, abort, Flask
2020-11-29 02:05:19 +01:00
import time
import sqlite3
from markdown import markdown
2022-07-10 15:09:03 +02:00
postit = Blueprint('post-it', __name__, template_folder='templates')
2020-11-29 02:05:19 +01:00
2022-08-06 18:22:24 +02:00
app = Flask( 'pywallter' )
app.config.from_pyfile('config.py')
#### Variables ####################################################################################
DOSSIER_PERSO= app.config['DOSSIER_APP']
extensionimg = app.config['EXT_IMG']
DATABASE = app.config['DATABASE']
2022-08-06 23:49:16 +02:00
BASE_URL = app.config['BASE_URL']
2022-08-06 18:22:24 +02:00
##################################################################################################
2020-11-29 02:05:19 +01:00
2022-07-10 15:09:03 +02:00
@postit.route('/post-it/', methods=['GET', 'POST'])
2020-11-29 02:05:19 +01:00
def racine_blog():
if 'username' in session:
UTILISATEUR='%s'% escape(session['username'])
if request.method == 'POST':
title= request.form['title']
content = request.form['content']
2020-11-29 02:05:19 +01:00
#category = request.form['category']
status = request.form['status']
TIME=time.strftime("%A %d %B %Y %H:%M:%S")
2022-08-06 18:22:24 +02:00
conn = sqlite3.connect(DATABASE) # Connexion la base de donne
2020-11-29 02:05:19 +01:00
cursor = conn.cursor() # Création de l'objet "curseur"
2022-07-10 15:09:03 +02:00
cursor.execute("""INSERT INTO posts(title, content, time, author, status) VALUES(?, ?, ?, ?, ?)""",
(title, content, TIME, UTILISATEUR, status)) # Insérer des valeurs
2020-11-29 02:05:19 +01:00
conn.commit()
2022-07-10 15:09:03 +02:00
cursor.execute("""SELECT title, content, time, author, status, avatar, nom, prenom, age FROM posts INNER JOIN users ON author = name""")
posts = [dict(title=row[0], content=row[1], time=row[2], author=row[3],
status=row[4], avatar=row[5], nom=row[6], prenom=row[7], age=row[8])
for row in reversed(cursor.fetchall())]
2020-11-29 02:05:19 +01:00
conn.close()
return render_template('blog.html', posts=posts)
else:
2022-08-06 18:22:24 +02:00
conn = sqlite3.connect(DATABASE) # Connexion à la base de donnée
2020-11-29 02:05:19 +01:00
cursor = conn.cursor() # Création de l'objet "curseur"
2022-07-10 15:09:03 +02:00
cursor.execute("""SELECT title, content, time, author, status, avatar, nom, prenom, age FROM posts INNER JOIN users ON author = name""")
posts = [dict(title=row[0], content=row[1], time=row[2], author=row[3],
status=row[4], avatar=row[5], nom=row[6], prenom=row[7], age=row[8])
for row in reversed(cursor.fetchall())]
2020-11-29 02:05:19 +01:00
conn.close()
for post in posts:
post['content'] = markdown(post['content'])
return render_template('blog.html', section='Post-it', posts=posts)
2020-11-29 02:05:19 +01:00
else:
2022-08-06 23:49:16 +02:00
return redirect(BASE_URL, code=401)
2020-11-29 02:05:19 +01:00
2022-07-10 15:09:03 +02:00
@postit.route('/delete/<post>')
2020-11-29 02:05:19 +01:00
def delete(post):
if 'username' in session :
2022-08-06 18:22:24 +02:00
conn = sqlite3.connect(DATABASE) # Connexion à la base de donnée
2020-11-29 02:05:19 +01:00
cursor = conn.cursor() # Création de l'objet "curseur"
cursor.execute("""DELETE FROM posts WHERE title=?""", (post,))
conn.commit()
conn.close()
2022-07-10 15:09:03 +02:00
return redirect(url_for('post-it.racine_blog'))
2020-11-29 02:05:19 +01:00
else:
2022-08-06 23:49:16 +02:00
return redirect(BASE_URL, code=401) # sinon on redirige vers login
2020-11-29 02:05:19 +01:00
2022-07-10 15:09:03 +02:00
@postit.route('/edit/<post>', methods=['GET', 'POST'])
2020-11-29 02:05:19 +01:00
def edit(post):
if 'username' in session :
if request.method == 'POST' :
newtitle = request.form['title']
newcontent = request.form['content']
2020-11-29 02:05:19 +01:00
newstatus = request.form['status']
2022-08-06 18:22:24 +02:00
conn = sqlite3.connect(DATABASE)
2020-11-29 02:05:19 +01:00
cursor = conn.cursor()
cursor.execute("""UPDATE posts SET title=?, content=?, status=? WHERE title=?""",
(newtitle, newcontent, newstatus, post,))
2020-11-29 02:05:19 +01:00
conn.commit()
conn.close()
2022-07-10 15:09:03 +02:00
return redirect(url_for('post-it.racine_blog'))
2020-11-29 02:05:19 +01:00
else:
2022-08-06 18:22:24 +02:00
conn = sqlite3.connect(DATABASE) # Connexion à la base de donnée
2020-11-29 02:05:19 +01:00
cursor = conn.cursor() # Création de l'objet "curseur"
cursor.execute("""SELECT title, content FROM posts WHERE title=?""", (post,))
2022-08-06 18:22:24 +02:00
oldpost = cursor.fetchone()
2020-11-29 02:05:19 +01:00
conn.close()
return render_template('postedit.html',
section='Post-it',
oldpost=oldpost)
2020-11-29 02:05:19 +01:00
else:
2022-08-06 18:22:24 +02:00
2022-08-06 23:49:16 +02:00
return redirect(BASE_URL, code=401)
2022-08-06 18:22:24 +02:00
@postit.route('/postit/board', methods=['GET'])
def viewsheet():
if 'username' in session:
conn = sqlite3.connect(DATABASE) # Connexion à la base de donnée
cursor = conn.cursor() # Création de l'objet "curseur"
cursor.execute("""SELECT title, content, time, author, status, avatar, nom, prenom, age FROM posts INNER JOIN users where status='public' """)
2022-08-06 18:22:24 +02:00
posts = [dict(title=row[0], content=row[1], time=row[2], author=row[3],
status=row[4], avatar=row[5], nom=row[6], prenom=row[7], age=row[8])
for row in reversed(cursor.fetchall())]
conn.close()
for post in posts:
post['content'] = markdown(post['content'])
2022-08-06 18:22:24 +02:00
return render_template('board.html', section='Post-it', posts=posts)
else:
2022-08-06 23:49:16 +02:00
return redirect(BASE_URL, code=401)