aboutsummaryrefslogtreecommitdiff
path: root/templates/shared/administration/manage_storage_buckets_bucket.html
blob: 0c6f9268c40749c5add0a5769d9ca1d9476cabee (plain)
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
{% extends 'shared/core/base.html' %}
{% load static %}
{% block head %}
<link rel="stylesheet" href="{% static 'css/shared/directory.css' %}">
{% endblock head %}
{% block content %}
<h2 style="margin: 8px 0;">Viewing Bucket: {{ bucket_name }}/{{ object_path }}</h2>
<hr>
<div class="bucket-navigation">
    <button class="bucket-navigation-button" onclick="showCreateFolderForm()">Create Folder</button>
    <button class="bucket-navigation-button" onclick="showUploadFileForm()">Upload File</button>
</div>
<div class="directory-viewer">
    <div class="directory-content">
        {% if up_url %}
        <div class="folder-item" data-path="{{ up_url }}">
        {% else %}
        <div class="folder-item" data-path="{% url "administration:manage_storage_buckets" %}">
        {% endif %}
            <div class="folder-icon">
                <img src="{% static 'images/core/icons/folder.png' %}" alt="Folder">
                <div class="selection-overlay"></div>
            </div>
            <div class="folder-name">..</div>
        </div>
        {% for object in objects %}
        {% if object.type == "file" and object.file_type != object.name %}
        <div class="folder-item" data-path="https://cdn.rize.moe/{{ bucket_name }}/{{ object.path }}">
        {% else %}
        <div class="folder-item" data-path="{% url "administration:view_object_path" bucket_name=bucket_name object_path=object.path %}">
        {% endif %}
            <div class="folder-icon">
                {% if object.type == "file" and object.file_type != object.name %}
                {% if object.file_type == "mp3" %}
                <img src="{% static 'images/core/icons/music.png' %}" alt="Music">
                {% elif object.file_type == "jpg" or object.file_type == "png" %}
                <img src="https://cdn.rize.moe/{{ bucket_name }}/{{ object.path }}" alt="Image" style="width: 64px; height: auto;">
                {% else %}
                <img src="{% static 'images/core/icons/file.png' %}" alt="File">
                {% endif %}
                {% else %}
                <img src="{% static 'images/core/icons/folder.png' %}" alt="Folder">
                {% endif %}
                <div class="selection-overlay"></div>
            </div>
            <div class="folder-name">{{ object.name }}</div>
        </div>
        {% endfor %}
    </div>
</div>
{% endblock content %}
{% block scripts %}
<script src="{% static 'js/shared/directory.js' %}"></script>
<script>
    // Windows 98 style modals for file upload and folder creation
    function createWindows98Modal(title, content, buttons) {
        // Create modal container
        const modal = document.createElement('div');
        modal.className = 'windows98-modal';
        modal.innerHTML = `
            <div class="modal-titlebar">
                <span class="modal-title">${title}</span>
                <button class="modal-close">&times;</button>
            </div>
            <div class="modal-content">
                ${content}
            </div>
            <div class="modal-buttons">
                ${buttons.map(btn => `<button class="${btn.class}">${btn.text}</button>`).join('')}
            </div>
        `;

        // Close button functionality
        const closeBtn = modal.querySelector('.modal-close');
        closeBtn.addEventListener('click', () => {
            document.body.removeChild(modal);
        });

        // Add to body
        document.body.appendChild(modal);

        return modal;
    }

    function showCreateFolderForm() {
        const content = `
            <div class="folder-creation-form">
                <label for="folder-name">Folder Name:</label>
                <input type="text" id="folder-name" name="folder_path" required>
            </div>
        `;

        const modal = createWindows98Modal('Create Folder', content, [
            { 
                text: 'OK', 
                class: 'btn-ok' 
            },
            { 
                text: 'Cancel', 
                class: 'btn-cancel' 
            }
        ]);

        const okBtn = modal.querySelector('.btn-ok');
        const cancelBtn = modal.querySelector('.btn-cancel');
        const folderNameInput = modal.querySelector('#folder-name');

        okBtn.addEventListener('click', () => {
            const folderName = folderNameInput.value.trim();
            
            if (!folderName) {
                alert('Please enter a folder name');
                return;
            }

            // AJAX call to create folder
            fetch('{% url "administration:manage_storage_bucket_create_folder" %}', {
                method: 'POST',
                headers: {
                    'Content-Type': 'application/x-www-form-urlencoded',
                    'X-CSRFToken': getCookie('csrftoken')
                },
                body: new URLSearchParams({
                    'bucket': '{{ bucket_name }}',
                    'folder_path': '{{ object_path }}' + folderName
                })
            })
            .then(response => {
                console.log('Response status:', response.status);
                return response.json();
            })
            .then(data => {
                console.log('Response data:', data);
                if (data.status === 'success') {
                    location.reload();
                } else {
                    alert(data.message);
                }
            })
            .catch(error => {
                console.error('Full error:', error);
                alert('An error occurred while creating the folder');
            });

            document.body.removeChild(modal);
        });

        cancelBtn.addEventListener('click', () => {
            document.body.removeChild(modal);
        });
    }

    function showUploadFileForm() {
        const content = `
            <div class="file-upload-form">
                <label for="file-upload">Select File:</label>
                <input type="file" id="file-upload" name="file" required>
                <div class="upload-progress" style="display:none;">
                    <div class="progress-bar"></div>
                    <span class="progress-text">0%</span>
                </div>
            </div>
        `;

        const modal = createWindows98Modal('Upload File', content, [
            { 
                text: 'OK', 
                class: 'btn-ok' 
            },
            { 
                text: 'Cancel', 
                class: 'btn-cancel' 
            }
        ]);

        const okBtn = modal.querySelector('.btn-ok');
        const cancelBtn = modal.querySelector('.btn-cancel');
        const fileInput = modal.querySelector('#file-upload');
        const progressContainer = modal.querySelector('.upload-progress');
        const progressBar = modal.querySelector('.progress-bar');
        const progressText = modal.querySelector('.progress-text');

        okBtn.addEventListener('click', () => {
            const file = fileInput.files[0];
            
            if (!file) {
                alert('Please select a file');
                return;
            }

            // Create FormData for file upload
            const formData = new FormData();
            formData.append('file', file);
            formData.append('bucket', '{{ bucket_name }}');
            formData.append('current_path', '{{ object_path }}');

            // Show progress bar
            progressContainer.style.display = 'block';
            okBtn.disabled = true;

            // AJAX upload with progress
            const xhr = new XMLHttpRequest();
            xhr.open('POST', '{% url "administration:manage_storage_bucket_upload_file" %}', true);
            xhr.setRequestHeader('X-CSRFToken', getCookie('csrftoken'));

            xhr.upload.onprogress = (e) => {
                if (e.lengthComputable) {
                    const percentComplete = Math.round((e.loaded / e.total) * 100);
                    progressBar.style.width = `${percentComplete}%`;
                    progressText.textContent = `${percentComplete}%`;
                }
            };

            xhr.onload = () => {
                const response = JSON.parse(xhr.responseText);
                
                if (xhr.status === 200) {
                    // Success - reload page or update directory view
                    location.reload();
                } else {
                    alert(response.message || 'Upload failed');
                    progressContainer.style.display = 'none';
                    okBtn.disabled = false;
                }
            };

            xhr.onerror = () => {
                alert('Upload failed');
                progressContainer.style.display = 'none';
                okBtn.disabled = false;
            };

            xhr.send(formData);
        });

        cancelBtn.addEventListener('click', () => {
            document.body.removeChild(modal);
        });
    }

    // Utility function to get CSRF token
    function getCookie(name) {
        let cookieValue = null;
        if (document.cookie && document.cookie !== '') {
            const cookies = document.cookie.split(';');
            for (let i = 0; i < cookies.length; i++) {
                const cookie = cookies[i].trim();
                if (cookie.substring(0, name.length + 1) === (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
</script>
{% endblock scripts %}