-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlfs_checker.py
153 lines (120 loc) · 3.79 KB
/
lfs_checker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import os
from typing import (
Dict,
List,
NamedTuple,
Set,
Tuple,
)
from discord_webhook import (
DiscordEmbed,
DiscordWebhook,
)
from git import Repo
REPO_DIR = os.getenv("REPO_DIR")
WEBHOOK_URL = os.getenv("WEBHOOK_URL")
class GitLock(NamedTuple):
file: str
user: str
id: str
class DiscordManager:
added_locks: List[GitLock]
removed_locks: List[GitLock]
def __init__(
self,
added_locks: List[GitLock],
removed_locks: List[GitLock],
):
self.added_locks = added_locks
self.removed_locks = removed_locks
def publish(self) -> None:
webhook = DiscordWebhook(url=WEBHOOK_URL)
embed = DiscordEmbed()
embed.set_color("ffff00" if self.added_locks else "00ff00")
self.create_added_fields(embed)
self.create_removed_fields(embed)
webhook.add_embed(embed)
webhook.execute()
def create_added_fields(self, embed: DiscordEmbed) -> None:
self.create_generic_fields(embed=embed, title="Locked:", locks=self.added_locks)
def create_removed_fields(self, embed: DiscordEmbed) -> None:
self.create_generic_fields(embed=embed, title="Unlocked:", locks=self.removed_locks)
@staticmethod
def create_generic_fields(
embed: DiscordEmbed,
title: str,
locks: List[GitLock],
) -> None:
if not locks:
return
embed.add_embed_field(
name=title,
value="\n".join([
f"{lock.file}, by {lock.user}"
for lock in locks
]),
inline=False,
)
class GitLockManager:
repo: Repo
locks: Dict[str, GitLock]
def __init__(self, repo_dir: str = REPO_DIR) -> None:
self.repo = Repo(repo_dir)
self.locks = self.load_locks()
def load_locks(self) -> Dict[str, GitLock]:
raw_locks: str = self.repo.git.lfs("locks")
locks = self._parse_raw_locks(raw_locks)
return locks
def compare_lock_set(self, new_locks: Dict[str, GitLock]) -> Tuple[Set[str], Set[str]]:
old_lock_ids = self.locks.keys()
new_lock_ids = new_locks.keys()
removed_locks = old_lock_ids - new_lock_ids
added_locks = new_lock_ids - old_lock_ids
return removed_locks, added_locks
def check_locks(self):
new_locks = self.load_locks()
removed_locks, added_locks = self.compare_lock_set(new_locks)
if removed_locks or added_locks:
print("Publishing changes")
discord_manager = DiscordManager(
added_locks=[
new_locks[added_lock_id]
for added_lock_id in added_locks
],
removed_locks=[
self.locks[removed_lock_id]
for removed_lock_id in removed_locks
],
)
discord_manager.publish()
print("Published changes")
else:
print("No changes")
self.locks = new_locks
@staticmethod
def _parse_raw_locks(raw_locks: str) -> Dict[str, GitLock]:
locks: Dict[str, GitLock] = {}
for lock_line in raw_locks.splitlines():
file, user, id = lock_line.split("\t")
lock = GitLock(
file=file.strip(),
user=user.strip(),
id=id.strip(),
)
locks[lock.id] = lock
return locks
if __name__ == "__main__":
import time
print("Loading repo")
glm = GitLockManager()
print("Repo loaded")
retry_time = 1 * 60
run = True
while run:
try:
glm.check_locks()
time.sleep(retry_time)
except KeyboardInterrupt:
print("Stopping")
run = False
print("Stopped, bye bye!")