File size: 15,921 Bytes
ca1d775
 
 
 
8a3568a
ca1d775
 
 
 
 
41a6f7c
 
 
 
 
 
 
 
8a3568a
 
 
 
 
 
 
 
ca1d775
9f613f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8a3568a
 
9f613f2
 
 
ca1d775
9f613f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2f6a202
 
 
 
 
 
 
 
 
9f613f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c5a8b0c
 
 
 
 
 
 
9f613f2
 
 
483d941
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41a6f7c
8a3568a
41a6f7c
 
8a3568a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca1d775
9f613f2
 
ca1d775
 
9f613f2
 
 
ca1d775
 
abf04cf
 
 
 
 
 
 
 
41a6f7c
abf04cf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41a6f7c
8a3568a
 
abf04cf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2f6a202
8a3568a
abf04cf
 
 
 
6fe2453
6fb9093
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2f6a202
8a3568a
6fb9093
 
 
 
ca1d775
 
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
import gradio as gr
from github import Github, GithubException
import os
import requests
import re

# Załaduj token z pliku .env lub ustaw bezpośrednio
GITHUB_TOKEN = os.getenv('GITHUB_TOKEN')
g = Github(GITHUB_TOKEN)

def get_file_content(owner, repo_name, path, branch="main"):
    url = f"https://raw.githubusercontent.com/{owner}/{repo_name}/{branch}/{path}"
    response = requests.get(url)
    if response.status_code == 200:
        return response.text
    else:
        return f"Błąd pobierania pliku: {response.status_code}"

def extract_repo_info(url):
    """Wyodrębnia nazwę użytkownika i repozytorium z linku GitHub."""
    match = re.search(r"github\.com/([^/]+)/([^/]+)", url)
    if match:
        return match.group(1), match.group(2)
    else:
        return None, None


def github_tool(
    action: str,
    repo_name: str = None,
    branch: str = "main",  # domyślna gałąź
    path: str = None,
    content: str = None,
    message: str = None,
    owner: str = None,
    vcs_url: str = None,
    title: str = None,
    body: str = None,
    base: str = None,
    head: str = None,
    issue_number: int = None,
    labels: str = None,  # etykiety oddzielone przecinkami
    tag: str = None,
    name: str = None,  # nazwa release
    file_url: str = None, # URL pliku do pobrania,
    repo_url: str = None,  # Link do repozytorium
):
    """Narzędzie do zarządzania repozytoriami GitHub."""
    user = g.get_user()
    try:
        if action == "import_repository":
            if not all([owner, repo_name, vcs_url]):
                raise ValueError(
                    "Brakujące parametry: owner, repo_name, vcs_url")

            # Sprawdź, czy repozytorium już istnieje
            try:
                repo = user.get_repo(repo_name)
                return "Repozytorium o tej nazwie już istnieje."
            except GithubException:
                pass

            headers = {
                'Authorization': f'token {GITHUB_TOKEN}',
                'Accept': 'application/vnd.github.v3+json',
            }
            import_url = f'https://api.github.com/repos/{owner}/{repo_name}/import'
            payload = {'vcs_url': vcs_url, 'vcs': 'git'}
            response = requests.put(import_url, json=payload, headers=headers)
            if response.status_code == 201:
                return "Import repozytorium został rozpoczęty."
            else:
                return f"Błąd importu: {response.status_code}, {response.json()}"

        elif action == "create_repository":
            if not repo_name:
                raise ValueError("Brakujący parametr: repo_name")
            repo = user.create_repo(name=repo_name)
            return f"Repozytorium {repo_name} utworzone: {repo.html_url}"

        elif action == "create_file":
            if not all([repo_name, path, content, message]):
                raise ValueError(
                    "Brakujące parametry: repo_name, path, content, message")
            repo = user.get_repo(repo_name)
            repo.create_file(path, message, content, branch=branch)
            return f"Plik {path} utworzony w {repo_name} na gałęzi {branch}"

        elif action == "get_file":
            if not all([repo_name, path]):
                raise ValueError("Brakujące parametry: repo_name, path")
            repo = user.get_repo(repo_name)
            file_content = repo.get_contents(path, ref=branch)
            return file_content.decoded_content.decode()  # Zdekoduj zawartość pliku i zwróć jako string

        elif action == "get_file_content_by_url":
            if not file_url:
                raise ValueError("Brakujący parametr: file_url")
            response = requests.get(file_url)
            response.raise_for_status() # Sprawdź czy nie ma błędu HTTP
            return response.text

        elif action == "delete_file":
            if not all([repo_name, path]):
                raise ValueError("Brakujące parametry: repo_name, path")
            repo = user.get_repo(repo_name)
            file_contents = repo.get_contents(path, ref=branch)
            repo.delete_file(path, "Usunięcie pliku",
                             file_contents.sha, branch=branch)
            return f"Plik {path} usunięty z {repo_name} na gałęzi {branch}"

        elif action == "update_file":
            if not all([repo_name, path, content, message]):
                raise ValueError(
                    "Brakujące parametry: repo_name, path, content, message")
            repo = user.get_repo(repo_name)
            file_contents = repo.get_contents(path, ref=branch)
            repo.update_file(path, message, content,
                             file_contents.sha, branch=branch)
            return f"Plik {path} zaktualizowany w {repo_name} na gałęzi {branch}"

        elif action == "list_branches":
            if not repo_name:
                raise ValueError("Brakujący parametr: repo_name")
            repo = user.get_repo(repo_name)
            branches = repo.get_branches()
            return [branch.name for branch in branches]

        elif action == "create_branch":
            if not all([repo_name, base, head]):  # base jako źródło, head jako nowa nazwa
                raise ValueError("Brakujące parametry: repo_name, base, head")
            repo = user.get_repo(repo_name)
            source_branch = repo.get_branch(base)
            repo.create_git_ref(ref=f"refs/heads/{head}",
                                 sha=source_branch.commit.sha)
            return f"Gałąź {head} utworzona z {base} w {repo_name}"

        elif action == "delete_branch":
            if not all([repo_name, branch]):
                raise ValueError("Brakujące parametry: repo_name, branch")
            repo = user.get_repo(repo_name)
            repo.get_git_ref(f"heads/{branch}").delete()
            return f"Gałąź {branch} usunięta z {repo_name}"

        elif action == "create_pull_request":
            if not all([repo_name, title, body, base, head]):
                raise ValueError(
                    "Brakujące parametry: repo_name, title, body, base, head")
            repo = user.get_repo(repo_name)
            pr = repo.create_pull(title=title, body=body, base=base, head=head)
            return f"Pull request utworzony: {pr.html_url}"

        elif action == "list_open_pull_requests":
            if not repo_name:
                raise ValueError("Brakujący parametr: repo_name")
            repo = user.get_repo(repo_name)
            open_prs = repo.get_pulls(state='open')
            return [{'title': pr.title, 'url': pr.html_url} for pr in open_prs]

        elif action == "create_issue":
            if not all([repo_name, title, body]):
                raise ValueError("Brakujące parametry: repo_name, title, body")
            repo = user.get_repo(repo_name)
            issue = repo.create_issue(title=title, body=body)
            return f"Issue utworzone: {issue.html_url}"

        elif action == "list_issues":
            if not repo_name:
                raise ValueError("Brakujący parametr: repo_name")
            repo = user.get_repo(repo_name)
            issues = repo.get_issues(state='open')
            return [{'title': issue.title, 'url': issue.html_url} for issue in issues]

        elif action == "add_label_to_issue":
            if not all([repo_name, issue_number, labels]):
                raise ValueError(
                    "Brakujące parametry: repo_name, issue_number, labels")
            repo = user.get_repo(repo_name)
            issue = repo.get_issue(number=int(issue_number))
            for label in labels.split(","):
                issue.add_to_labels(label.strip())
            return f"Etykiety dodane do issue #{issue_number} w {repo_name}"

        elif action == "close_issue":
            if not all([repo_name, issue_number]):
                raise ValueError("Brakujące parametry: repo_name, issue_number")
            repo = user.get_repo(repo_name)
            issue = repo.get_issue(number=int(issue_number))
            issue.edit(state='closed')
            return f"Issue #{issue_number} zamknięte w {repo_name}"

        elif action == "add_comment_to_issue":
            if not all([repo_name, issue_number, message]):  # message jako treść komentarza
                raise ValueError(
                    "Brakujące parametry: repo_name, issue_number, message")
            repo = user.get_repo(repo_name)
            issue = repo.get_issue(number=int(issue_number))
            issue.create_comment(body=message)
            return f"Komentarz dodany do issue #{issue_number} w {repo_name}"

        elif action == "create_release":
            if not all([repo_name, tag, name, message]):
                raise ValueError(
                    "Brakujące parametry: repo_name, tag, name, message")
            repo = user.get_repo(repo_name)
            release = repo.create_git_release(
                tag=tag, name=name, message=message)
            return f"Release {name} utworzone w {repo_name}: {release.html_url}"

        elif action == "list_releases":
            if not repo_name:
                raise ValueError("Brakujący parametr: repo_name")
            repo = user.get_repo(repo_name)
            releases = repo.get_releases()
            return [{'tag_name': release.tag_name, 'url': release.html_url} for release in releases]

        elif action == "fork_repository":
            if not repo_name:
                raise ValueError("Brakujący parametr: repo_name")
            repo = g.get_repo(repo_name)  # Pobierz repozytorium do forkowania
            fork = user.create_fork(repo)
            return f"Fork repozytorium utworzony: {fork.html_url}"

        elif action == "list_forks":
            if not repo_name:
                raise ValueError("Brakujący parametr: repo_name")
            repo = g.get_repo(repo_name)  # Pobierz repo, którego forki chcesz wyświetlić
            forks = repo.get_forks()
            return [{'full_name': fork.full_name, 'url': fork.html_url} for fork in forks]

        elif action == "list_files":
            if not all([owner, repo_name]):
                raise ValueError("Brakujące parametry: owner, repo_name")
            repo = g.get_repo(f"{owner}/{repo_name}")
            
            # Dodaj obsługę pustej ścieżki:
            if not path:
                contents = repo.get_contents("")  # Pobierz zawartość głównego katalogu
            else:
                contents = repo.get_contents(path)

            files = [{'name': content.name, 'path': content.path,
                      'download_url': content.download_url} for content in contents]
            return files
            
        elif action == "get_repository_info":
            if not all([owner, repo_name]):
                raise ValueError("Brakujące parametry: owner, repo_name")
            repo = g.get_repo(f"{owner}/{repo_name}")
            info = {
                "nazwa": repo.name,
                "opis": repo.description,
                "url": repo.html_url,
                "właściciel": repo.owner.login,
                "gałąź domyślna": repo.default_branch,
                "język": repo.language,
                "liczba gwiazdek": repo.stargazers_count,
                "liczba forków": repo.forks_count,
                "utworzone": repo.created_at,
                "ostatnia aktualizacja": repo.updated_at
            }
            return info  # Zwraca słownik z informacjami
            
        elif action == "get_file_content":
            if not all([owner, repo_name, path]):
                raise ValueError("Brakujące parametry: owner, repo_name, path")
            return get_file_content(owner, repo_name, path, branch) 
        
        elif action == "analyze_repository_by_url":
            if not repo_url:
                raise ValueError("Brakujący parametr: repo_url")

            owner, repo_name = extract_repo_info(repo_url)
            if not owner or not repo_name:
                raise ValueError("Nieprawidłowy link do repozytorium")

            try:
                repo = g.get_repo(f"{owner}/{repo_name}")

                # Pobierz listę plików i katalogów
                contents = repo.get_contents("")

                # Iteruj po liście i pobieraj zawartość plików
                file_analyses = []
                for content in contents:
                    if content.type == "file":
                        file_content = content.decoded_content.decode()
                        file_analyses.append({
                            "name": content.name,
                            "path": content.path,
                            "content": file_content,
                            # Możesz dodać tutaj analizę zawartości pliku
                        })
                return file_analyses

            except GithubException as e:
                return f"Błąd GitHub: {str(e)}"

        else:
            raise ValueError(f"Nieznana akcja: {action}")

    except GithubException as e:
        return f"Błąd GitHub: {str(e)}"
    except ValueError as e:
        return f"Błąd: {str(e)}"


with gr.Blocks() as demo:
    with gr.Row():
        action = gr.Dropdown(
            choices=[
                "import_repository",
                "create_repository",
                "create_file",
                "get_file",
                "get_file_content_by_url", 
                "delete_file",
                "update_file",
                "list_branches",
                "create_branch",
                "delete_branch",
                "create_pull_request",
                "list_open_pull_requests",
                "create_issue",
                "list_issues",
                "add_label_to_issue",
                "close_issue",
                "add_comment_to_issue",
                "create_release",
                "list_releases",
                "fork_repository",
                "list_forks",
                "list_files",
                "get_repository_info", 
                "get_file_content",
                "analyze_repository_by_url",
            ],
            label="Akcja",
        )
        repo_name = gr.Textbox(label="Nazwa repozytorium")
        branch = gr.Textbox(label="Gałąź", value="main")
        path = gr.Textbox(label="Ścieżka do pliku")
        content = gr.Textbox(label="Zawartość pliku")
        message = gr.Textbox(label="Wiadomość/Komentarz")
        owner = gr.Textbox(label="Właściciel")
        vcs_url = gr.Textbox(label="URL VCS")
        title = gr.Textbox(label="Tytuł")
        body = gr.Textbox(label="Treść")
        base = gr.Textbox(label="Gałąź bazowa")
        head = gr.Textbox(label="Gałąź docelowa/Nowa gałąź")
        issue_number = gr.Number(label="Numer issue", precision=0)
        labels = gr.Textbox(label="Etykiety (oddzielone przecinkami)")
        tag = gr.Textbox(label="Tag")
        release_name = gr.Textbox(label="Nazwa release")  # Zmieniona nazwa
        file_url = gr.Textbox(label="URL pliku") # Dodane pole
        repo_url = gr.Textbox(label="Link do repozytorium") # Dodane pole
    
    with gr.Row():
        run_button = gr.Button("Wykonaj")
        output = gr.Textbox(label="Wynik")

    run_button.click(
        github_tool,
        inputs=[
            action,
            repo_name,
            branch,
            path,
            content,
            message,
            owner,
            vcs_url,
            title,
            body,
            base,
            head,
            issue_number,
            labels,
            tag,
            release_name,  # Użycie zmienionej nazwy
            file_url, # Dodany argument
            repo_url, # Dodany argument
        ],
        outputs=output,
        api_name="github_tool"
    )

demo.launch()