File size: 4,271 Bytes
2e43cec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import os
import fnmatch
import streamlit as st
import sys
import base64

# Function definitions remain the same
def get_ignore_list(ignore_file_path):
    ignore_list = []
    with open(ignore_file_path, 'r') as ignore_file:
        for line in ignore_file:
            if sys.platform == "win32":
                line = line.replace("/", "\\")
            ignore_list.append(line.strip())
    return ignore_list

def should_ignore(file_path, ignore_list):
    for pattern in ignore_list:
        if fnmatch.fnmatch(file_path, pattern):
            return True
    return False

def process_repository(repo_path, ignore_list):
    structure = "Project Directory Structure:\n"
    contents = ""
    for root, dirs, files in os.walk(repo_path):
        level = root.replace(repo_path, '').count(os.sep)
        indent = '  ' * level
        subindent = '  ' * (level + 1)
        relative_root = os.path.relpath(root, repo_path)
        if not should_ignore(relative_root, ignore_list):
            structure += '{}- {}\n'.format(indent, os.path.basename(root))
            for file in files:
                relative_file_path = os.path.relpath(os.path.join(root, file), repo_path)
                if not should_ignore(relative_file_path, ignore_list):
                    structure += '{}- {}\n'.format(subindent, file)
                    file_path = os.path.join(root, file)
                    with open(file_path, 'r', errors='ignore') as file:
                        file_contents = file.read()
                    contents += "-" * 4 + "\n"
                    contents += f"{relative_file_path}\n"
                    contents += f"{file_contents}\n"
    structure += "End Project Directory Structure Visual\n\n"
    return structure, contents

def download_button(object_to_download, download_filename, button_text):
    if isinstance(object_to_download, bytes):
        pass
    elif isinstance(object_to_download, str):
        object_to_download = object_to_download.encode('utf-8')
    else:
        raise ValueError(f"object_to_download must be a str or bytes, got {type(object_to_download)}")

    try:
        b64 = base64.b64encode(object_to_download).decode()
        href = f'<a href="data:file/txt;base64,{b64}" download="{download_filename}" class="btn btn-primary" role="button">{button_text}</a>'
        st.markdown(href, unsafe_allow_html=True)
    except Exception as e:
        st.error(f"An error occurred while creating the download link: {e}")

# Updated Streamlit UI to include new features
st.title("Git Repository Loader with Web UI")

# Organizing input and buttons using columns
col1, col2, col3 = st.columns([3, 2, 2])
with col1:
    repo_path = st.text_input("Enter the path to your Git repository:", "")
with col2:
    process_button = st.button("Process Repository")
with col3:
    copy_button = st.button("Copy to Clipboard")

if process_button:
    with st.spinner('Processing the repository...'):
        ignore_file_path = os.path.join(repo_path, ".gptignore")
        if sys.platform == "win32":
            ignore_file_path = ignore_file_path.replace("/", "\\")

        if not os.path.exists(ignore_file_path):
            HERE = os.path.dirname(os.path.abspath(__file__))
            ignore_file_path = os.path.join(HERE, ".gptignore")

        if os.path.exists(ignore_file_path):
            ignore_list = get_ignore_list(ignore_file_path)
        else:
            ignore_list = []

        structure, contents = process_repository(repo_path, ignore_list)
        full_output = f"### Project Directory Structure\n{structure}\n### Files Content\n{contents}"

        st.markdown("### Output")
        download_button(full_output, "repository_output.md", "Download Output as Markdown")

        with st.expander("View Project Directory Structure"):
            st.text(structure)
        with st.expander("View Files Content"):
            st.text(contents)

        if copy_button:
            st.experimental_set_query_params(full_output=full_output)
            js = f"navigator.clipboard.writeText(`{full_output}`)"
            st.components.v1.html(f"<script>{js}</script>", height=0, width=0)
            st.sidebar.success("Copied to clipboard!")

        st.success("Process completed. Review the results above.")