mirror of
https://github.com/matrix-construct/construct
synced 2024-11-15 22:41:12 +01:00
modules/web_hook: Add handler for github milestone.
This commit is contained in:
parent
2c10024900
commit
8a94a290be
1 changed files with 89 additions and 0 deletions
|
@ -109,6 +109,10 @@ github_find_issue_number(const json::object &content);
|
||||||
static std::pair<json::string, json::string>
|
static std::pair<json::string, json::string>
|
||||||
github_find_party(const json::object &content);
|
github_find_party(const json::object &content);
|
||||||
|
|
||||||
|
static bool
|
||||||
|
github_handle__milestone(std::ostream &,
|
||||||
|
const json::object &content);
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
github_handle__gollum(std::ostream &,
|
github_handle__gollum(std::ostream &,
|
||||||
const json::object &content);
|
const json::object &content);
|
||||||
|
@ -246,6 +250,8 @@ github_handle(client &client,
|
||||||
github_handle__delete(out, request.content):
|
github_handle__delete(out, request.content):
|
||||||
type == "gollum"?
|
type == "gollum"?
|
||||||
github_handle__gollum(out, request.content):
|
github_handle__gollum(out, request.content):
|
||||||
|
type == "milestone"?
|
||||||
|
github_handle__milestone(out, request.content):
|
||||||
|
|
||||||
true // unhandled will just show heading
|
true // unhandled will just show heading
|
||||||
};
|
};
|
||||||
|
@ -435,6 +441,89 @@ github_handle__gollum(std::ostream &out,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
github_handle__milestone(std::ostream &out,
|
||||||
|
const json::object &content)
|
||||||
|
{
|
||||||
|
const json::string &action
|
||||||
|
{
|
||||||
|
content["action"]
|
||||||
|
};
|
||||||
|
|
||||||
|
const json::object milestone
|
||||||
|
{
|
||||||
|
content["milestone"]
|
||||||
|
};
|
||||||
|
|
||||||
|
out
|
||||||
|
<< " "
|
||||||
|
<< action
|
||||||
|
<< " "
|
||||||
|
<< "<a href="
|
||||||
|
<< milestone["html_url"]
|
||||||
|
<< ">"
|
||||||
|
<< "<b>"
|
||||||
|
<< json::string(milestone["title"])
|
||||||
|
<< "</b>"
|
||||||
|
<< "</a>"
|
||||||
|
<< ' '
|
||||||
|
;
|
||||||
|
|
||||||
|
const json::string &state
|
||||||
|
{
|
||||||
|
milestone["state"]
|
||||||
|
};
|
||||||
|
|
||||||
|
if(state == "open")
|
||||||
|
out
|
||||||
|
<< "<font color=\"#FFFFFF\""
|
||||||
|
<< "data-mx-bg-color=\"#2cbe4e\">"
|
||||||
|
;
|
||||||
|
else if(state == "closed")
|
||||||
|
out
|
||||||
|
<< "<font color=\"#FFFFFF\""
|
||||||
|
<< "data-mx-bg-color=\"#cb2431\">"
|
||||||
|
;
|
||||||
|
|
||||||
|
out
|
||||||
|
<< " <b>"
|
||||||
|
<< state
|
||||||
|
<< "</b> "
|
||||||
|
<< "</font>"
|
||||||
|
;
|
||||||
|
|
||||||
|
out
|
||||||
|
<< ' '
|
||||||
|
<< "<pre><code>"
|
||||||
|
<< json::string(milestone["description"])
|
||||||
|
<< "</code></pre>"
|
||||||
|
;
|
||||||
|
|
||||||
|
out
|
||||||
|
<< ' '
|
||||||
|
<< " "
|
||||||
|
<< "Issues"
|
||||||
|
<< ' '
|
||||||
|
<< "open"
|
||||||
|
<< " "
|
||||||
|
<< "<font color=\"#2cbe4e\">"
|
||||||
|
<< "<b>"
|
||||||
|
<< milestone["open_issues"]
|
||||||
|
<< "</b>"
|
||||||
|
<< "</font>"
|
||||||
|
<< ' '
|
||||||
|
<< "closed"
|
||||||
|
<< ' '
|
||||||
|
<< "<font color=\"#cb2431\">"
|
||||||
|
<< "<b>"
|
||||||
|
<< milestone["closed_issues"]
|
||||||
|
<< "</b>"
|
||||||
|
<< "</font>"
|
||||||
|
;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
github_handle__push(std::ostream &out,
|
github_handle__push(std::ostream &out,
|
||||||
const json::object &content)
|
const json::object &content)
|
||||||
|
|
Loading…
Reference in a new issue