-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
54 lines (43 loc) · 1.51 KB
/
main.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from tornado import ioloop, gen
from tornado import web
from motor.motor_tornado import MotorClient
from entries.get_entries import entries_update
from entries.get_entries import entries_consumer, feeds_consumer
from datetime import datetime
client = MotorClient(os.environ['MONGO_ENTRIES'])
db = client['entries-by-votes']
class MainHandler(web.RequestHandler):
@gen.coroutine
def get(self):
db = self.settings['db']
cursor = db.entries.aggregate([
{'$project': {
'_id':0, 'link':1, 'title':1, 'published':1, 'total_votes':1, 'votes':1, 'rank': {
'$divide': ["$total_votes", {
'$pow': [{
'$add': [{'$divide': [{'$subtract' : [datetime.now(), "$published"]}, 1000*60*60]}, 2]
}, 1.8]
}]
}}},
{'$sort': {'rank': -1}},
{'$limit': 100},
]);
entries = yield cursor.to_list(length=100)
self.render('templates/index.html', entries=entries)
def make_app():
return web.Application([
(r'/', MainHandler),
], db=db)
if __name__ == "__main__":
port = os.environ.get('TORNADO_PORT', 8888)
print('Starting app in port {}'.format(port))
app = make_app()
app.listen(port)
io_loop = ioloop.IOLoop.current()
io_loop.spawn_callback(feeds_consumer)
io_loop.spawn_callback(entries_consumer)
io_loop.spawn_callback(entries_update)
io_loop.start()