-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
262 lines (232 loc) · 6.41 KB
/
settings.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# Enables available operations for resources/collections (defaults to ['GET'])
RESOURCE_METHODS = ['GET', 'POST']
# Enable available operations for individual items (defaults to ['GET'])
ITEM_METHODS = ['GET', 'PATCH', 'PUT', 'DELETE']
PUBLIC_METHODS = ['GET']
# ~~ ADMINS SCHEMA: Define the administrators of the system
admin_schema = {
'username': {
'type': 'string',
'minlength': 3,
'maxlength': 12,
'required': True,
'unique': True,
},
'password': {
'type': 'string',
'minlength': 6,
'maxlength': 32,
'required': True,
}
}
admins = {
'additional_lookup': {
'url': 'regex("[\w]+")',
'field': 'username'
},
# We choose to override global cache-control directives for this resource.
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': [],
'schema': admin_schema
}
# ~~ END ADMINS SCHEMA ~~
# ~~ MAPPINGS SCHEMA: Mappings between latin chars and potential spoof chars
mappings_schema = {
'character': {
'type': 'string',
'minlength': 1,
'maxlength': 2,
'required': True,
'unique': True,
},
'potential_spoofs': {
'type': 'list',
'schema': {
'type': 'dict',
'schema': {
'spoof_character': {'type': 'string'},
'votes': {'type': 'integer'}
}
},
}
}
mappings = {
'additional_lookup': {
'url': 'regex("[\w]+")',
'field': 'character'
},
# We choose to override global cache-control directives for this resource.
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': ["GET"],
'schema': mappings_schema
}
# ~~ END MAPPINGS SCHEMA ~~
# ~~ FEED SCHEMA: A feed of the recently identified mappings
feed_schema = {
'character': {
'type': 'string',
'minlength': 1,
'maxlength': 2,
'required': True,
},
'spoof': {
'type': 'string',
'minlength': 1,
'maxlength': 1,
'required': True,
}
}
feed = {
'item_title': 'feed',
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': ["GET", "POST"],
'schema': feed_schema
}
# ~~ END FEED SCHEMA ~~
# ~~ BASIC LATIN CHARACTERS SCHEMA: Basic latin chars (a-z and 0-9)
basic_latin_characters_schema = {
'basic_character': {
'type': 'string',
'minlength': 1,
'maxlength': 1,
'required': True,
'unique': True,
}
}
basic_latin_characters = {
'additional_lookup': {
'url': 'regex("[\w]+")',
'field': 'basic_character'
},
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': ["GET"],
'schema': basic_latin_characters_schema
}
# ~~ END BASIC LATIN CHARACTERS SCHEMA ~~
# ~~ NON-BASIC CHARACTERS SCHEMA: chars that may be used to spoof basic chars
non_basic_characters_schema = {
'potential_spoof': {
'type': 'string',
'minlength': 1,
'maxlength': 1,
'required': True,
'unique': True,
}
}
non_basic_characters = {
'additional_lookup': {
'url': 'regex("[\w]+")',
'field': 'potential_spoof'
},
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': ["GET"],
'schema': non_basic_characters_schema
}
# ~~ END NON-BASIC CHARACTERS SCHEMA ~~
# ~~ SUGGESTED DEPRECATION FEED SCHEMA: chars suggested for deprecation
suggested_deprecations_feed_schema = {
'character': {
'type': 'string',
'minlength': 1,
'maxlength': 1,
'required': True,
'unique': False,
}
}
suggested_deprecations_feed = {
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': ["GET", "POST"],
'schema': suggested_deprecations_feed_schema
}
# ~~ END SUGGESTED DEPRECATION FEED SCHEMA ~~
# ~~ UNMAPPED CHARACTER FEED SCHEMA: chars to which no basic char. was mapped
unmapped_character_feed_schema = {
'unmapped_character': {
'type': 'string',
'minlength': 1,
'maxlength': 1,
'required': True,
'unique': False,
}
}
unmapped_character_feed = {
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': ["GET", "POST"],
'schema': unmapped_character_feed_schema
}
# ~~ END UNMAPPED CHARACTER FEED SCHEMA ~~
# ~~ DEPRECATED CHARACTERS SCHEMA: Chars that have been removed from the set
# of non_basic_chars
deprecated_characters_schema = {
'deprecated_character': {
'type': 'string',
'minlength': 1,
'maxlength': 1,
'required': True,
'unique': True,
}
}
deprecated_characters = {
'additional_lookup': {
'url': 'regex("[\w]+")',
'field': 'deprecated_character'
},
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': ["GET"],
'schema': deprecated_characters_schema
}
# ~~ END DEPRECATED CHARACTERS SCHEMA ~~
# ~~ HIGH SCORE SCHEMA: Keep track of high scorers initials and their score
high_score_schema = {
'initials': {
'type': 'string',
'minlength': 1,
'maxlength': 3,
'required': True,
'unique': False,
},
'score': {
'type': 'integer',
'required': True,
}
}
high_scores = {
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'public_methods': ["GET", "POST"],
'schema': high_score_schema
}
# ~~ END HIGH SCORE SCHEMA ~~
# map each of the schemas above to a branch of the API
DOMAIN = {
'administrators': admins,
'mappings': mappings,
'basic_characters': basic_latin_characters,
'feed': feed,
'non_basic_characters': non_basic_characters,
'suggested_deprecations': suggested_deprecations_feed,
'unmapped_characters': unmapped_character_feed,
'deprecated_characters': deprecated_characters,
'high_scores': high_scores
}
# provide details for mongo instance
MONGO_HOST = 'localhost'
MONGO_PORT = 27018
MONGO_DBNAME = 'data'
# uncomment these to enforce rate limits on the API (uses REDIS)
# RATE_LIMIT_GET = (1, 30)
# RATE_LIMIT_POST = (1, 30)
# turn off pagination
PAGINATION = False
# add configurations that allow the API to be access remotely
X_DOMAINS = '*'
X_HEADERS = ['Origin', 'X-Requested-With', 'Content-Type', 'Accept',
'If-Match']