af3c1ff by Arvind at 2013-01-07 |
1 |
# -*- coding: utf-8 -*- |
|
2 |
""" |
|
3 |
swtr |
|
4 |
~~~~~~ |
|
5 |
|
|
6 |
http://swtr.us |
|
7 |
|
|
8 |
:license: BSD, see LICENSE for more details. |
|
9 |
""" |
|
10 |
from __future__ import with_statement |
|
11 |
from pymongo import Connection |
|
12 |
from bson.objectid import ObjectId |
|
13 |
from bson.errors import InvalidId |
|
14 |
from flask import Flask, request, session, g, redirect, url_for, abort, \ |
de07eb4 by Arvind at 2013-01-09 |
15 |
render_template, flash, _app_ctx_stack, make_response, jsonify |
|
16 |
from urllib import unquote_plus |
|
17 |
import json |
c70fe3f by Arvind Khadri at 2013-06-19 |
18 |
import conf |
bed764d by Anon Ray at 2013-12-27 |
19 |
|
|
20 |
# TODO: |
|
21 |
# restify |
|
22 |
# APIs as follows: |
|
23 |
# GET /sweets/q -> query sweets |
|
24 |
# args: who, where, what, how |
|
25 |
# GET /sweets/<id> -> get specific sweet |
|
26 |
# POST /sweets -> post sweets (one or a batch of) |
|
27 |
# OPTIONS /sweets - > CORS policy .. understand it better |
|
28 |
# classes! |
|
29 |
# sqlAlchemy |
|
30 |
# Postgres |
|
31 |
|
|
32 |
# TODO: move this in a config file |
af3c1ff by Arvind at 2013-01-07 |
33 |
# configuration |
|
34 |
DATABASE = 'alipiBlog' |
|
35 |
COLLECTION_NAME = 'posts' |
|
36 |
DEBUG = True |
c70fe3f by Arvind Khadri at 2013-06-19 |
37 |
SECRET_KEY = conf.SECRET_KEY |
af3c1ff by Arvind at 2013-01-07 |
38 |
USERNAME = 'admin' |
|
39 |
PASSWORD = 'default' |
|
40 |
DB_PORT = 27017 |
|
41 |
DB_HOST = 'localhost' |
df78035 by Arvind Khadri at 2013-06-24 |
42 |
URL = "http://localhost:5001" |
bed764d by Anon Ray at 2013-12-27 |
43 |
|
af3c1ff by Arvind at 2013-01-07 |
44 |
# create our little application :) |
bed764d by Anon Ray at 2013-12-27 |
45 |
# ^ ... It's going to be big now :P |
af3c1ff by Arvind at 2013-01-07 |
46 |
app = Flask(__name__) |
|
47 |
app.config.from_object(__name__) |
|
48 |
app.config.from_envvar('FLASKR_SETTINGS', silent=True) |
|
49 |
|
ee97526 by Anon Ray at 2013-06-27 |
50 |
# Jinja filters |
|
51 |
app.jinja_env.filters['len'] = len |
|
52 |
|
af3c1ff by Arvind at 2013-01-07 |
53 |
|
544de4f by Anon Ray at 2013-06-27 |
54 |
def validateSweet(payload): |
|
55 |
for i in payload: |
9f6e341 by Anon Ray at 2013-06-27 |
56 |
try: |
|
57 |
if len(i['who']) and len(i['what']) and len(i['where']) and\ |
|
58 |
len(i['how']) and len(i['created']): |
|
59 |
pass |
|
60 |
else: |
|
61 |
return False |
|
62 |
except KeyError: |
544de4f by Anon Ray at 2013-06-27 |
63 |
return False |
9f6e341 by Anon Ray at 2013-06-27 |
64 |
return True |
544de4f by Anon Ray at 2013-06-27 |
65 |
|
6daf1ab by Anon Ray at 2013-07-09 |
66 |
def getUsers(): |
|
67 |
db = g.connection[app.config['DATABASE']] |
|
68 |
coll = db['sweet_users'] |
|
69 |
users = [] |
|
70 |
for i in coll.find(): |
|
71 |
users.append(i['user']) |
|
72 |
return users |
|
73 |
|
af3c1ff by Arvind at 2013-01-07 |
74 |
@app.before_request |
|
75 |
def init_db(): |
|
76 |
g.connection = Connection(app.config['DB_HOST'], app.config['DB_PORT']) |
|
77 |
db = g.connection[app.config['DATABASE']] |
|
78 |
g.collection = db[app.config["COLLECTION_NAME"]] |
|
79 |
|
|
80 |
|
|
81 |
@app.teardown_request |
|
82 |
def close_db(exception): |
|
83 |
g.connection.disconnect() |
|
84 |
|
|
85 |
|
de07eb4 by Arvind at 2013-01-09 |
86 |
@app.errorhandler(404) |
af3c1ff by Arvind at 2013-01-07 |
87 |
def page_not_found(e): |
|
88 |
return render_template('404.html'), 404 |
|
89 |
|
|
90 |
|
ce32b69 by Arvind at 2013-01-08 |
91 |
@app.errorhandler(500) |
347ae26 by Arvind at 2013-01-08 |
92 |
def internal_error(e): |
|
93 |
return render_template('500.html'), 500 |
|
94 |
|
af3c1ff by Arvind at 2013-01-07 |
95 |
@app.route('/') |
|
96 |
def show_entries(): |
bed764d by Anon Ray at 2013-12-27 |
97 |
print 'request:' |
|
98 |
print request.method |
af3c1ff by Arvind at 2013-01-07 |
99 |
res = g.collection.find().sort('_id',direction=-1) |
|
100 |
entries = make_list(res) |
|
101 |
return render_template('show_entries.html', entries=entries) |
|
102 |
|
|
103 |
|
bed764d by Anon Ray at 2013-12-27 |
104 |
# TODO: understand if we really need the OPTIONS |
|
105 |
@app.route('/sweets', methods=['POST', 'OPTIONS']) |
|
106 |
@app.route('/add', methods=['POST', 'OPTIONS']) |
|
107 |
def addSweets(): |
|
108 |
print request.method |
|
109 |
|
|
110 |
if request.method == 'OPTIONS': |
|
111 |
response = make_response() |
|
112 |
response.status_code = 200 |
|
113 |
response.headers['Access-Control-Allow-Origin'] = '*' |
|
114 |
response.headers['Access-Control-Max-Age'] = '20days' |
|
115 |
response.headers['Access-Control-Allow-Headers'] = 'Origin,\ |
|
116 |
X-Requested-With, Content-Type, Accept' |
|
117 |
return response |
|
118 |
|
de07eb4 by Arvind at 2013-01-09 |
119 |
response = make_response() |
|
120 |
response.headers['Access-Control-Allow-Origin'] = '*' |
bed764d by Anon Ray at 2013-12-27 |
121 |
response.headers['Access-Control-Allow-Headers'] = 'Origin,\ |
|
122 |
X-Requested-With, Content-Type, Accept' |
de07eb4 by Arvind at 2013-01-09 |
123 |
data = {} |
|
124 |
data_list = [] |
bed764d by Anon Ray at 2013-12-27 |
125 |
# TODO: find a better way of handling reqeust sweets |
544de4f by Anon Ray at 2013-06-27 |
126 |
try: |
|
127 |
payload = json.loads(request.form['data']) |
|
128 |
except: |
bed764d by Anon Ray at 2013-12-27 |
129 |
try: |
|
130 |
payload = [{'who': request.form['who'], 'what': request.form['what'], |
|
131 |
'where': request.form['where'], 'how': request.form['how']}] |
|
132 |
except: |
|
133 |
try: |
|
134 |
payload = request.json |
|
135 |
except: |
|
136 |
payload = json.loads(request.data) |
|
137 |
|
|
138 |
|
544de4f by Anon Ray at 2013-06-27 |
139 |
valid = validateSweet(payload) |
|
140 |
if not valid: |
|
141 |
response.status_code = 400 |
|
142 |
response.data = "Bad or Malformed Request. Please check the validity\ |
|
143 |
of your request" |
|
144 |
return response |
|
145 |
print 'swt payload rcvd..' |
|
146 |
print payload |
|
147 |
for i in payload: |
bed764d by Anon Ray at 2013-12-27 |
148 |
data = i |
1a7990c by Arvind at 2013-04-26 |
149 |
id = g.collection.insert(i) |
544de4f by Anon Ray at 2013-06-27 |
150 |
data['permalink'] = app.config['URL'] + '/posts/' + str(ObjectId(id)) |
1a7990c by Arvind at 2013-04-26 |
151 |
data['id'] = str(ObjectId(id)) |
bed764d by Anon Ray at 2013-12-27 |
152 |
del(data['_id']) |
|
153 |
print 'data', data |
de07eb4 by Arvind at 2013-01-09 |
154 |
data_list.append(data) |
|
155 |
response.data = json.dumps(data_list) |
544de4f by Anon Ray at 2013-06-27 |
156 |
print 'swt stored..' |
de07eb4 by Arvind at 2013-01-09 |
157 |
return response |
af3c1ff by Arvind at 2013-01-07 |
158 |
|
|
159 |
|
|
160 |
@app.route('/login', methods=['GET', 'POST']) |
|
161 |
def login(): |
|
162 |
error = None |
|
163 |
if request.method == 'POST': |
|
164 |
if request.form['username'] != app.config['USERNAME']: |
|
165 |
error = 'Invalid username' |
|
166 |
elif request.form['password'] != app.config['PASSWORD']: |
|
167 |
error = 'Invalid password' |
|
168 |
else: |
|
169 |
session['logged_in'] = True |
|
170 |
flash('You were logged in') |
|
171 |
return redirect(url_for('show_entries')) |
|
172 |
return render_template('login.html', error=error) |
|
173 |
|
|
174 |
|
bed764d by Anon Ray at 2013-12-27 |
175 |
@app.route('/sweets/q', methods=['GET']) |
|
176 |
def searchSweets(): |
|
177 |
response = make_response() |
|
178 |
response.status_code = 200 |
|
179 |
response.headers['Access-Control-Allow-Origin'] = '*' |
|
180 |
response.headers['Access-Control-Max-Age'] = '20days' |
|
181 |
response.headers['Access-Control-Allow-Headers'] = 'Origin,\ |
|
182 |
X-Requested-With, Content-Type, Accept' |
|
183 |
|
|
184 |
args = request.args |
|
185 |
|
|
186 |
if args is None: |
|
187 |
reponse.status_code = 400 |
|
188 |
return response |
|
189 |
|
|
190 |
if args['where'] is None: |
|
191 |
reponse.status_code = 400 |
|
192 |
return response |
|
193 |
|
|
194 |
res = g.collection.find(args) |
|
195 |
|
|
196 |
if res.count() < 1: |
|
197 |
response.status_code = 404 |
|
198 |
return response |
|
199 |
|
|
200 |
swt_list = [] |
|
201 |
for swt in res: |
|
202 |
_id = swt['_id'] |
|
203 |
del(swt['_id']) |
|
204 |
swt['id'] = str(_id) |
|
205 |
swt_list.append(swt) |
|
206 |
|
|
207 |
response.data = json.dumps(swt_list) |
|
208 |
return response |
|
209 |
|
|
210 |
|
|
211 |
@app.route('/sweets/<post_id>', methods=['GET']) |
1a7990c by Arvind at 2013-04-26 |
212 |
@app.route('/query/<post_id>',methods=['GET']) |
|
213 |
def return_database_entry(post_id): |
|
214 |
try: |
|
215 |
res = g.collection.find_one({'_id':ObjectId(post_id)}) |
|
216 |
if(res): |
|
217 |
res['blog'] = url_for('show_specific_entry', post_id = str(res['_id'])) |
|
218 |
del(res['_id']) |
|
219 |
return jsonify(res) |
|
220 |
# entries = make_list(res) |
|
221 |
# return render_template('show_posts.html', entries=res, str=str) |
|
222 |
else: |
|
223 |
abort(404) |
|
224 |
except InvalidId: |
|
225 |
abort(404) |
|
226 |
|
|
227 |
|
|
228 |
|
af3c1ff by Arvind at 2013-01-07 |
229 |
@app.route('/posts/<post_id>',methods=['GET']) |
|
230 |
def show_specific_entry(post_id): |
|
231 |
try: |
1a7990c by Arvind at 2013-04-26 |
232 |
res = g.collection.find({'_id':ObjectId(post_id)}) |
af3c1ff by Arvind at 2013-01-07 |
233 |
if(res.count() > 0): |
1a7990c by Arvind at 2013-04-26 |
234 |
#entries = make_list(res) |
544de4f by Anon Ray at 2013-06-27 |
235 |
entries = [] |
|
236 |
for i in res: |
|
237 |
_id = i['_id'] |
|
238 |
del(i['_id']) |
|
239 |
i['id'] = _id |
|
240 |
entries.append(i) |
|
241 |
return render_template('show_posts.html', entries=entries, str=str) |
af3c1ff by Arvind at 2013-01-07 |
242 |
else: |
de07eb4 by Arvind at 2013-01-09 |
243 |
abort(404) |
af3c1ff by Arvind at 2013-01-07 |
244 |
except InvalidId: |
de07eb4 by Arvind at 2013-01-09 |
245 |
abort(404) |
af3c1ff by Arvind at 2013-01-07 |
246 |
|
|
247 |
|
347ae26 by Arvind at 2013-01-08 |
248 |
@app.route('/posts/delete/', methods=['POST']) |
|
249 |
def delete_post(): |
|
250 |
try: |
|
251 |
g.collection.remove({'_id':ObjectId(request.form['post_id'])}) |
544de4f by Anon Ray at 2013-06-27 |
252 |
return jsonify(status='ok') |
347ae26 by Arvind at 2013-01-08 |
253 |
except: |
|
254 |
abort(500) |
|
255 |
|
af3c1ff by Arvind at 2013-01-07 |
256 |
@app.route('/logout') |
|
257 |
def logout(): |
|
258 |
session.pop('logged_in', None) |
|
259 |
flash('You were logged out') |
|
260 |
return redirect(url_for('show_entries')) |
|
261 |
|
c70fe3f by Arvind Khadri at 2013-06-19 |
262 |
@app.route('/serveUser') |
|
263 |
def serveUser(): |
df78035 by Arvind Khadri at 2013-06-24 |
264 |
if "logged_in" in session: |
6daf1ab by Anon Ray at 2013-07-09 |
265 |
#print session["logged_in"] |
df78035 by Arvind Khadri at 2013-06-24 |
266 |
session['key'] = conf.SECRET_KEY |
|
267 |
return render_template('user.html') |
|
268 |
else: |
|
269 |
return render_template('login.html', error=None) |
c70fe3f by Arvind Khadri at 2013-06-19 |
270 |
|
6daf1ab by Anon Ray at 2013-07-09 |
271 |
@app.route('/user/', methods=['POST', 'GET']) |
|
272 |
@app.route('/user/<user_id>', methods=['GET']) |
|
273 |
def user(user_id='all'): |
c70fe3f by Arvind Khadri at 2013-06-19 |
274 |
if request.method == 'POST': |
|
275 |
response = make_response() |
|
276 |
db = g.connection[app.config['DATABASE']] |
|
277 |
collection = db['sweet_users'] |
6daf1ab by Anon Ray at 2013-07-09 |
278 |
|
|
279 |
# check if user already exists |
|
280 |
if request.form['user'] in getUsers(): |
|
281 |
#print 'user already exists!' |
|
282 |
flash('User already exists!') |
|
283 |
return redirect(url_for('serveUser')) |
|
284 |
|
|
285 |
# else insert new user |
|
286 |
collection.insert({'user': request.form['user'], |
|
287 |
'key': request.form['key']}) |
|
288 |
response.status_code = 200 |
|
289 |
response.data = 'User added.' |
c70fe3f by Arvind Khadri at 2013-06-19 |
290 |
return response |
6daf1ab by Anon Ray at 2013-07-09 |
291 |
|
c70fe3f by Arvind Khadri at 2013-06-19 |
292 |
elif request.method == 'GET': |
|
293 |
db = g.connection[app.config['DATABASE']] |
|
294 |
collection = db['sweet_users'] |
|
295 |
users = [] |
6daf1ab by Anon Ray at 2013-07-09 |
296 |
if user_id == 'all': |
|
297 |
users = getUsers() |
|
298 |
else: |
|
299 |
user = collection.find_one({'user': user_id}) |
|
300 |
if user: |
|
301 |
users.append(user['user']) |
|
302 |
else: |
|
303 |
abort(404) |
c70fe3f by Arvind Khadri at 2013-06-19 |
304 |
return render_template("users.html", users=users) |
|
305 |
|
|
306 |
|
df78035 by Arvind Khadri at 2013-06-24 |
307 |
@app.route('/authenticate', methods=['POST','GET']) |
|
308 |
def authenticate(): |
|
309 |
if request.method == "POST": |
|
310 |
response = make_response() |
|
311 |
db = g.connection[app.config['DATABASE']] |
|
312 |
collection = db['sweet_users'] |
|
313 |
for i in collection.find(): |
|
314 |
if i['user'] == request.form['user'] and i['key'] == request.form['hash']: |
|
315 |
response.status_code = 200 |
|
316 |
response.headers['Access-Control-Allow-Origin'] = '*' |
|
317 |
return response |
|
318 |
else: |
49ade63 by Anon Ray at 2013-07-03 |
319 |
pass |
|
320 |
response.status_code = 403 |
|
321 |
response.headers['Access-Control-Allow-Origin'] = '*' |
|
322 |
return response |
df78035 by Arvind Khadri at 2013-06-24 |
323 |
elif request.method == "GET": |
|
324 |
return app.send_static_file("sweet-authenticate.js") |
|
325 |
|
|
326 |
|
af3c1ff by Arvind at 2013-01-07 |
327 |
def make_list(res): |
|
328 |
entries = [] |
|
329 |
for row in res: |
1a7990c by Arvind at 2013-04-26 |
330 |
d = row |
af3c1ff by Arvind at 2013-01-07 |
331 |
d['id'] = str(row['_id']) |
55a760a by Anon Ray at 2013-07-09 |
332 |
try: |
2dede4b by Anon Ray at 2013-07-09 |
333 |
if d['who'] in getUsers() or d['author'] in getUsers(): |
55a760a by Anon Ray at 2013-07-09 |
334 |
d['registered'] = True |
|
335 |
except KeyError: |
|
336 |
pass |
af3c1ff by Arvind at 2013-01-07 |
337 |
entries.append(d) |
|
338 |
return entries |
|
339 |
|
|
340 |
if __name__ == '__main__': |
1a7990c by Arvind at 2013-04-26 |
341 |
app.run(debug=True, port=5001) |