generated from ansible-collections/collection_template
-
Notifications
You must be signed in to change notification settings - Fork 15
self hosted #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
cinco
wants to merge
5
commits into
ansible-collections:main
Choose a base branch
from
cinco:self-hosted
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
self hosted #32
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
55310bd
Enable self-hosted healthchecks.io instances
dsander 69f9443
Fix uuid retrieval on self-hosted instances
dsander 47495d1
📝 docs: add documentation for using a private instance of Healthcheck…
cinco d5ddf99
⏪ reverse changelog changes
cinco 57bdad0
📝 changelog fragment
cinco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
from ansible.module_utils.urls import fetch_url | ||
from ansible.module_utils._text import to_text | ||
from ansible.module_utils.basic import env_fallback | ||
from urllib.parse import urljoin | ||
|
||
|
||
class Response(object): | ||
|
@@ -42,7 +43,12 @@ def status_code(self): | |
class HealthchecksioHelper: | ||
def __init__(self, module): | ||
self.module = module | ||
self.baseurl = "https://healthchecks.io/api/v1" | ||
api_base_url = module.params.get("api_base_url") | ||
if api_base_url == self.healthchecksio_argument_spec().get("api_base_url").get("default"): | ||
self.ping_api_base_url = "https://hc-ping.com" | ||
else: | ||
self.ping_api_base_url = urljoin(api_base_url, "/ping") | ||
self.baseurl = urljoin(api_base_url, "/api/v1") | ||
self.timeout = module.params.get("timeout", 30) | ||
self.api_token = module.params.get("api_token") | ||
self.headers = {"X-Api-Key": self.api_token} | ||
|
@@ -90,7 +96,7 @@ def delete(self, path, data=None): | |
def head(self, path, data=None): | ||
resp, info = fetch_url( | ||
self.module, | ||
"https://hc-ping.com/{0}".format(path), | ||
"{0}/{1}".format(self.ping_api_base_url, path), | ||
data=data, | ||
headers=self.headers, | ||
method="HEAD", | ||
|
@@ -117,6 +123,19 @@ def healthchecksio_argument_spec(): | |
required=True, | ||
no_log=True, | ||
), | ||
api_base_url=dict( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You'll want to run black on this file to get the test to pass. |
||
type="str", | ||
fallback=( | ||
env_fallback, | ||
[ | ||
"HEALTHCHECKSIO_API_BASE_URL", | ||
"HC_API_BASE_URL" | ||
], | ||
), | ||
required=False, | ||
no_log=True, | ||
default="https://healthchecks.io" | ||
), | ||
) | ||
|
||
|
||
|
@@ -274,7 +293,7 @@ def __init__(self, module): | |
def get_uuid(self, json_data): | ||
ping_url = json_data.get("ping_url", None) | ||
if ping_url is not None: | ||
uuid = ping_url.split("/")[3] | ||
uuid = ping_url.split("/")[-1] | ||
if len(uuid) > 0: | ||
return uuid | ||
else: | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.