-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelice_utils.py
124 lines (94 loc) · 4 KB
/
elice_utils.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
# elice-utils
# maintainer: Suin Kim ([email protected]) and Jungkook Park ([email protected])
import base64
import mimetypes
import os
import urllib.parse
import urllib.request
class EliceUtils(object):
def __init__(self):
self._execution_token = os.getenv('EXECUTION_TOKEN')
self._executor_ip = os.getenv('EXECUTOR_IP')
self._executor_com_port = os.getenv('EXECUTOR_COM_PORT')
self._otp_key = None
self._local_mode = False
if not all((self._execution_token, self._executor_ip, self._executor_com_port)):
self._local_mode = True
print('=== NON-ELICE ENVIRONMENT ===')
print('Warning: This script is running on the non-elice environment. '
'All outputs will be redirected to standard output.')
print('=============================')
def _send(self, url, data):
if self._local_mode:
msg_type = data['type']
msg_data = data['data']
if msg_type in ['grader', 'score']:
print('[%s] %s' % (msg_type, msg_data), end='')
else:
print('[%s]' % msg_type, end='')
return
data_encoded = urllib.parse.urlencode(data)
q = urllib.request.Request(url,
data=data_encoded.encode('utf-8'))
try:
urllib.request.urlopen(q)
except Exception:
raise Exception('Failed to send message to elice.')
def _handle_image(self, filepath):
mtype, _ = mimetypes.guess_type(filepath)
if mtype is None or not mtype.startswith('image/'):
raise ValueError('Invalid image filepath.')
with open(filepath, 'rb') as f:
data = 'data:%s;base64,%s' % (
mtype,
base64.b64encode(f.read()).decode('utf-8')
)
return data
def _handle_file(self, filepath):
mtype, _ = mimetypes.guess_type(filepath)
with open(filepath, 'rb') as f:
data = '%s;data:%s;base64,%s' % (
os.path.basename(filepath),
mtype or 'application/octet-stream',
base64.b64encode(f.read()).decode('utf-8')
)
return data
def send(self, msg_type, msg_data):
self._send(
'http://%s:%s/comm/send/%s' % (self._executor_ip,
self._executor_com_port,
self._execution_token),
{'type': msg_type, 'data': msg_data}
)
def send_image(self, filepath):
self.send('image', self._handle_image(filepath))
def send_file(self, filepath):
self.send('file', self._handle_file(filepath))
def secure_init(self):
if self._local_mode:
return
try:
r = urllib.request.urlopen(
'http://%s:%s/comm/secure/init/%s' % (self._executor_ip,
self._executor_com_port,
self._execution_token)
)
except Exception:
raise Exception('Failed to initialize elice util secure channel.')
self._otp_key = r.read().decode('utf-8')
def secure_send(self, msg_type, msg_data):
self._send(
'http://%s:%s/comm/secure/send/%s/%s' % (self._executor_ip,
self._executor_com_port,
self._execution_token,
self._otp_key),
{'type': msg_type, 'data': msg_data}
)
def secure_send_image(self, filepath):
self.secure_send('image', self._handle_image(filepath))
def secure_send_file(self, filepath):
self.secure_send('file', self._handle_file(filepath))
def secure_send_grader(self, msg):
self.secure_send('grader', msg)
def secure_send_score(self, score):
self.secure_send('score', score)