-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhackathon.py
200 lines (167 loc) · 5.54 KB
/
hackathon.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
from flask import Flask
from flask import request
import json
from datetime import datetime
from configparser import SafeConfigParser
from drive_helpers import main_quickstart
from __future__ import print_function
import os.path
from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
from google.oauth2 import service_account
from google_auth_oauthlib.flow import InstalledAppFlow
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
# If modifying these scopes, delete the file token.json.
SCOPES = ['https://www.googleapis.com/auth/documents', 'https://www.googleapis.com/auth/drive.file']
# The ID of a sample document.
DOCUMENT_ID = '195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE'
SERVICE_ACCOUNT_FILE = 'service-account.json'
"""
Read in and parse config options
"""
config = SafeConfigParser()
config.read('config')
listen_port = config.get('main', 'listen_port')
include_channel = config.get('main', 'include_channel')
date_format = config.get('main', 'tag_date_format')
compact_date= config.get('main', 'compact_date')
app = Flask(__name__)
@app.route("/test")
def slash_2():
return "hello"
@app.route("/save", methods=['POST'])
def save_to_docs():
form_text = request.form["text"]
channel_name = request.form["channel_name"]
creds = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
try:
service = build('docs', 'v1', credentials=creds)
# drive_service = build('drive', 'v3', credentials=creds)
# Retrieve the documents contents from the Docs service.
# document = service.documents().get(documentId=DOCUMENT_ID).execute()
print("Service starting")
# print('The title of the document is: {}'.format(document.get('title')))
# title = 'My Document'
# body = {
# 'title': title
# }
# doc = service.documents() \
# .create(body=body).execute()
# print('Created document with title: {0}'.format(
# doc.get('title')))
# documentId = doc.get('documentId')
text_from_user = form_text
text_to_insert = "Channel [{}]:\n {}\n\n".format(channel_name, text_from_user)
requests = [
{
'insertText': {
'location': {
'index': 1,
},
'text': text_to_insert
}
},
]
documentId = '1WYbL7QHcEo-_Asq_YBFAldiVNS2SBOiH9MCvLfec97A'
result = service.documents().batchUpdate(
documentId=documentId, body={'requests': requests}).execute()
print("Wrote to doc {}".format(documentId))
"""
The following code is used to add permissions to a file
"""
# def callback(request_id, response, exception):
# if exception:
# # Handle error
# print (exception)
# else:
# print ("Permission Id: {}".format(response.get('id')))
# batch = drive_service.new_batch_http_request(callback=callback)
# user_permission = {
# 'type': 'user',
# 'role': 'writer',
# 'emailAddress': '[email protected]'
# }
# batch.add(drive_service.permissions().create(
# fileId='1WYbL7QHcEo-_Asq_YBFAldiVNS2SBOiH9MCvLfec97A',
# body=user_permission,
# fields='id',
# ))
# batch.execute()
except HttpError as err:
print(err)
return "Saved to https://docs.google.com/document/d/1WYbL7QHcEo-_Asq_YBFAldiVNS2SBOiH9MCvLfec97A/edit"
@app.route("/TF", methods=['POST'])
def get_tf_pr():
form_text = request.form["text"]
if len(form_text) > 0:
output = "[TF PR{}](https://github.com/Affirm/terraffirm/pull/{})".format(form_text, form_text)
data = {
"response_type": "in_channel",
"text": output
}
else:
data = {
"response_type": "ephemeral",
"text": "Error: No status message entered. Please try again.",
}
response = app.response_class(
response=json.dumps(data),
status=200,
mimetype='application/json'
)
return response
@app.route("/shriya-test")
def shriya_test():
return main_quickstart()
@app.route("/standup", methods=['GET', 'POST'])
def slash_command():
"""
Retrieve text field from the form request which contains
the message entered by the user who invoked the slash command
"""
form_text = request.form["text"]
channel = "_"+request.form["channel_name"] if include_channel == 'True' else " "
short_tag_date = "%m%d%Y" if date_format == 'mdy' else "%Y%m%d"
long_tag_date = "%m_%d_%Y" if date_format == 'mdy' else "%Y_%m_%d"
tag_date = short_tag_date if compact_date == 'True' else long_tag_date
if len(form_text) > 0:
"""
Format the return message with markdown with standup hash tags
"""
output = "##### Status Update for {}\n\n{}\n\n#standup-{} #standup".format(
datetime.strftime(datetime.now(), "%A %-d %B %Y"),
form_text,
datetime.strftime(datetime.now(), tag_date+channel),
)
"""
Create data json object to return to Mattermost with
response_type = in_channel (everyone sees) or ephemeral (only sender sees)
text = the message to send
"""
data = {
"response_type": "in_channel",
"text": output,
}
else:
"""
If the user didn't type a message send a note that only
they see about typing a message
"""
data = {
"response_type": "ephemeral",
"text": "Error: No status message entered. Please try again.",
}
"""
Create the response object to send to Mattermost with the
data object written as json, 200 status, and proper mimetype
"""
response = app.response_class(
response=json.dumps(data),
status=200,
mimetype='application/json'
)
return response
if __name__ == '__main__':
app.run(host='0.0.0.0', port=listen_port, debug=False)