raito
c38e9b482f
Thanks to Jade Lovelace who built all this machinery for Lix initially. Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
53 lines
2 KiB
Smarty
53 lines
2 KiB
Smarty
{{/* SPDX-License-Identifier: Apache-2.0 */}}
|
|
{{/* SPDX-FileCopyrightText: 2024 s3-proxy contributors */}}
|
|
{{- $root := . -}}
|
|
{{- if eq (len .Entries) 0 -}}
|
|
{{- include "notFoundErrorBody" . -}}
|
|
{{- else -}}
|
|
|
|
{{- if contains "application/json" (.Request.Header.Get "Accept") -}}
|
|
[
|
|
{{- $maxLen := len $root.Entries -}}
|
|
{{- range $index, $entry := $root.Entries -}}
|
|
{"name": {{ $entry.Name | toJson -}}
|
|
,"etag": {{ $entry.ETag | toJson -}}
|
|
,"type": {{ $entry.Type | toJson -}}
|
|
,"size": {{ $entry.Size | toJson -}}
|
|
,"path": {{ $entry.Path | toJson -}}
|
|
,"lastModified": {{ $entry.LastModified | date "2006-01-02T15:04:05Z07:00" | toJson -}}
|
|
}{{- if ne $index (sub $maxLen 1) -}},{{- end -}}
|
|
{{- end -}}
|
|
]
|
|
{{- else -}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h1>Index of {{ .Request.URL.Path }}</h1>
|
|
<table style="width:100%">
|
|
<thead>
|
|
<tr>
|
|
<th style="border-right:1px solid black;text-align:start">Entry</th>
|
|
<th style="border-right:1px solid black;text-align:start">Size</th>
|
|
<th style="border-right:1px solid black;text-align:start">Last modified</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody style="border-top:1px solid black">
|
|
<tr>
|
|
<td style="border-right:1px solid black;padding: 0 5px"><a href="..">..</a></td>
|
|
<td style="border-right:1px solid black;padding: 0 5px"> - </td>
|
|
<td style="padding: 0 5px"> - </td>
|
|
</tr>
|
|
{{- range .Entries }}
|
|
<tr>
|
|
<td style="border-right:1px solid black;padding: 0 5px"><a href="{{ .Path }}">{{ .Name }}</a></td>
|
|
<td style="border-right:1px solid black;padding: 0 5px">{{- if eq .Type "FOLDER" -}} - {{- else -}}{{ .Size | humanSize }}{{- end -}}</td>
|
|
<td style="padding: 0 5px">{{ .LastModified }}</td>
|
|
</tr>
|
|
{{- end }}
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
{{- end -}}
|
|
{{- end -}}
|