- Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathput_repo_requests_in_db.py
163 lines (125 loc) · 5.97 KB
/
put_repo_requests_in_db.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
importdatetime
importjson
importos
importre
importgspread
importunicodecsvascsv
fromappimportdb
fromemailerimportcreate_email
fromemailerimportsend
fromendpointimportEndpoint
fromrepo_requestimportRepoRequest
fromrepositoryimportRepository
fromutilimportsafe_commit
defget_repo_request_rows():
fromoauth2client.service_accountimportServiceAccountCredentials
# this file inspired by https://www.twilio.com/blog/2017/02/an-easy-way-to-read-and-write-to-a-google-spreadsheet-in-python.html
# use creds to create a client to interact with the Google Drive API
scopes= ['https://spreadsheets.google.com/feeds']
json_creds=os.getenv("GOOGLE_SHEETS_CREDS_JSON")
creds_dict=json.loads(json_creds)
# hack to get around ugly new line escaping issues
# this works for me, but later found links to what might be cleaner solutions:
# use ast.literal_eval? https://github.com/googleapis/google-api-go-client/issues/185#issuecomment-422732250
# or maybe dumping like this might fix it? https://coreyward.svbtle.com/how-to-send-a-multiline-file-to-heroku-config
creds_dict["private_key"] =creds_dict["private_key"].replace("\\\\n", "\n")
# now continue
creds=ServiceAccountCredentials.from_json_keyfile_dict(creds_dict, scopes)
client=gspread.authorize(creds)
# Find a workbook by url
spreadsheet=client.open_by_url("https://docs.google.com/spreadsheets/d/1RcQuetbKVYRRf0GhGZQi38okY8gT1cPUs6l3RM94yQo/edit#gid=704459328")
sheet=spreadsheet.sheet1
# Extract and print all of the values
rows=sheet.get_all_values()
print(rows[0:1])
returnrows
defsave_repo_request_rows(rows):
withopen('out.csv','wb') asf:
w=csv.DictWriter(f, fieldnames=RepoRequest.list_fieldnames(), encoding='utf-8-sig')
forrowinrows[1:]: # skip header row
my_repo_request=RepoRequest()
my_repo_request.set_id_seed(row[0])
column_num=0
forfieldnameinRepoRequest.list_fieldnames():
iffieldname!="id":
setattr(my_repo_request, fieldname, row[column_num])
column_num+=1
w.writerow(my_repo_request.to_dict())
print("adding repo request {}".format(my_repo_request))
db.session.merge(my_repo_request)
safe_commit(db)
defadd_endpoint(my_request):
ifnotmy_request.pmh_url:
returnNone
endpoint_with_this_id=Endpoint.query.filter(Endpoint.repo_request_id==my_request.id).first()
ifendpoint_with_this_id:
print("one already matches {}".format(my_request.id))
returnNone
raw_endpoint=my_request.pmh_url
clean_endpoint=raw_endpoint.strip()
clean_endpoint=clean_endpoint.strip("?")
clean_endpoint=re.sub("\?verb=.*$", "", clean_endpoint, re.IGNORECASE)
clean_endpoint=re.sub("^https?://api\.unpaywall\.org/repository/endpoint/test/", "", clean_endpoint, re.IGNORECASE)
print("raw endpoint is {}, clean endpoint is {}".format(raw_endpoint, clean_endpoint))
matching_endpoint=Endpoint()
matching_endpoint.pmh_url=clean_endpoint
repo_matches=my_request.matching_repositories()
ifrepo_matches:
matching_repo=repo_matches[0]
print("yay! for {} {} matches repository {}".format(
my_request.institution_name, my_request.repo_name, matching_repo))
else:
print("no matching repository for {}: {}".format(
my_request.institution_name, my_request.repo_name))
matching_repo=Repository()
# overwrite stuff with request
matching_repo.institution_name=my_request.institution_name
matching_repo.repository_name=my_request.repo_name
matching_repo.home_page=my_request.repo_home_page
matching_endpoint.repo_unique_id=matching_repo.id
matching_endpoint.email=my_request.email
matching_endpoint.repo_request_id=my_request.id
matching_endpoint.ready_to_run=True
matching_endpoint.pmh_set=my_request.pmh_setorNone
ifmy_request.metadata_prefix:
matching_endpoint.metadata_prefix=my_request.metadata_prefix
matching_endpoint.set_identify_and_initial_query()
db.session.merge(matching_endpoint)
db.session.merge(matching_repo)
print("added {} {}".format(matching_endpoint, matching_repo))
print("see at url http://unpaywall.org/sources/repository/{}".format(matching_endpoint.id))
safe_commit(db)
print("saved")
print("now sending email")
# get the endpoint again, so it gets with all the meta info etc
matching_endpoint=Endpoint.query.get(matching_endpoint.id)
matching_endpoint.contacted_text="automated welcome email"
matching_endpoint.contacted=datetime.datetime.utcnow().isoformat()
safe_commit(db)
send_announcement_email(matching_endpoint)
print("email sent")
returnmatching_endpoint
defsend_announcement_email(my_endpoint):
my_endpoint_id=my_endpoint.id
email_address=my_endpoint.email
repo_name=my_endpoint.repo.repository_name
institution_name=my_endpoint.repo.institution_name
print(my_endpoint_id, email_address, repo_name, institution_name)
# prep email
email=create_email(email_address,
"Update on your Unpaywall indexing request (ref: {} )".format(my_endpoint_id),
"repo_pulse",
{"data": {"endpoint_id": my_endpoint_id, "repo_name": repo_name, "institution_name": institution_name}},
[])
send(email, for_real=True)
if__name__=="__main__":
rows=get_repo_request_rows()
save_repo_request_rows(rows)
my_requests=RepoRequest.query.all()
formy_requestinmy_requests:
ifnotmy_request.is_duplicate:
add_endpoint(my_request)
# my_endpoints = Endpoint.query.filter(Endpoint.contacted_text=="automated welcome email")
# for my_endpoint in my_endpoints:
# print "would send an email to {}".format(my_endpoint)
# send_announcement_email(my_endpoint)