Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
webhook-to-matrix-hookshot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
isgphys
webhook-to-matrix-hookshot
Commits
ec6b1dc0
Commit
ec6b1dc0
authored
2 years ago
by
Sven Mäder
Browse files
Options
Downloads
Patches
Plain Diff
Add missing deb, config and /webhook/grafana
parent
a7af477e
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+4
-0
4 additions, 0 deletions
.gitignore
app.py
+43
-9
43 additions, 9 deletions
app.py
config.py
+1
-0
1 addition, 0 deletions
config.py
requirements.txt
+1
-0
1 addition, 0 deletions
requirements.txt
with
49 additions
and
9 deletions
.gitignore
0 → 100644
+
4
−
0
View file @
ec6b1dc0
.vim*
.bash*
.profile*
env/
This diff is collapsed.
Click to expand it.
app.py
+
43
−
9
View file @
ec6b1dc0
import
requests
from
flask
import
Flask
,
request
,
make_response
url
=
'
https://hookshot.mbot.ethz.ch/webhook/
'
from
config
import
url
app
=
Flask
(
__name__
)
...
...
@@ -9,8 +8,8 @@ app = Flask(__name__)
def
slack
(
hook
):
plain
=
''
html
=
''
markdown
=
''
incoming
=
request
.
json
print
(
'
Got incoming /slack hook:
'
+
str
(
incoming
))
if
'
attachments
'
in
incoming
:
for
attachment
in
incoming
[
'
attachments
'
]:
...
...
@@ -40,19 +39,54 @@ def slack(hook):
html
+=
'
<b>
'
+
title
+
'
</b>:
'
+
value
+
'
<br/>
\n
'
html
+=
'
</font>
'
if
color
else
''
if
text
and
html
:
r
=
requests
.
post
(
url
+
hook
,
json
=
{
'
text
'
:
plain
,
'
html
'
:
html
})
if
plain
and
html
:
json
=
{
'
text
'
:
plain
,
'
html
'
:
html
}
print
(
'
Sending hookshot:
'
+
str
(
json
))
r
=
requests
.
post
(
url
+
hook
,
json
=
json
)
else
:
print
(
'
Invalid format
:
'
+
incoming
)
print
(
'
Invalid format
, sending unmodified.
'
)
r
=
requests
.
post
(
url
+
hook
,
json
=
incoming
)
return
{
"
ok
"
:
True
}
@app.route
(
"
/webhook/grafana/<hook>
"
,
methods
=
[
'
POST
'
])
def
grafana
(
hook
):
incoming
=
request
.
json
r
=
requests
.
post
(
url
+
hook
,
json
=
incoming
)
return
incoming
plain
=
''
html
=
''
incoming
=
dict
(
request
.
json
)
print
(
'
Got incoming /grafana hook:
'
+
str
(
incoming
))
title
=
str
(
incoming
.
get
(
'
title
'
,
''
))
rule_url
=
str
(
incoming
.
get
(
'
ruleUrl
'
,
''
))
rule_name
=
str
(
incoming
.
get
(
'
ruleName
'
,
''
))
message
=
str
(
incoming
.
get
(
'
message
'
,
''
))
state
=
str
(
incoming
.
get
(
'
state
'
,
''
))
eval_matches
=
incoming
.
get
(
'
evalMatches
'
,
[])
if
title
and
rule_url
and
rule_name
:
plain
+=
title
+
'
'
+
rule_url
+
'
:
'
+
rule_name
+
'
(
'
+
state
+
'
)
\n
'
html
+=
'
<b><a href=
"'
+
rule_url
+
'"
>
'
+
title
+
'
</a></b>:
'
+
rule_name
+
'
(
'
+
state
+
'
)<br/>
\n
'
if
message
:
plain
+=
message
+
'
\n
'
html
+=
message
+
'
<br/>
\n
'
for
eval_match
in
eval_matches
:
metric
=
str
(
eval_match
.
get
(
'
metric
'
,
''
))
value
=
str
(
eval_match
.
get
(
'
value
'
,
''
))
if
metric
and
value
:
plain
+=
metric
+
'
:
'
+
value
+
'
\n
'
html
+=
'
<b>
'
+
metric
+
'
</b>:
'
+
value
+
'
<br/>
\n
'
if
plain
and
html
:
json
=
{
'
text
'
:
plain
,
'
html
'
:
html
}
print
(
'
Sending hookshot:
'
+
str
(
json
))
r
=
requests
.
post
(
url
+
hook
,
json
=
json
)
else
:
print
(
'
Invalid format, sending incoming as str.
'
)
r
=
requests
.
post
(
url
+
hook
,
json
=
{
'
text
'
:
'
Invalid format:
'
+
str
(
incoming
)})
return
{
"
ok
"
:
True
}
if
__name__
==
"
__main__
"
:
app
.
run
(
port
=
9080
,
debug
=
True
)
This diff is collapsed.
Click to expand it.
config.py
0 → 100644
+
1
−
0
View file @
ec6b1dc0
url
=
'
https://hookshot.mbot.ethz.ch/webhook/
'
This diff is collapsed.
Click to expand it.
requirements.txt
+
1
−
0
View file @
ec6b1dc0
flask
requests
uwsgi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment