frostfs-http-gw/internal/handler/templates/index.gotmpl
Nikita Zinkevich c57dec966b
Some checks failed
/ DCO (pull_request) Successful in 1m32s
/ Vulncheck (pull_request) Successful in 1m49s
/ Builds (pull_request) Successful in 1m51s
/ Lint (pull_request) Failing after 1m56s
/ Tests (pull_request) Successful in 1m48s
[#137] Add index page support
Signed-off-by: Nikita Zinkevich <n.zinkevich@yadro.com>
2024-09-30 12:50:02 +03:00

90 lines
2.5 KiB
Go Template

{{$bucketName := .BucketName}}
{{ $prefix := trimPrefix .Prefix }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Index of s3://{{$bucketName}}{{if $prefix}}/{{$prefix}}/{{end}}</title>
<style>
table {
width: 80%;
border-collapse: collapse;
}
body {
background: #f2f2f2;
}
table, th, td {
border: 0 solid transparent;
}
th, td {
padding: 10px;
text-align: left;
}
th {
background-color: #c3bcbc;
}
tr:nth-child(even) {background-color: #ebe7e7;}
</style>
</head>
<body>
<h1>Index of s3://{{$bucketName}}/{{if $prefix}}{{$prefix}}/{{end}}</h1>
<table>
<thead>
<tr>
<th>Filename</th>
<th>Size</th>
<th>Created</th>
<th>Download</th>
</tr>
</thead>
<tbody>
{{ $trimmedPrefix := trimPrefix $prefix }}
{{if $trimmedPrefix }}
<tr>
<td><a href="/get/{{$bucketName}}/{{ $trimmedPrefix }}/">../</a></td>
<td></td>
<td></td>
</tr>
{{else}}
<tr>
<td><a href="/get/{{ $bucketName}}/">../</a></td>
<td></td>
<td></td>
</tr>
{{end}}
{{range .Objects}}
<tr>
<td>
{{if and (not .FileName) (not .Size)}}
{{if not .Created}}
<a href="/get/{{ $bucketName}}/{{ urlencode $prefix .FileName .Size .Created }}">
/
</a>
{{else}}
{{/* current dir info */}}
{{end}}
{{else if and (not .FileName) .Size}}
{{/* this is an object with body of current dir */}}
..{{parentDir $prefix}}/
{{else}}
<a href="/get/{{ $bucketName}}/{{ urlencode $prefix .FileName .Size .Created}}">
{{.FileName}}{{if and (not .Size) (not .Created)}}/{{end}}
</a>
{{end}}
</td>
<td>{{ formatSize .Size }}</td>
<td>{{ formatTimestamp .Created }}</td>
<td>
{{ if .Size }}
<a href="/get/{{ $bucketName}}/{{ urlencode $prefix .FileName .Size .Created }}?download=true">
Link
</a>
{{ end }}
</td>
</tr>
{{end}}
</tbody>
</table>
</body>
</html>