confluence script updates

This commit is contained in:
Norm Rasmussen
2022-10-14 17:14:14 -04:00
parent b0dc353bf0
commit 9d133ecea5
4 changed files with 90 additions and 26 deletions

View File

@ -1,34 +1,82 @@
import requests
from requests.auth import HTTPBasicAuth
import json
import os
url = "https://northpass.atlassian.net/wiki/rest/api/content/2210463745/child/page"
#auth = HTTPBasicAuth("bnJhc211c3NlbkBub3J0aHBhc3MuY29tOnFmOUlsN1g0d2t0aGdRS0JPSWx5NTczNw==")
# Information
#url = "https://northpass.atlassian.net/wiki/rest/api/content/2210463745/child/page"
url = "https://northpass.atlassian.net/wiki/rest/api/content/"
auth = HTTPBasicAuth("nrasmussen@northpass.com", "qf9Il7X4wkthgQKBOIly5737")
headers = {
"Accept": "application/json",
}
#payload = json.dumps( {
# "type":"page",
# "ancestors":[{"id":2210463745}],
# "space":
# {"key":"~350535240"},
# } )
response = requests.request(
"GET",
url,
headers=headers,
auth=auth
)
jsonResponse = response.json()
for response in jsonResponse['results']:
if response['title'] == 'Flink':
print("Found")
print(response['title'])
rootdir = "~/Documents/Northpass/CustomerNotes/"
def getCompany():
rootdir = "/Users/normrasmussen/Documents/Northpass/CustomerNotes/"
companyName = os.listdir(rootdir)
for fileName in companyName:
company = fileName[:-3]
getPages(company)
def readNewNotes(company):
rootdir = "/Users/normrasmussen/Documents/Northpass/CustomerNotes/"
with open(rootdir+company+".md", "r") as companyfile:
notes = companyfile.readlines()
createNewPage(company, notes)
print(notes)
def getPages(company):
headers = {
"Accept": "application/json",
}
response = requests.request(
"GET",
url,
headers=headers,
auth=auth
)
jsonResponse = response.json()
for response in jsonResponse['results']:
if response['title'] == company:
print(f"{company} Found. Updating page....")
else:
print(f"{company} not found. Create new page...")
readNewNotes(company)
def createNewPage(company="Example",
notes="h1. 10/06/2022\n', '* Cami and Soner to pull their own analytics \n', '* Unsure what those key metrics are\n', '* However, they currently look at:\n', ' * Completion % of courses\n', ' * Number of completed courses \n', '* Planning needs to happen about what those analytics are \n', '* Main priorities, cateogries, ensure the front end is Flinky, \n', '* Reduce banner slightly, Cami to send a picture of what she wants\n', '* They want to launch ASAP, but need to find a window that works best\n', '* Wednesdays are generally slow and could be a good transfer day\n', '* Wednesday 10/19 - tentative \n', '\n'"):
url = "https://northpass.atlassian.net/wiki/rest/api/content/"
auth = HTTPBasicAuth("nrasmussen@northpass.com", "qf9Il7X4wkthgQKBOIly5737")
headers = {
"X-Atlassian-Token": "no-check",
"Accept": "application/json",
"Content-Type": "application/json"
}
payload = json.dumps( {
"type":"page",
"title": company,
"ancestors":[{"id":2210463745}],
"space":
{"key":"~350535240"},
"body":
{"storage":
{"value": notes,
"representation":"storage"}}
} )
response = requests.request(
"POST",
url,
data=payload,
headers=headers,
auth=auth
)
print("createNewPage function has run")
response = json.dumps(json.loads(response.text), sort_keys=True, indent=4, separators=(",", ": "))
print(response)
#jsonResponse = response.json()
#print(jsonResponse)
if __name__ == "__main__":
createNewPage()
#readNewNotes(company="Flink")