-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitops.py
More file actions
405 lines (334 loc) · 14.9 KB
/
gitops.py
File metadata and controls
405 lines (334 loc) · 14.9 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#!/usr/bin/env python3
"""Git operations for the MCP file server."""
import subprocess
import shutil
from pathlib import Path
from typing import Optional, Dict, Any, List
import logging
logger = logging.getLogger(__name__)
class GitOps:
"""Wrapper for git operations within a working directory."""
def __init__(self, work_dir: Path):
self.work_dir = work_dir.resolve()
git_path = shutil.which("git")
if not git_path:
raise RuntimeError("Git is not installed or not in PATH")
self._git_executable = git_path
self._ensure_git_repo()
def _run_git(self, args: List[str], check: bool = True) -> subprocess.CompletedProcess:
"""Run a git command in the working directory."""
cmd = [self._git_executable] + args
try:
result = subprocess.run(
cmd,
cwd=self.work_dir,
capture_output=True,
text=True,
check=False
)
if check and result.returncode != 0:
logger.error(f"Git command failed: {' '.join(cmd)}")
logger.error(f"stderr: {result.stderr}")
return result
except FileNotFoundError:
raise RuntimeError("Git is not installed or not in PATH")
except Exception as e:
logger.error(f"Error running git command: {e}")
raise
def _ensure_git_repo(self) -> bool:
"""Check if the working directory is a git repository."""
result = self._run_git(["rev-parse", "--git-dir"], check=False)
if result.returncode != 0:
logger.warning(f"Directory {self.work_dir} is not a git repository")
return False
return True
def is_repo(self) -> bool:
"""Return whether the working directory is a git repository."""
return self._run_git(["rev-parse", "--git-dir"], check=False).returncode == 0
def get_status(self, short: bool = True) -> Dict[str, Any]:
"""Get git status."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["status"]
if short:
args.append("--short")
result = self._run_git(args)
return {
"is_repo": True,
"status": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def get_log(self, max_count: int = 20, oneline: bool = True) -> Dict[str, Any]:
"""Get git commit log."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["log"]
if oneline:
args.append("--oneline")
args.extend(["-n", str(max_count)])
result = self._run_git(args)
return {
"is_repo": True,
"commits": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def get_current_branch(self) -> Dict[str, Any]:
"""Get the current branch name."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False, "branch": None}
result = self._run_git(["rev-parse", "--abbrev-ref", "HEAD"])
branch = result.stdout.strip() if result.stdout else None
return {
"is_repo": True,
"branch": branch,
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def checkout_branch(self, branch: str) -> Dict[str, Any]:
"""Checkout a branch."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
result = self._run_git(["checkout", branch])
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def create_branch(self, branch: str, start_point: Optional[str] = None) -> Dict[str, Any]:
"""Create a new branch."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["branch", branch]
if start_point:
args.append(start_point)
result = self._run_git(args)
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def delete_branch(self, branch: str, force: bool = False) -> Dict[str, Any]:
"""Delete a branch."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["branch", "-d" if not force else "-D", branch]
result = self._run_git(args)
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def get_branches(self, all: bool = False) -> Dict[str, Any]:
"""List branches."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["branch"]
if all:
args.append("-a")
result = self._run_git(args)
branches = []
for line in result.stdout.strip().split("\n"):
if line:
# Remove current branch marker (*)
branch = line.strip().lstrip("* ").lstrip()
branches.append(branch)
return {
"is_repo": True,
"branches": branches,
"current_branch": self.get_current_branch()["branch"],
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def add_files(self, paths: List[str]) -> Dict[str, Any]:
"""Add files to staging area."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
if not paths:
return {"error": "No files specified", "is_repo": True, "success": False}
result = self._run_git(["add"] + paths)
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def commit(self, message: str, all: bool = False) -> Dict[str, Any]:
"""Create a commit."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["commit", "-m", message]
if all:
args.append("-a")
result = self._run_git(args)
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def push(self, remote: str = "origin", branch: Optional[str] = None) -> Dict[str, Any]:
"""Push to remote repository."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
if branch is None:
branch_result = self.get_current_branch()
branch = branch_result.get("branch")
if not branch:
return {"error": "Could not determine current branch", "is_repo": True, "success": False}
result = self._run_git(["push", remote, branch])
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def pull(self, remote: str = "origin", branch: Optional[str] = None) -> Dict[str, Any]:
"""Pull from remote repository."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
if branch is None:
branch_result = self.get_current_branch()
branch = branch_result.get("branch")
if not branch:
return {"error": "Could not determine current branch", "is_repo": True, "success": False}
result = self._run_git(["pull", remote, branch])
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def diff(self, path: Optional[str] = None) -> Dict[str, Any]:
"""Show changes."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["diff"]
if path:
args.append(path)
result = self._run_git(args)
return {
"is_repo": True,
"diff": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def show_file(self, path: str, ref: Optional[str] = None) -> Dict[str, Any]:
"""Show file contents at a specific reference."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["show"]
if ref:
args.append(f"{ref}:{path}")
else:
args.append(path)
result = self._run_git(args)
return {
"is_repo": True,
"content": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def clone_repo(self, url: str, path: str, branch: Optional[str] = None, recursive: bool = False) -> Dict[str, Any]:
"""Clone a repository into a new directory."""
# Build clone command
args = ["clone"]
if branch:
args.extend(["--branch", branch])
if recursive:
args.append("--recursive")
args.extend([url, str(path)])
result = self._run_git(args)
# The clone command runs in the working directory context
# so path is relative to self.work_dir
full_path = self.work_dir / path
return {
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode,
"cloned_path": str(full_path),
"is_repo": result.returncode == 0 and (full_path / ".git").exists()
}
def submodule_add(self, url: str, path: str, name: Optional[str] = None) -> Dict[str, Any]:
"""Add a submodule to the repository."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["submodule", "add"]
if name:
args.extend(["--name", name])
args.extend([url, path])
result = self._run_git(args)
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def submodule_update(self, init: bool = True, recursive: bool = True) -> Dict[str, Any]:
"""Update existing submodules."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["submodule", "update"]
if init:
args.append("--init")
if recursive:
args.append("--recursive")
result = self._run_git(args)
return {
"is_repo": True,
"success": result.returncode == 0,
"message": result.stdout.strip() if result.stdout else "",
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}
def submodule_list(self, summary: bool = True) -> Dict[str, Any]:
"""List all submodules in the repository."""
if not self.is_repo():
return {"error": "Not a git repository", "is_repo": False}
args = ["submodule", "status"]
if not summary:
args.append("--recursive")
result = self._run_git(args)
submodules = []
for line in result.stdout.strip().split("\n"):
if line:
# Parse submodule status output
# Format: <status><sha1> <path>(<branch>) <message>
parts = line.split(None, 3)
if len(parts) >= 2:
status_char = parts[0][0] if parts[0] else " "
sha1 = parts[0][1:] if len(parts[0]) > 1 else ""
submodule_path = parts[1] if len(parts) > 1 else ""
submodule_name = parts[2] if len(parts) > 2 else ""
status_map = {
" ": "uninitialized",
"-": "not cloned",
"+": "modified",
"U": "updated"
}
submodules.append({
"status": status_map.get(status_char, "unknown"),
"sha1": sha1,
"path": submodule_path,
"name": submodule_name
})
return {
"is_repo": True,
"submodules": submodules,
"count": len(submodules),
"error": result.stderr.strip() if result.stderr and result.returncode != 0 else None,
"returncode": result.returncode
}