-
Notifications
You must be signed in to change notification settings - Fork 0
/
fp.py
executable file
·248 lines (209 loc) · 9.84 KB
/
fp.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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# -*- coding: utf-8 -*-
import os
import config
import datetime
import sys
import logging
import re
from google.appengine.api import memcache
from google.appengine.ext import db
import webapp2
# brom blog: Force sys.path to have our own directory first, so we can import from it.
sys.path.insert(0, config.APP_ROOT_DIR)
sys.path.insert(1, os.path.join(config.APP_ROOT_DIR, 'externals'))
sys.path.insert(2, os.path.join(config.APP_ROOT_DIR, 'handlers'))
sys.path.insert(3, os.path.join(config.APP_ROOT_DIR, 'lib'))
sys.path.insert(4, os.path.join(config.APP_ROOT_DIR, 'tags'))
sys.path.insert(5, os.path.join(config.APP_ROOT_DIR, 'tests'))
# main template tag handlers for django
import django
from django.template.loader import add_to_builtins
add_to_builtins('tags.templatetags')
add_to_builtins('tags.set_var')
from lib.myhandler import MyHandler
from lib import autocomplete
from admin import delete, edit, list, new, new_multiple, save, save_multiple, admin, home
from tasks import acumulador_task_manager, refresh_acumuladores, parse_jogo
from mail import sendmail
from externals import xpath
# handler
import blog, blogadmin
# clube
from clube import detalhe_clube, detalhe_clube_jogadores, detalhe_clube_jogos, detalhe_clube_lances
from clube import detalhe_clube_indices, detalhe_clube_arbitros, detalhe_clube_sumario
# jogador
from jogador import detalhe_jogador, detalhe_jogador_jogos, detalhe_jogador_lances
from jogador import detalhe_jogador_arbitros, detalhe_jogador_sumario
# arbitro
from arbitro import detalhe_arbitro, detalhe_arbitro_jogos, detalhe_arbitro_lances
from arbitro import detalhe_arbitro_clubes, detalhe_arbitro_jogadores, detalhe_arbitro_sumario
# competicao
from competicao import detalhe_competicao, detalhe_competicao_clubes
from competicao import detalhe_competicao_sumario, detalhe_competicao_indices
from competicao import detalhe_competicao_arbitros, detalhe_competicao_jogos, detalhe_competicao_jogadores
# epoca
from epoca import detalhe_epoca, detalhe_epoca_sumario, detalhe_epoca_arbitros, detalhe_epoca_clubes
from epoca import detalhe_epoca_jogadores, detalhe_epoca_indices, detalhe_epoca_jogos
import detalhe_jogo, detalhe_lance, detalhe_jornada, homepage
#procurar
import procurar_arbitro, procurar_jogador, procurar_jogo, procurar_lance
import procurar_epoca, procurar_competicao, procurar_clube, resultado
class Contactos(MyHandler):
def get(self):
self.render_to_output('contactos.html', {})
class Agradecimentos(MyHandler):
def get(self):
self.render_to_output('agradecimentos.html', {})
class Termos(MyHandler):
def get(self):
self.render_to_output('termos.html', {})
class Faq(MyHandler):
def get(self):
self.render_to_output('faq.html', {})
class Regulamentos(MyHandler):
def get(self):
self.render_to_output('regulamentos.html', {})
class Duvidas(MyHandler):
def get(self):
self.render_to_output('duvidas.html', {})
class Webapp2HandlerAdapter(webapp2.BaseHandlerAdapter):
def __call__(self, request, response, exception):
request.route_args = {}
request.route_args['exception'] = exception
handler = self.handler(request, response)
return handler.get()
class Error404Handler(MyHandler):
def get(self):
self.response.set_status(404)
self.render_to_output('error.html', {})
class Error500Handler(MyHandler):
def get(self):
self.response.set_status(500)
self.render_to_output('over_quota.html', {})
class Redirect(MyHandler):
def get(self):
if self.request.path == "/top_jogos":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_jogos")
elif self.request.path == "/top_arbitros":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_arbitros")
elif self.request.path == "/top_clubes":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_clubes")
elif self.request.path == "/top_jogadores":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_jogadores")
elif self.request.path == "/icc":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_indices")
elif self.request.path == "/classificacao":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_sumario")
elif self.request.path == "/tabela_icc":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_tabela_icc")
### 5
elif self.request.path == "/ica":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_ica")
elif self.request.path == "/tabela_resultados":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_tabela_resultados")
elif self.request.path == "/top_lances":
self.redirect("/detalhe_competicao?menu=detalhe_competicao_lances")
app = webapp2.WSGIApplication([
# admin
(r'/admin/?', admin.Admin),
(r'/admin/([^/]*)/delete', delete.Delete),
(r'/admin/([^/]*)/new', new.New),
(r'/admin/([^/]*)/new_multiple', new_multiple.NewMultiple),
(r'/admin/([^/]*)/edit', edit.Edit),
(r'/admin/([^/]*)/save', save.Save),
(r'/admin/([^/]*)/save_multiple', save_multiple.SaveMultiple),
(r'/admin/([^/]*)/list', list.List),
(r'/admin/([^/]*)', home.RedirectHome),
(r'/admin/([^/]*)/', home.Home),
(r'/admin/clear-cache', blogadmin.ClearCacheHandler),
(r'/admin/post/create', blogadmin.CreatePostHandler),
(r'/admin/post/edit/(\d{4})/(\d{2})/(\d{2})/([-\w]+)', blogadmin.EditPostHandler),
# homepage
(r'/',homepage.HomePage),
# stuff
(r'/faq',Faq),
(r'/duvidas',Duvidas),
(r'/regulamentos',Regulamentos),
(r'/termos',Termos),
(r'/agradecimentos',Agradecimentos),
(r'/contactos',Contactos),
# search
(r'/procurar_epoca', procurar_epoca.ProcurarEpoca),
(r'/procurar_clube', procurar_clube.ProcurarClube),
(r'/procurar_competicao', procurar_competicao.ProcurarCompeticao),
(r'/procurar_arbitro', procurar_arbitro.ProcurarArbitro),
(r'/procurar_jogador', procurar_jogador.ProcurarJogador),
(r'/procurar_jogo', procurar_jogo.ProcurarJogo),
(r'/procurar_lance', procurar_lance.ProcurarLance),
(r'/resultado',resultado.Resultado),
# detalhes
(r'/detalhe_jornada', detalhe_jornada.DetalheJornada),
(r'/detalhe_jogo', detalhe_jogo.DetalheJogo),
(r'/detalhe_lance', detalhe_lance.DetalheLance),
(r'/detalhe_clube', detalhe_clube.DetalheClube),
(r'/detalhe_clube_jogadores', detalhe_clube_jogadores.DetalheClubeJogadores),
(r'/detalhe_clube_arbitros', detalhe_clube_arbitros.DetalheClubeArbitros),
(r'/detalhe_clube_sumario', detalhe_clube_sumario.DetalheClubeSumario),
(r'/detalhe_clube_lances', detalhe_clube_lances.DetalheClubeLances),
(r'/detalhe_clube_indices', detalhe_clube_indices.DetalheClubeIndices),
(r'/detalhe_clube_jogos', detalhe_clube_jogos.DetalheClubeJogos),
(r'/detalhe_epoca', detalhe_epoca.DetalheEpoca),
(r'/detalhe_epoca_jogos', detalhe_epoca_jogos.DetalheEpocaJogos),
(r'/detalhe_epoca_clubes', detalhe_epoca_clubes.DetalheEpocaClubes),
(r'/detalhe_epoca_sumario', detalhe_epoca_sumario.DetalheEpocaSumario),
(r'/detalhe_epoca_indices', detalhe_epoca_indices.DetalheEpocaIndices),
(r'/detalhe_epoca_jogadores', detalhe_epoca_jogadores.DetalheEpocaJogadores),
(r'/detalhe_epoca_arbitros', detalhe_epoca_arbitros.DetalheEpocaArbitros),
(r'/detalhe_competicao', detalhe_competicao.DetalheCompeticao),
(r'/detalhe_competicao_clubes', detalhe_competicao_clubes.DetalheCompeticaoClubes),
(r'/detalhe_competicao_jogos', detalhe_competicao_jogos.DetalheCompeticaoJogos),
(r'/detalhe_competicao_sumario', detalhe_competicao_sumario.DetalheCompeticaoSumario),
(r'/detalhe_competicao_indices', detalhe_competicao_indices.DetalheCompeticaoIndices),
(r'/detalhe_competicao_jogadores', detalhe_competicao_jogadores.DetalheCompeticaoJogadores),
(r'/detalhe_competicao_arbitros', detalhe_competicao_arbitros.DetalheCompeticaoArbitros),
(r'/detalhe_jogador', detalhe_jogador.DetalheJogador),
(r'/detalhe_jogador_jogos', detalhe_jogador_jogos.DetalheJogadorJogos),
(r'/detalhe_jogador_lances', detalhe_jogador_lances.DetalheJogadorLances),
(r'/detalhe_jogador_arbitros', detalhe_jogador_arbitros.DetalheJogadorArbitros),
(r'/detalhe_jogador_sumario', detalhe_jogador_sumario.DetalheJogadorSumario),
(r'/detalhe_arbitro', detalhe_arbitro.DetalheArbitro),
(r'/detalhe_arbitro_jogos', detalhe_arbitro_jogos.DetalheArbitroJogos),
(r'/detalhe_arbitro_lances', detalhe_arbitro_lances.DetalheArbitroLances),
(r'/detalhe_arbitro_clubes', detalhe_arbitro_clubes.DetalheArbitroClubes),
(r'/detalhe_arbitro_jogadores', detalhe_arbitro_jogadores.DetalheArbitroJogadores),
(r'/detalhe_arbitro_sumario', detalhe_arbitro_sumario.DetalheArbitroSumario),
# fast redirects
(r'/top_jogos', Redirect),
(r'/top_arbitros', Redirect),
(r'/top_clubes', Redirect),
(r'/top_jogadores', Redirect),
(r'/top_lances', Redirect),
(r'/classificacao', Redirect),
(r'/icc', Redirect),
(r'/ica', Redirect),
(r'/tabela_icc', Redirect),
(r'/tabela_resultados', Redirect),
(r'/mail/sendmail', sendmail.SendMail),
# autocompletes
(r'/autocomplete/nome_jogador', autocomplete.NomeJogador),
(r'/autocomplete/nome_clube', autocomplete.NomeClube),
(r'/autocomplete/nome_arbitro', autocomplete.NomeArbitro),
(r'/autocomplete/competicoes', autocomplete.CompeticoesDeEpoca),
# tasks
(r'/task/acumulador_task_manager', acumulador_task_manager.AcumuladorTaskManager),
(r'/task/refresh/([^/]*)', refresh_acumuladores.Refresh),
(r'/task/parse_jogo', parse_jogo.ParseJogo),
#blog
(r'/blog', blog.IndexHandler),
(r'/blog/', blog.IndexHandler),
(r'/blog/rss2', blog.RSS2Handler),
(r'/blog/tag/([-\w]+)', blog.TagHandler),
(r'/blog/(\d{4})', blog.YearHandler),
(r'/blog/(\d{4})/(\d{2})', blog.MonthHandler),
(r'/blog/(\d{4})/(\d{2})/(\d{2})', blog.DayHandler),
(r'/blog/(\d{4})/(\d{2})/(\d{2})/([-\w]+)', blog.PostHandler),
# 404
('/.*', Error404Handler)
])
app.error_handlers[404] = Webapp2HandlerAdapter(Error404Handler)
app.error_handlers[500] = Webapp2HandlerAdapter(Error500Handler)