]> git.plutz.net Git - serve0/blob - pages/tree.sh
40a50ccde00e3b2a1504e2195ac2d98c0402f756
[serve0] / pages / tree.sh
1 #!/bin/zsh
2
3 # Copyright 2014, 2015 Paul Hänsch
4 #
5 # This file is part of Serve0.
6
7 # Serve0 is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # Serve0 is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with Serve0.  If not, see <http://www.gnu.org/licenses/>. 
19
20 . $_EXEC/pages/common.sh
21
22 directory="$(invalidate "${_GET[d]}" '(.*/)?\.\.(/.*)?|' /)"
23
24 filelist(){
25   debug "Filelist with dir = $directory"
26
27   [ -n "${directory#/}" ] && printf %s "<a class='file directory' href='?p=tree&d=$(urlsafe "${directory%/*}")'>..</a>"
28
29   find -L "${treeroot%/}/${directory#/}" -mindepth 1 -maxdepth 1 -type d \
30   | sort \
31   | while read dir; do
32     name="${dir##*/}"
33     printf %s "<a class='file directory' href='?p=tree&d=$(urlsafe "${directory%/}/$name")'>$(htmlsafe "$name")</a>"
34   done
35
36   find -L "${treeroot%/}/${directory#/}" -mindepth 1 -maxdepth 1 -type f \
37   | sort \
38   | while read file; do
39     name="${file##*/}"
40     printf %s\\n "$name" |egrep -q "$file_pattern" && \
41        printf %s "<a class='file video' href='?action=watch&l=$(urlsafe "${directory%/}/$name")'>$(htmlsafe "$name")</a>" \
42     || printf %s "<span class='file plain'>$(htmlsafe "$name")</span>"
43   done
44 }
45