implemented mastodon
This commit is contained in:
parent
b4926729d6
commit
6e9574f376
14
.vscode/launch.json
vendored
Normal file
14
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Python Debugger: Module",
|
||||||
|
"type": "debugpy",
|
||||||
|
"request": "launch",
|
||||||
|
"module": "publish_meetups"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -1,9 +1,17 @@
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import json
|
import json
|
||||||
|
import logging
|
||||||
|
|
||||||
import toml
|
import toml
|
||||||
|
|
||||||
from .utils import Paths, PROGRAM_NAME
|
from .utils import Paths, PROGRAM_NAME
|
||||||
|
from .feeds.mastodon_feed import MastodonFeed
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
NAME_TO_FEED = {
|
||||||
|
"mastodon": MastodonFeed,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class PublishMeetups:
|
class PublishMeetups:
|
||||||
@ -19,15 +27,41 @@ class PublishMeetups:
|
|||||||
"mastodon": {},
|
"mastodon": {},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
def __enter__(self):
|
def __enter__(self):
|
||||||
if self.config_file.exists():
|
if self.config_file.exists():
|
||||||
with self.config_file.open("r") as f:
|
with self.config_file.open("r") as f:
|
||||||
self.config.update(toml.load(f))
|
self.config.update(toml.load(f))
|
||||||
|
|
||||||
print(self.config['active_feeds'][0])
|
|
||||||
|
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def __exit__(self, exc_type, exc_val, exc_tb):
|
def run(self):
|
||||||
|
for feed in self.config['active_feeds']:
|
||||||
|
self.run_feed(feed)
|
||||||
|
|
||||||
|
def run_feed(self, feed: str):
|
||||||
|
if feed not in NAME_TO_FEED:
|
||||||
|
self.logger.error(f"Feed {feed} is not implemented.")
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
feed_config = self.config.get(feed, {})
|
||||||
|
feed_class = NAME_TO_FEED[feed]
|
||||||
|
|
||||||
|
if not len(feed_config):
|
||||||
|
feed_config.update(feed_class.prompt_auth(feed_config))
|
||||||
|
self.config[feed] = feed_config
|
||||||
|
|
||||||
|
with self.config_file.open("w") as f:
|
||||||
|
toml.dump(self.config, f)
|
||||||
|
|
||||||
|
|
||||||
|
with feed_class(**feed_config) as f:
|
||||||
|
f.run()
|
||||||
|
|
||||||
|
|
||||||
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
||||||
|
print("Exiting")
|
||||||
with self.config_file.open("w") as f:
|
with self.config_file.open("w") as f:
|
||||||
toml.dump(self.config, f)
|
toml.dump(self.config, f)
|
||||||
|
@ -3,4 +3,8 @@ from . import PublishMeetups
|
|||||||
|
|
||||||
def cli():
|
def cli():
|
||||||
with PublishMeetups() as p:
|
with PublishMeetups() as p:
|
||||||
print(p)
|
p.run()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
cli()
|
||||||
|
@ -1,9 +1,19 @@
|
|||||||
class Feed:
|
class Feed:
|
||||||
|
@classmethod
|
||||||
|
def prompt_auth(cls, existing_config: dict) -> dict:
|
||||||
|
return existing_config
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def prompt_auth(self):
|
def __enter__(self):
|
||||||
return {}
|
return self
|
||||||
|
|
||||||
def create_post(self):
|
def post(self, message: str):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
self.post("Hello, World!")
|
||||||
|
|
||||||
|
def __exit__(self, exc_type, exc_value, traceback):
|
||||||
pass
|
pass
|
||||||
|
@ -3,48 +3,35 @@ from pathlib import Path
|
|||||||
from mastodon import Mastodon
|
from mastodon import Mastodon
|
||||||
|
|
||||||
from . import Feed
|
from . import Feed
|
||||||
from ..utils import CONFIG_PATH, PROGRAM_NAME, prompt
|
from ..utils import Paths, PROGRAM_NAME, prompt
|
||||||
|
|
||||||
|
|
||||||
class MastodonFeed(Feed):
|
class MastodonFeed(Feed):
|
||||||
CLIENTCRED_PATH: Path = CONFIG_PATH.joinpath("mastodon_clientcred.secret")
|
CLIENTCRED_PATH: Path = Paths.CONFIG_PATH.joinpath("mastodon_clientcred.secret")
|
||||||
USERCRED_PATH: Path = CONFIG_PATH.joinpath("mastodon_usercred.secret")
|
|
||||||
|
@classmethod
|
||||||
|
def prompt_auth(cls, existing_config: dict) -> dict:
|
||||||
|
"""
|
||||||
|
mastodon needs:
|
||||||
|
- the instance used
|
||||||
|
- an access token
|
||||||
|
"""
|
||||||
|
|
||||||
|
return {
|
||||||
|
**existing_config,
|
||||||
|
"api_base_url": prompt.for_string("The instance you use", "https://mastodon.social"),
|
||||||
|
"access_token": prompt.for_password("Access token"),
|
||||||
|
}
|
||||||
|
|
||||||
# https://github.com/halcy/Mastodon.py
|
# https://github.com/halcy/Mastodon.py
|
||||||
def __init__(self, username: str, password: str, api_base_url: str):
|
def __init__(self, api_base_url: str, access_token: str, **kwargs):
|
||||||
if not self.CLIENTCRED_PATH.exists():
|
self.mastodon = Mastodon(
|
||||||
self._create_app(api_base_url)
|
api_base_url=api_base_url,
|
||||||
self.mastodon = Mastodon(client_id=self.CLIENTCRED_PATH)
|
access_token=access_token,
|
||||||
|
|
||||||
self.mastodon.log_in(
|
|
||||||
username=username,
|
|
||||||
password=password,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
|
def post(self, message: str):
|
||||||
def _create_app(self, api_base_url: str):
|
print(f"Posting to Mastodon: {message}")
|
||||||
client_id, client_secret = Mastodon.create_app(
|
self.mastodon.toot(message)
|
||||||
PROGRAM_NAME,
|
|
||||||
api_base_url=api_base_url,
|
|
||||||
to_file=self.CLIENTCRED_PATH
|
|
||||||
)
|
|
||||||
|
|
||||||
self._save_clientcred(client_id, client_secret)
|
|
||||||
|
|
||||||
|
|
||||||
def prompt_auth(self) -> dict:
|
|
||||||
"""
|
|
||||||
mastodon needs:
|
|
||||||
- the instance used
|
|
||||||
- the email of the user
|
|
||||||
- the password of the user
|
|
||||||
"""
|
|
||||||
|
|
||||||
return {
|
|
||||||
"api_base_url": prompt.for_string("The instance you use", "https://mastodon.social"),
|
|
||||||
"username": prompt.for_string("E-Mail"),
|
|
||||||
"password": prompt.for_password("Password"),
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@ -12,10 +12,10 @@ def for_string(msg: str, default: Optional[str] = None) -> str:
|
|||||||
|
|
||||||
return input(msg + ': ').strip()
|
return input(msg + ': ').strip()
|
||||||
|
|
||||||
result = _real_prompt
|
result = _real_prompt()
|
||||||
print("> " + result)
|
print("> " + result)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
def for_password(msg: str) -> str:
|
def for_password(msg: str) -> str:
|
||||||
return getpass.getpass(msg + ': ').strip()
|
return getpass(msg + ': ').strip()
|
||||||
|
Loading…
Reference in New Issue
Block a user