Compare commits

..

No commits in common. "e3c11d1f5806161c9b902802dca0dd7ce2f58a6c" and "0d3d395931e4029c52c77a5f4bce894dfbbcee96" have entirely different histories.

2 changed files with 3 additions and 13 deletions

View File

@ -27,17 +27,13 @@ jobs:
Uses basic auth for the rest api. Uses basic auth for the rest api.
- `cloud`: Can be either: - `cloud`: The ID can be found by looking at your confluence domain: `https://<cloud>.atlassian.net/...`
- A subdomain (`acme` for Atlassian hosted instances (e.g. `https://acme.atlassian.net`))
- A full URL (e.g., `https://mycompany.com` for self-hosted instances)
- `user`: The user that generated the access token - `user`: The user that generated the access token
- `token`: You can generate the token [here](https://id.atlassian.com/manage-profile/security/api-tokens). Link to [Docs](https://confluence.atlassian.com/cloud/api-tokens-938839638.html) - `token`: You can generate the token [here](https://id.atlassian.com/manage-profile/security/api-tokens). Link to [Docs](https://confluence.atlassian.com/cloud/api-tokens-938839638.html)
- `to`: The page ID can be found by simply navigating to the page where you want the content to be posted to and look at the url. It will look something like this: - `to`: The page ID can be found by simply navigating to the page where you want the content to be postet to and looke at the url. It will look something like this: `https://<cloud-id>.atlassian.net/wiki/spaces/<space>/pages/<page-id>/<title>`
- For Atlassian hosted: `https://<subdomain>.atlassian.net/wiki/spaces/<space>/pages/<page-id>/<title>`
- For self-hosted: `https://<your-url>/wiki/spaces/<space>/pages/<page-id>/<title>`
### Using secrets ### Using secrets

View File

@ -25,13 +25,7 @@ for key in ['from', 'to', 'cloud', 'user', 'token']:
with open(join(workspace, envs['from'])) as f: with open(join(workspace, envs['from'])) as f:
md = f.read() md = f.read()
base_url = envs['cloud'] url = f"https://{envs['cloud']}.atlassian.net/wiki/rest/api/content/{envs['to']}"
if '://' in base_url: # It's a full URL
# Remove trailing slash if present
base_url = base_url.rstrip('/')
url = f"{base_url}/wiki/rest/api/content/{envs['to']}"
else: # It's a subdomain
url = f"https://{base_url}.atlassian.net/wiki/rest/api/content/{envs['to']}"
current = requests.get(url, auth=(envs['user'], envs['token'])).json() current = requests.get(url, auth=(envs['user'], envs['token'])).json()