forked from cms-dev/cms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRWSHelper.py
181 lines (142 loc) · 5.95 KB
/
RWSHelper.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
#!/usr/bin/env python3
# Contest Management System - http://cms-dev.github.io/
# Copyright © 2013 Luca Wehrstedt <[email protected]>
# Copyright © 2016 Stefano Maggiolo <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""A script to interact with RWSs using HTTP requests
Provide a handy command-line interface to do common operations on
entities stored on RankingWebServers. Particularly useful to delete an
entity that has been deleted in the DB without any downtime.
"""
# We enable monkey patching to make many libraries gevent-friendly
# (for instance, urllib3, used by requests)
import gevent.monkey
gevent.monkey.patch_all() # noqa
import argparse
import logging
import sys
from urllib.parse import quote, urljoin, urlsplit
from requests import Session, Request
from requests.exceptions import RequestException
from cms import config, utf8_decoder
logger = logging.getLogger(__name__)
ACTION_METHODS = {
'get': 'GET',
'create': 'PUT', # Create is actually an update.
'update': 'PUT',
'delete': 'DELETE',
}
ENTITY_TYPES = ['contest',
'task',
'team',
'user',
'submission',
'subchange',
]
def get_url(shard, entity_type, entity_id):
return urljoin(config.rankings[shard], '%ss/%s' % (entity_type, entity_id))
def main():
parser = argparse.ArgumentParser(prog='cmsRWSHelper')
parser.add_argument(
'-v', '--verbose', action='store_true',
help="tell on stderr what's happening")
# FIXME It would be nice to use '--rankings' with action='store'
# and nargs='+' but it doesn't seem to work with subparsers...
parser.add_argument(
'-r', '--ranking', dest='rankings', action='append', type=int,
choices=list(range(len(config.rankings))), metavar='shard',
help="select which RWS to connect to (omit for 'all')")
subparsers = parser.add_subparsers(
title='available actions', metavar='action',
help='what to ask the RWS to do with the entity')
# Create the parser for the "get" command
parser_get = subparsers.add_parser('get', help="retrieve the entity")
parser_get.set_defaults(action='get')
# Create the parser for the "create" command
parser_create = subparsers.add_parser('create', help="create the entity")
parser_create.set_defaults(action='create')
parser_create.add_argument(
'file', action="store", type=argparse.FileType('rb'),
help="file holding the entity body to send ('-' for stdin)")
# Create the parser for the "update" command
parser_update = subparsers.add_parser('update', help='update the entity')
parser_update.set_defaults(action='update')
parser_update.add_argument(
'file', action="store", type=argparse.FileType('rb'),
help="file holding the entity body to send ('-' for stdin)")
# Create the parser for the "delete" command
parser_delete = subparsers.add_parser('delete', help='delete the entity')
parser_delete.set_defaults(action='delete')
# Create the group for entity-related arguments
group = parser.add_argument_group(
title='entity reference')
group.add_argument(
'entity_type', action='store', choices=ENTITY_TYPES, metavar='type',
help="type of the entity (e.g. contest, user, task, etc.)")
group.add_argument(
'entity_id', action='store', type=utf8_decoder, metavar='id',
help='ID of the entity (usually a short codename)')
# Parse the given arguments
args = parser.parse_args()
args.entity_id = quote(args.entity_id)
if args.verbose:
verb = args.action[:4] + 'ting'
logger.info("%s entity '%ss/%s'", verb.capitalize(),
args.entity_type, args.entity_id)
if args.rankings is not None:
shards = args.rankings
else:
shards = list(range(len(config.rankings)))
s = Session()
had_error = False
for shard in shards:
url = get_url(shard, args.entity_type, args.entity_id)
# XXX With requests-1.2 auth is automatically extracted from
# the URL: there is no need for this.
auth = urlsplit(url)
if args.verbose:
logger.info("Preparing %s request to %s",
ACTION_METHODS[args.action], url)
if hasattr(args, 'file'):
if args.verbose:
logger.info("Reading file contents to use as message body")
body = args.file.read()
else:
body = None
req = Request(ACTION_METHODS[args.action], url, data=body,
auth=(auth.username, auth.password),
headers={'content-type': 'application/json'}).prepare()
if args.verbose:
logger.info("Sending request")
try:
res = s.send(req, verify=config.https_certfile)
except RequestException:
logger.error("Failed", exc_info=True)
had_error = True
continue
if args.verbose:
logger.info("Response received")
if 400 <= res.status_code < 600:
logger.error("Unexpected status code: %d", res.status_code)
had_error = True
continue
if args.action == "get":
print(res.content)
if had_error:
return 1
else:
return 0
if __name__ == "__main__":
sys.exit(main())