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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
from __future__ import annotations
from dataclasses import dataclass
from datetime import UTC, datetime, timedelta
import logging
from typing import Any
from srht_contrib.config import Settings
from srht_contrib.schemas import NormalizedEvent
from srht_contrib.services.srht_client import SourceHutGraphQLClient
from srht_contrib.utils.dates import ensure_utc, parse_datetime
from srht_contrib.utils.identity import ActorIdentityResolver
logger = logging.getLogger(__name__)
REPOSITORY_LOG_QUERY = """
query RepositoryLog($username: String!, $repoName: String!, $cursor: Cursor) {
user(username: $username) {
repository(name: $repoName) {
name
owner {
canonicalName
}
log(cursor: $cursor) {
results {
id
shortId
author {
name
email
time
}
committer {
name
email
time
}
message
}
cursor
}
}
}
}
""".strip()
@dataclass(slots=True)
class GitPollResult:
events: list[NormalizedEvent]
cursor: str
class GitIngestionService:
"""Polls tracked git.sr.ht repositories and normalizes commits for one actor."""
service_name = "git"
def __init__(self, client: SourceHutGraphQLClient, settings: Settings) -> None:
self.client = client
self.settings = settings
self.identity_resolver = ActorIdentityResolver(settings.actor_aliases_json)
def fetch_recent_events(
self,
actor: str,
since: datetime | None = None,
repositories: list[str] | None = None,
) -> GitPollResult:
since_dt = ensure_utc(since or (datetime.now(tz=UTC) - timedelta(days=30)))
tracked_repositories = repositories or self._tracked_repositories(actor)
if not tracked_repositories:
logger.info("git poll skipped for actor=%s because no tracked repositories are configured", actor)
return GitPollResult(events=[], cursor=datetime.now(tz=UTC).isoformat())
events: list[NormalizedEvent] = []
for repository in tracked_repositories:
owner, repo_name = self._split_repository(actor, repository)
repo_events = self._fetch_repository_commits(actor=actor, owner=owner, repo_name=repo_name, since=since_dt)
events.extend(repo_events)
logger.info("git poll complete for actor=%s normalized_events=%s", actor, len(events))
return GitPollResult(events=events, cursor=datetime.now(tz=UTC).isoformat())
def _tracked_repositories(self, actor: str) -> list[str]:
repositories = self.settings.git_tracked_repositories
return repositories
@staticmethod
def _split_repository(default_actor: str, repository: str) -> tuple[str, str]:
if "/" in repository:
owner, repo_name = repository.split("/", 1)
canonical_owner = owner if owner.startswith("~") else f"~{owner}"
return canonical_owner.lstrip("~"), repo_name
return default_actor.lstrip("~"), repository
def _fetch_repository_commits(
self,
*,
actor: str,
owner: str,
repo_name: str,
since: datetime,
) -> list[NormalizedEvent]:
events: list[NormalizedEvent] = []
cursor: str | None = None
for _ in range(50):
data = self.client.execute(
REPOSITORY_LOG_QUERY,
{"username": owner, "repoName": repo_name, "cursor": cursor},
)
user = data.get("user") or {}
repository = user.get("repository") or {}
log_page = repository.get("log") or {}
commits = log_page.get("results") or []
cursor = log_page.get("cursor")
logger.info(
"git repository=%s/%s commit page count=%s next_cursor=%s",
owner,
repo_name,
len(commits),
bool(cursor),
)
stop_paging = False
for commit in commits:
if not isinstance(commit, dict):
continue
commit_time = parse_datetime((commit.get("author") or {}).get("time"))
if commit_time < since:
stop_paging = True
logger.info(
"git commit %s skipped because commit_time=%s is before since=%s",
commit.get("shortId") or commit.get("id"),
commit_time.isoformat(),
since.isoformat(),
)
continue
normalized = self._normalize_commit(actor=actor, repo_name=repo_name, commit=commit)
if normalized is not None:
logger.info(
"git commit accepted repo=%s shortId=%s author=%s email=%s",
repo_name,
commit.get("shortId"),
(commit.get("author") or {}).get("name"),
(commit.get("author") or {}).get("email"),
)
events.append(normalized)
else:
logger.info(
"git commit skipped repo=%s shortId=%s author=%s email=%s",
repo_name,
commit.get("shortId"),
(commit.get("author") or {}).get("name"),
(commit.get("author") or {}).get("email"),
)
if stop_paging or not cursor:
break
return events
def _normalize_commit(
self,
*,
actor: str,
repo_name: str,
commit: dict[str, Any],
) -> NormalizedEvent | None:
author = commit.get("author") or {}
candidate_aliases = [
actor,
author.get("email", ""),
author.get("name", ""),
]
matched_actor = None
for candidate in candidate_aliases:
canonical = self.identity_resolver.canonicalize(candidate)
if canonical == actor:
matched_actor = canonical
break
if matched_actor is None:
return None
commit_id = str(commit["id"])
commit_time = parse_datetime(author["time"])
return NormalizedEvent(
service=self.service_name,
event_type="commit",
actor=matched_actor,
repo_name=repo_name,
resource_id=commit_id,
external_uid=f"git:{repo_name}:{commit_id}",
occurred_at=commit_time,
weight=self.settings.event_weights["commit"],
raw_payload_json=commit,
)
|