mirror of
https://github.com/Xevion/simple-viewer.git
synced 2025-12-07 13:16:38 -06:00
@@ -1,5 +1,5 @@
|
|||||||
import os
|
import os
|
||||||
from typing import Tuple, List
|
from typing import List, Tuple
|
||||||
|
|
||||||
|
|
||||||
def extra_listdir(path: str) -> List[Tuple[str, str]]:
|
def extra_listdir(path: str) -> List[Tuple[str, str]]:
|
||||||
@@ -9,7 +9,14 @@ def extra_listdir(path: str) -> List[Tuple[str, str]]:
|
|||||||
:param path: The path to the directory.
|
:param path: The path to the directory.
|
||||||
:return: A list of tuples, each containing two strings, the file or directory name, and the media type.
|
:return: A list of tuples, each containing two strings, the file or directory name, and the media type.
|
||||||
"""
|
"""
|
||||||
return [(file, get_all_mediatype(file, path)) for file in os.listdir(path)]
|
files = []
|
||||||
|
for file in os.listdir(path):
|
||||||
|
mediatype = get_all_mediatype(file, path)
|
||||||
|
if mediatype == 'folder':
|
||||||
|
files.append((file, mediatype, os.path.join(path, file)))
|
||||||
|
else:
|
||||||
|
files.append((file, mediatype))
|
||||||
|
return files
|
||||||
|
|
||||||
|
|
||||||
def get_all_mediatype(head: str, tail: str) -> str:
|
def get_all_mediatype(head: str, tail: str) -> str:
|
||||||
|
|||||||
64
viewer/templates/add.html
Normal file
64
viewer/templates/add.html
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{% extends 'base.html' %}
|
||||||
|
{% block content %}
|
||||||
|
<div class="card">
|
||||||
|
<header class="card-header">
|
||||||
|
<p class="card-header-title">
|
||||||
|
Add New Directory
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<div class="card-content">
|
||||||
|
<div class="content">
|
||||||
|
<p>
|
||||||
|
Adds a new Directory to be served by the server.
|
||||||
|
<br>
|
||||||
|
If specified, a <a href="https://en.wikipedia.org/wiki/Regular_expression#Syntax">RegEx pattern</a> can be used to filter files and will only display the ones you want.
|
||||||
|
<br>
|
||||||
|
RegEx patterns can be configured below to match against the entire path or just the filename.
|
||||||
|
<br>
|
||||||
|
Additionally, files can be matched <i>recursively</i> if you so wish. Please note that this functionality may create anomalous behavior around duplicate files.
|
||||||
|
</p>
|
||||||
|
<form action="{% url 'add_submit' %}" method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
<div class="field">
|
||||||
|
<label class="label">Directory</label>
|
||||||
|
<div class="control has-icons-left has-icons-right">
|
||||||
|
<input class="input" type="text" name="path" required placeholder="Full Path" {% if path_prefill %}value="{{ path_prefill }}"{% endif %}>
|
||||||
|
<span class="icon is-small is-left">
|
||||||
|
<i class="fas fa-folder-open"></i>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<p class="help">
|
||||||
|
We recommend that you use a full path. Do not escape the path or use a relative path for best results.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="field">
|
||||||
|
<label class="label">Filter Files</label>
|
||||||
|
<div class="control has-icons-left has-icons-right">
|
||||||
|
<input class="input" type="text" name="regex" placeholder="RegEx Pattern">
|
||||||
|
<span class="icon is-small is-left">
|
||||||
|
<i class="fas fa-search"></i>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<p class="help">
|
||||||
|
This is optional. Do not enter anything if you wish to disable RegEx matching and simply add all files.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<label class="checkbox pt-1 pb-3 pr-3">
|
||||||
|
<input type="checkbox" name="match_filename">
|
||||||
|
Match Against Filename?
|
||||||
|
</label>
|
||||||
|
<label class="checkbox pt-1 pb-3 pr-3">
|
||||||
|
<input type="checkbox" name="recursive">
|
||||||
|
Recursively Match
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<div class="field">
|
||||||
|
<div class="control">
|
||||||
|
<button class="button is-link">Submit</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock content %}
|
||||||
@@ -20,7 +20,9 @@
|
|||||||
<div class="navbar-end">
|
<div class="navbar-end">
|
||||||
<div class="navbar-item">
|
<div class="navbar-item">
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i class="fas fa-plus"></i>
|
<a href="{% url 'add' %}">
|
||||||
|
<i class="fas fa-plus"></i>
|
||||||
|
</a>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="panel">
|
<div class="panel">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
Files
|
{{ directory.path }}
|
||||||
<span style="font-weight: 400; font-style: italic; font-size: 70%;">
|
<span style="font-weight: 400; font-style: italic; font-size: 70%;">
|
||||||
{{ files|length }}
|
{{ files|length }} files
|
||||||
</span>
|
</span>
|
||||||
<span style="vertical-align: middle;" class="panel-icon">
|
<span style="vertical-align: middle;" class="panel-icon">
|
||||||
<a href="{% url 'index' %}">
|
<a href="{% url 'index' %}">
|
||||||
@@ -17,13 +17,22 @@
|
|||||||
<span class="panel-icon pr-4">
|
<span class="panel-icon pr-4">
|
||||||
<i class="fas fa-{{ file.1 }} fa-lg" aria-hidden="true"></i>
|
<i class="fas fa-{{ file.1 }} fa-lg" aria-hidden="true"></i>
|
||||||
</span>
|
</span>
|
||||||
<a href="{% if file.1 != 'folder' %}{% url 'file' directory.id file.0 %}{% endif %}">
|
{% if file.1 == 'folder' %}
|
||||||
{{ file.0 }}
|
<a href="{% url 'add' %}?path={{ file.2 }}">
|
||||||
</a>
|
{{ file.0 }}
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
<a href="{% url 'file' directory.id file.0 %}">
|
||||||
|
{{ file.0 }}
|
||||||
|
{{ file.0 }}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
|
||||||
|
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
{% load static %}
|
{% load static %}
|
||||||
<script src="{% static "hover.js" %}"></script>
|
<script src="{% static "hover.js" %}"></script>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|||||||
@@ -5,6 +5,12 @@
|
|||||||
.panel-icon {
|
.panel-icon {
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tag:not(body) {
|
||||||
|
font-size: 0.7rem;
|
||||||
|
line-height: 1.3;
|
||||||
|
padding: 0 0.6em;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
{% endblock head %}
|
{% endblock head %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
@@ -17,6 +23,9 @@
|
|||||||
</span>
|
</span>
|
||||||
<a href="{% url 'browse' served_directory.id %}">
|
<a href="{% url 'browse' served_directory.id %}">
|
||||||
{{ served_directory.path }}
|
{{ served_directory.path }}
|
||||||
|
{% if served_directory.regex %}
|
||||||
|
<span class="tag is-info">Filtered</span>
|
||||||
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ from . import views
|
|||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path('', views.index, name='index'),
|
path('', views.index, name='index'),
|
||||||
path('/<uuid:directory_id>/', views.browse, name='browse'),
|
path('add/', views.add, name='add'),
|
||||||
path('/<uuid:directory_id>/<str:file>/', views.file, name='file')
|
path('add/submit', views.submit_new, name='add_submit'),
|
||||||
|
path('<uuid:directory_id>/', views.browse, name='browse'),
|
||||||
|
path('<uuid:directory_id>/<str:file>/', views.file, name='file')
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
from django.http import FileResponse
|
from django.http import FileResponse, HttpResponseRedirect
|
||||||
from django.shortcuts import render, get_object_or_404
|
from django.shortcuts import render, get_object_or_404
|
||||||
|
from django.urls import reverse
|
||||||
|
|
||||||
from viewer.helpers import extra_listdir
|
from viewer.helpers import extra_listdir
|
||||||
from viewer.models import ServedDirectory
|
from viewer.models import ServedDirectory
|
||||||
@@ -54,3 +55,35 @@ def file(request, directory_id, file):
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
return render(request, 'message.html', context, status=500)
|
return render(request, 'message.html', context, status=500)
|
||||||
|
|
||||||
|
|
||||||
|
def add(request):
|
||||||
|
context = {'title': 'Add New Directory'}
|
||||||
|
if 'path' in request.GET.keys():
|
||||||
|
context['path_prefill'] = request.GET['path']
|
||||||
|
return render(request, 'add.html', context)
|
||||||
|
|
||||||
|
|
||||||
|
def submit_new(request):
|
||||||
|
try:
|
||||||
|
s = ServedDirectory(
|
||||||
|
path=request.POST['path'],
|
||||||
|
regex_pattern=request.POST.get('regex'),
|
||||||
|
regex=request.POST.get('regex') is not None,
|
||||||
|
match_filename=request.POST.get('match_filename', False),
|
||||||
|
recursive=request.POST.get('recursive', False)
|
||||||
|
)
|
||||||
|
if not os.path.isdir(request.POST['path']):
|
||||||
|
raise ValueError('A invalid Directory was specified in the request.')
|
||||||
|
s.save()
|
||||||
|
except KeyError:
|
||||||
|
return render(request, 'message.html', status=403,
|
||||||
|
context={'title': 'Invalid Options',
|
||||||
|
'message': 'The POST request you sent did not have the options required to complete '
|
||||||
|
'the request.'})
|
||||||
|
except ValueError:
|
||||||
|
return render(request, 'message.html', status=400,
|
||||||
|
context={'title': 'Invalid Directory',
|
||||||
|
'message': 'The directory you specified was not a valid directory, either it doesn\'t '
|
||||||
|
'exist or it isn\'t a directory.'})
|
||||||
|
return HttpResponseRedirect(reverse('browse', args=(s.id,)))
|
||||||
|
|||||||
Reference in New Issue
Block a user