Plex-Meta-Manager/modules/github.py

52 lines
1.9 KiB
Python
Raw Normal View History

2022-03-18 13:00:42 +00:00
import re
from modules import util
logger = util.logger
base_url = "https://api.github.com/repos/meisnate12/Plex-Meta-Manager"
2022-07-13 05:13:25 +00:00
configs_raw_url = "https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Configs"
2022-03-18 13:00:42 +00:00
class GitHub:
def __init__(self, config):
self.config = config
2022-07-13 05:13:25 +00:00
self._configs_url = None
2022-09-22 18:34:25 +00:00
self._config_tags = []
2022-03-18 13:00:42 +00:00
def latest_release_notes(self):
response = self.config.get_json(f"{base_url}/releases/latest")
return response["body"]
2022-05-05 12:48:04 +00:00
def get_commits(self, dev_version, nightly=False):
2022-03-18 13:00:42 +00:00
master_sha = self.config.get_json(f"{base_url}/commits/master")["sha"]
2022-05-05 12:48:04 +00:00
response = self.config.get_json(f"{base_url}/commits", params={"sha": "nightly" if nightly else "develop"})
2022-03-18 13:00:42 +00:00
commits = []
for commit in response:
if commit["sha"] == master_sha:
break
message = commit["commit"]["message"]
match = re.match("^\\[(\\d)\\]", message)
if match and int(match.group(1)) <= dev_version:
break
commits.append(message)
return "\n".join(commits)
2022-07-13 05:13:25 +00:00
@property
2022-09-22 18:34:25 +00:00
def config_tags(self):
if not self._config_tags:
2022-07-13 05:13:25 +00:00
try:
2022-09-25 18:43:58 +00:00
self._config_tags = [r["ref"][11:] for r in self.config.get_json(f"{base_url}-Configs/git/refs/tags")]
2022-07-13 05:13:25 +00:00
except TypeError:
2022-09-22 18:34:25 +00:00
pass
return self._config_tags
@property
def configs_url(self):
if self._configs_url is None:
self._configs_url = f"{configs_raw_url}/master/"
2022-09-25 18:43:58 +00:00
if self.config.version[1] in self.config_tags and (
self.config.latest_version[1] != self.config.version[1]
or (not self.config.check_nightly and 0 <= self.config.version[2] <= util.get_develop()[2])
):
self._configs_url = f"{configs_raw_url}/v{self.config.version[1]}/"
2022-07-13 05:13:25 +00:00
return self._configs_url