Sketch of command-line registration script
This commit is contained in:
parent
b772f8aeaf
commit
d1633d8040
@ -11,6 +11,9 @@ dependencies = [
|
|||||||
"requests>=2.32.3",
|
"requests>=2.32.3",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[project.scripts]
|
||||||
|
register = "gotosocial.register:cli"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["hatchling"]
|
requires = ["hatchling"]
|
||||||
build-backend = "hatchling.build"
|
build-backend = "hatchling.build"
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
# script to register an API
|
# script to register an API
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
from pathlib import Path
|
||||||
|
import json
|
||||||
|
import argparse
|
||||||
|
|
||||||
|
|
||||||
class Application:
|
class Application:
|
||||||
@ -10,6 +13,11 @@ class Application:
|
|||||||
self.headers = {"Content-Type": "application/json"}
|
self.headers = {"Content-Type": "application/json"}
|
||||||
|
|
||||||
def register_app(self):
|
def register_app(self):
|
||||||
|
app_json = Path(f"./{self.name}_app.json")
|
||||||
|
if Path.isfile():
|
||||||
|
print(f"Found {app_json} file")
|
||||||
|
print(f"Looks like you've already registered {self.name}")
|
||||||
|
return False
|
||||||
response = requests.post(
|
response = requests.post(
|
||||||
f"{self.base_url}/api/v1/statuses",
|
f"{self.base_url}/api/v1/statuses",
|
||||||
data={
|
data={
|
||||||
@ -19,19 +27,27 @@ class Application:
|
|||||||
},
|
},
|
||||||
headers=self.headers,
|
headers=self.headers,
|
||||||
)
|
)
|
||||||
response.raise_for_status()
|
try:
|
||||||
json_r = response.json()
|
response.raise_for_status()
|
||||||
self.client_id = json_r["client_id"]
|
json_r = response.json()
|
||||||
self.client_secret = json_r["client_secret"]
|
self.client_id = json_r["client_id"]
|
||||||
print(f"Registered {self.name} as {self.client_id}")
|
self.client_secret = json_r["client_secret"]
|
||||||
|
print(f"Registered {self.name}, client ID is {self.client_id}")
|
||||||
|
with open(app_json, "w") as jfh:
|
||||||
|
json.dump(json_r, jfh, indent=2)
|
||||||
|
print(f"Wrote response to {app_json}")
|
||||||
|
except Exception as e:
|
||||||
|
print("Something went wrong...")
|
||||||
|
print(e)
|
||||||
|
|
||||||
|
|
||||||
# curl \
|
def cli():
|
||||||
# -X POST \
|
ap = argparse.ArgumentParser()
|
||||||
# -H 'Content-Type:application/json' \
|
ap.add_argument("-s", "--server", required=True, type=str, help="GoToSocial server")
|
||||||
# -d '{
|
ap.add_argument("-n", "--name", required=True, type=str, help="Application name")
|
||||||
# "client_name": "your_app_name",
|
ap.parse_args()
|
||||||
# "redirect_uris": "urn:ietf:wg:oauth:2.0:oob",
|
print(ap)
|
||||||
# "scopes": "read"
|
|
||||||
# }' \
|
|
||||||
# 'https://example.org/api/v1/apps'
|
if __name__ == "__main__":
|
||||||
|
cli()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user