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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | #controllers/post.py import config, lib, datetime, uuid from bottle import route, template, request, redirect, response from models import postdb, settingdb, categorydb @route ( '/post/<id:int>' ) def post( id ): config.reset(settingdb.select()) config.kargs[ 'blogTitle' ] = "ទំព័រការផ្សាយ" config.kargs[ 'post' ] = postdb.select( 1 , id ) config.kargs[ 'posts' ] = postdb.select(config.kargs[ 'frontPagePostLimit' ]) config.kargs[ 'thumbs' ] = lib.getPostThumbs(config.kargs[ 'posts' ]) config.kargs[ 'page' ] = 1 author = request.get_cookie( "logged-in" , secret = config.kargs[ 'secretKey' ]) if author: config.kargs[ 'showEdit' ] = True return template( 'post' , data = config.kargs) @route ( '/posting' , method = "POST" ) def posting(): author = request.get_cookie( "logged-in" , secret = config.kargs[ 'secretKey' ]) if ((author ! = "Guest" ) and postdb.check(author)): title = request.forms.getunicode( 'fpost-title' ) if title = = "": title = "untitled" postdate = request.forms.getunicode( 'fpost-date' ) posttime = request.forms.getunicode( 'fpost-time' ) category = request.forms.getunicode( 'fcategory' ) content = request.forms.getunicode( 'fcontent' ) try : postdate = datetime.datetime.strptime(postdate, "%d-%m-%Y" ) except ValueError: config.kargs[ 'message' ] = 'ទំរង់កាលបរិច្ឆេទមិនត្រឹមត្រូវ!' return template( 'dashboard/home' , data = config.kargs) try : posttime = datetime.datetime.strptime(posttime, "%H:%M:%S" ) except ValueError: config.kargs[ 'message' ] = 'ទំរង់ពេលវេលាមិនត្រឹមត្រូវ!' return template( 'dashboard/home' , data = config.kargs) if 'postId' in config.kargs: id = config.kargs[ 'postId' ] postdb.update(title, postdate, posttime, category, content, id ) del config.kargs[ 'postId' ] else : id = str (uuid.uuid4(). int ) postdb.insert( id , title, author, postdate, posttime, category, content) redirect( '/post/' + str ( id )) redirect( '/login' ) @route ( '/post/delete/<id:int>' ) def delete( id ): author = request.get_cookie( "logged-in" , secret = config.kargs[ 'secretKey' ]) if ((author ! = "Guest" ) and postdb.check(author)): postdb.delete( id ) redirect( '/login' ) @route ( '/post/edit/<id:int>' ) def edit( id ): author = request.get_cookie( "logged-in" , secret = config.kargs[ 'secretKey' ]) if ((author ! = "Guest" ) and postdb.check(author)): config.reset(settingdb.select()) config.kargs[ 'blogTitle' ] = "ទំព័រកែតំរូវ" config.kargs[ 'posts' ] = postdb.select(config.kargs[ 'dashboardPostLimit' ]) config.kargs[ 'thumbs' ] = lib.getPostThumbs(config.kargs[ 'posts' ]) config.kargs[ 'categories' ] = categorydb.select(amount = "all" ) config.kargs[ 'post' ] = postdb.select( 1 , id ) config.kargs[ 'edit' ] = True config.kargs[ 'postId' ] = id config.kargs[ 'page' ] = 1 return template( 'dashboard/home' , data = config.kargs) redirect( '/login' ) @route ( '/paginate/<place>' ) def paginate(place): if place = = "frontEnd" : postLimit = config.kargs[ 'frontPagePostLimit' ] elif place = = 'home' : postLimit = config.kargs[ 'homePagePostLimit' ] else : postLimit = config.kargs[ 'dashboardPostLimit' ] posts = postdb.select(postLimit, page = config.kargs[ 'page' ]) def toString(post): post[ 3 ] = post[ 3 ].strftime( '%d-%m-%Y' ) post[ 4 ] = post[ 4 ].strftime( '%H:%M:%S' ) if posts: config.kargs[ 'page' ] + = 1 posts = [ list (obj) for obj in posts ] [toString(obj) for obj in posts] thumbs = lib.getPostThumbs(posts) return { 'json' :posts, 'thumbs' :thumbs} else : return { 'json' : 0 } @route ( '/search/<place>' , method = "POST" ) def search(place): config.reset(settingdb.select()) query = request.forms.getunicode( 'fquery' ) config.kargs[ 'posts' ] = postdb.search(query) config.kargs[ 'thumbs' ] = lib.getPostThumbs(config.kargs[ 'posts' ]) config.kargs[ 'blogTitle' ] = "ទំព័រស្វែងរក" if place = = "backend" : return template( 'dashboard/search' , data = config.kargs) else : return template( 'search' , data = config.kargs) |
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | #models/postdb.py import os import psycopg2 def createTable(): if 'DYNO' in os.environ: DATABASE_URL = os.environ[ 'DATABASE_URL' ] conn = psycopg2.connect(DATABASE_URL, sslmode = 'require' ) cursor = conn.cursor() else : conn = psycopg2.connect( database = "postgres" , user = "postgres" , password = "sokhavuth" , host = "localhost" , port = "5432" ) cursor = conn.cursor() SQL = '''CREATE TABLE IF NOT EXISTS POST( ID TEXT, TITLE TEXT, AUTHOR TEXT, POSTDATE DATE, POSTTIME TIME, CATEGORY TEXT, CONTENT TEXT )''' cursor.execute(SQL) conn.commit() conn.close() def insert( * post): createTable() if 'DYNO' in os.environ: DATABASE_URL = os.environ[ 'DATABASE_URL' ] conn = psycopg2.connect(DATABASE_URL, sslmode = 'require' ) cursor = conn.cursor() else : conn = psycopg2.connect( database = "postgres" , user = "postgres" , password = "sokhavuth" , host = "localhost" , port = "5432" ) cursor = conn.cursor() cursor.execute( "INSERT INTO POST (ID, TITLE, AUTHOR, POSTDATE, POSTTIME, CATEGORY, CONTENT) VALUES %s " , (post,)) conn.commit() conn.close() def select(amount, id = None , page = 0 ): createTable() if 'DYNO' in os.environ: DATABASE_URL = os.environ[ 'DATABASE_URL' ] conn = psycopg2.connect(DATABASE_URL, sslmode = 'require' ) cursor = conn.cursor() else : conn = psycopg2.connect( database = "postgres" , user = "postgres" , password = "sokhavuth" , host = "localhost" , port = "5432" ) cursor = conn.cursor() if id and (amount = = 1 ): cursor.execute( "SELECT * FROM POST WHERE ID = '" + str ( id ) + "'") elif page: SQL = "SELECT * FROM POST ORDER BY POSTDATE DESC, POSTTIME DESC OFFSET %s ROWS FETCH NEXT %s ROWS ONLY" cursor.execute(SQL, (amount*page, amount)) else: cursor.execute("SELECT * FROM POST ORDER BY POSTDATE DESC, POSTTIME DESC LIMIT " + str(amount)) result = cursor.fetchall() return result def check(username): if 'DYNO' in os.environ: DATABASE_URL = os.environ['DATABASE_URL'] conn = psycopg2.connect(DATABASE_URL, sslmode='require') cursor = conn.cursor() else: conn = psycopg2.connect( database="postgres", user="postgres", password="sokhavuth", host="localhost", port="5432" ) cursor = conn.cursor() cursor.execute("SELECT USERNAME FROM USERS WHERE USERNAME = '"+ username + "' LIMIT 1") result = cursor.fetchone() if result: return True else: return False def delete(id): if 'DYNO' in os.environ: DATABASE_URL = os.environ['DATABASE_URL'] conn = psycopg2.connect(DATABASE_URL, sslmode='require') cursor = conn.cursor() else: conn = psycopg2.connect( database="postgres", user="postgres", password="sokhavuth", host="localhost", port="5432" ) cursor = conn.cursor() cursor.execute("DELETE FROM POST WHERE ID = '" + str(id) + "'" ) conn.commit() conn.close() def update( * args): if 'DYNO' in os.environ: DATABASE_URL = os.environ[ 'DATABASE_URL' ] conn = psycopg2.connect(DATABASE_URL, sslmode = 'require' ) cursor = conn.cursor() else : conn = psycopg2.connect( database = "postgres" , user = "postgres" , password = "sokhavuth" , host = "localhost" , port = "5432" ) cursor = conn.cursor() sql = "UPDATE POST SET TITLE = %s, POSTDATE = %s, POSTTIME = %s, CATEGORY = %s, CONTENT = %s WHERE ID = '%s' " cursor.execute(sql, args) conn.commit() conn.close() def search(query): createTable() if 'DYNO' in os.environ: DATABASE_URL = os.environ[ 'DATABASE_URL' ] conn = psycopg2.connect(DATABASE_URL, sslmode = 'require' ) cursor = conn.cursor() else : conn = psycopg2.connect( database = "postgres" , user = "postgres" , password = "sokhavuth" , host = "localhost" , port = "5432" ) cursor = conn.cursor() sql = "SELECT * from POST WHERE" sql + = " TITLE LIKE '%" + query + "%'" sql + = " OR CONTENT LIKE '%" + query + "%'" sql + = " ORDER BY POSTDATE DESC, POSTTIME DESC LIMIT 12" cursor.execute(sql) result = cursor.fetchall() return result |
GitHub: https://github.com/Sokhavuth/kwblog
Heroku: https://khmerweb-kwblog.herokuapp.com/