mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
feat(github): add support for github enterprise (#1841)
This commit is contained in:
parent
12a47fe72e
commit
58d72c4f19
2 changed files with 8 additions and 2 deletions
|
@ -18,12 +18,13 @@ namespace modules {
|
|||
bool build(builder* builder, const string& tag) const;
|
||||
|
||||
private:
|
||||
void update_label(const int);
|
||||
void update_label(int);
|
||||
int get_number_of_notification();
|
||||
string request();
|
||||
static constexpr auto TAG_LABEL = "<label>";
|
||||
|
||||
label_t m_label{};
|
||||
string m_api_url;
|
||||
string m_accesstoken{};
|
||||
unique_ptr<http_downloader> m_http{};
|
||||
bool m_empty_notifications{false};
|
||||
|
|
|
@ -17,6 +17,11 @@ namespace modules {
|
|||
github_module::github_module(const bar_settings& bar, string name_)
|
||||
: timer_module<github_module>(bar, move(name_)), m_http(http_util::make_downloader()) {
|
||||
m_accesstoken = m_conf.get(name(), "token");
|
||||
m_api_url = m_conf.get(name(), "api-url", "https://api.github.com/"s);
|
||||
if (m_api_url.back() != '/') {
|
||||
m_api_url += '/';
|
||||
}
|
||||
|
||||
m_interval = m_conf.get<decltype(m_interval)>(name(), "interval", 60s);
|
||||
m_empty_notifications = m_conf.get(name(), "empty-notifications", m_empty_notifications);
|
||||
|
||||
|
@ -41,7 +46,7 @@ namespace modules {
|
|||
}
|
||||
|
||||
string github_module::request() {
|
||||
string content{m_http->get("https://api.github.com/notifications?access_token=" + m_accesstoken)};
|
||||
string content{m_http->get(m_api_url + "notifications?access_token=" + m_accesstoken)};
|
||||
|
||||
long response_code{m_http->response_code()};
|
||||
switch (response_code) {
|
||||
|
|
Loading…
Reference in a new issue