forked from discreteoptimization/setcover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
submit_any.py
executable file
·243 lines (189 loc) · 7.34 KB
/
submit_any.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import urllib
import urllib2
import hashlib
import email.message
import email.encoders
import time, os
from collections import namedtuple
Metadata = namedtuple("Metadata", ['url', 'name', 'part_data'])
Part = namedtuple("Part", ['sid', 'input_file', 'source', 'name'])
def check_login(metadata, login, password):
sid = 'B5DXTczU-dev'
submission = '0'
source = ''
print '== Checking Login Credentials ... '
(login, ch, state, ch_aux) = get_challenge(metadata.url, login, sid)
if((not login) or (not ch) or (not state)):
print '\n!! Error: %s\n' % login
return
ch_resp = challenge_response(login, password, ch)
(result, string) = submit_solution(metadata.url, login, ch_resp, sid, submission, source, state, ch_aux)
if string.strip() == 'password verified':
print '== credentials verified\n'
else :
print '\n!! login failed'
print '== %s' % string.strip()
quit()
def load_meta_data():
try:
metadata_file = open('_metadata', 'r')
url = metadata_file.readline().strip()
name = metadata_file.readline().strip()
part_count = int(metadata_file.readline().strip())
part_data = []
for i in range(0,part_count):
line = metadata_file.readline().strip()
line_parts = line.split(',')
line_parts = [x.strip() for x in line_parts]
assert(len(line_parts) == 4)
part_data.append(Part(*line_parts))
metadata_file.close()
except Exception, e:
print 'problem parsing assignment metadata file'
print 'exception message:'
print e
quit()
return Metadata(url, name, part_data)
def submit():
metadata = load_meta_data()
#print metadata
sid = 'HoAkIHSK'
print '==\n==',metadata.name,'Any Solution Submission \n=='
(login, password) = login_prompt()
if not login:
print '!! Submission Cancelled'
return
print '\n== Connecting to Coursera ... '
check_login(metadata, login, password)
selected_parts = part_prompt()
print '\nIdenified the following file(s):', ', '.join(selected_parts)
print '\nStarting runs.'
for part in selected_parts:
(login, ch, state, ch_aux) = get_challenge(metadata.url, login, sid)
if not login or not ch or not state:
print '\n!! Error: %s\n' % login
return
submission = output(part)
ch_resp = challenge_response(login, password, ch)
(result, string) = submit_solution(metadata.url, login, ch_resp, sid, submission, get_source('solver.py'), state, ch_aux)
print '== %s' % string.strip()
def login_prompt():
"""Prompt the user for login credentials. Returns a tuple (login, password)."""
(login, password) = basic_prompt()
return (login, password)
def basic_prompt():
"""Prompt the user for login credentials. Returns a tuple (login, password)."""
login = raw_input('Login (Email address): ')
password = raw_input('Submission Password (from the programming assignments page. This is NOT your own account\'s password): ')
return (login, password)
def part_prompt():
print 'Hello! Enter the name(s) of data file(s) you would like to test (e.g. sc_6_1).'
print 'Use a comma separated list to specify multiple files'
part_text = raw_input('File name(s): ')
selected_parts = []
for item in part_text.split(','):
if len(item.strip()) > 0:
selected_parts.append(item.strip())
if len(selected_parts) <= 0:
print 'No valid assignment parts identified. Please try again. \n'
return part_prompt(parts)
else:
return selected_parts
def get_challenge(c_url, email, sid):
"""Gets the challenge salt from the server. Returns (email,ch,state,ch_aux)."""
url = challenge_url(c_url)
values = {'email_address': email, 'assignment_part_sid': sid, 'response_encoding': 'delim'}
data = urllib.urlencode(values)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
text = response.read().strip()
splits = text.split('|')
if len(splits) != 9:
print 'Badly formatted challenge response: %s' % text
return None
return (splits[2], splits[4], splits[6], splits[8])
def challenge_response(email, passwd, challenge):
sha1 = hashlib.sha1()
sha1.update(''.join([challenge, passwd]))
digest = sha1.hexdigest()
strAnswer = ''
for i in range(0, len(digest)):
strAnswer = strAnswer + digest[i]
return strAnswer
def challenge_url(url):
"""Returns the challenge url."""
return 'https://class.coursera.org/' + url + '/assignment/challenge'
def submit_url(url):
"""Returns the submission url."""
return 'https://class.coursera.org/' + url + '/assignment/submit'
def submit_solution(c_url, email_address, ch_resp, sid, output, source, state, ch_aux):
"""Submits a solution to the server. Returns (result, string)."""
source_64_msg = email.message.Message()
source_64_msg.set_payload(source)
email.encoders.encode_base64(source_64_msg)
output_64_msg = email.message.Message()
output_64_msg.set_payload(output)
email.encoders.encode_base64(output_64_msg)
values = {
'assignment_part_sid': sid,
'email_address': email_address,
# 'submission' : output, \
'submission': output_64_msg.get_payload(),
# 'submission_aux' : source, \
'submission_aux': source_64_msg.get_payload(),
'challenge_response': ch_resp,
'state': state,
}
url = submit_url(c_url)
data = urllib.urlencode(values)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
string = response.read().strip()
result = 0
return (result, string)
def get_source(source_file):
"""Collects the source code (just for logging purposes)."""
f = open(source_file,'r')
src = f.read()
f.close()
return src
try:
pkg = __import__('solver')
if not hasattr(pkg, 'solve_it'):
print 'the solve_it() function was not found in solver.py'
quit()
solve_it = pkg.solve_it
except ImportError:
print 'solver.py was not found in the python path.'
quit()
def load_input_data(fileLocation):
inputDataFile = open(fileLocation, 'r')
inputData = ''.join(inputDataFile.readlines())
inputDataFile.close()
return inputData
def output(input_file):
"""Use student code to compute the output for test cases."""
solution = ''
start = time.clock()
try:
solution = solve_it(load_input_data('data'+os.sep+input_file))
except Exception, e:
print 'the solve_it(input_data) method from solver.py raised an exception'
print 'try testing it with python ./solver.py before running this submission script'
print 'exception message:'
print e
print ''
return 'Local Exception =('
end = time.clock()
if not isinstance(solution, str):
print 'Warning: the submitted solution was not ASCII and will be converted. Some information may be lost.'
print 'Orginal: '
print solution
solution = solution.encode('ascii', 'ignore')
print 'Submitting: '
print input_file
print solution
return str(input_file) + '\n' + solution.strip() + '\n' + str(end - start)
submit()