BuildDate, footer styling

This commit is contained in:
Carl Pearson
2024-09-20 14:01:27 -06:00
parent 5254b0eab7
commit 890565b609
5 changed files with 41 additions and 7 deletions

View File

@@ -7,7 +7,9 @@ go mod tidy
```bash
export YTDLP_SITE_ADMIN_INITIAL_PASSWORD=abc123
export YTDLP_SITE_SESSION_AUTH_KEY=v9qpt37hc4qpmhf
go run *.go
go run \
-ldflags "-X main.GitSHA=$(git rev-parse HEAD)" -ldflags "-X main.BuilDate=$(date)" \
*.go
```
## Environment Variables

View File

@@ -7,6 +7,7 @@ import (
)
var GitSHA string
var BuildDate string
func getDataDir() string {
value, exists := os.LookupEnv("YTDLP_SITE_DATA_DIR")
@@ -54,11 +55,17 @@ func getSecure() bool {
}
func getGitSHA() string {
if GitSHA == "" {
return "<not provided>"
} else {
return GitSHA
}
}
func getBuildDate() string {
if BuildDate == "" {
return "<not provided>"
} else {
return BuildDate
}
}

View File

@@ -17,6 +17,18 @@ import (
"gorm.io/gorm"
)
type Footer struct {
BuildDate string
BuildId string
}
func makeFooter() Footer {
return Footer{
BuildDate: getBuildDate(),
BuildId: getGitSHA(),
}
}
var ytdlpAudioOptions = []string{"-f", "bestvideo[height<=1080]+bestaudio/best[height<=1080]"}
var ytdlpVideoOptions = []string{"-f", "bestaudio"}
@@ -624,8 +636,8 @@ func videosHandler(c echo.Context) error {
db.Where("user_id = ?", userID).Find(&origs)
return c.Render(http.StatusOK, "videos.html",
map[string]interface{}{
"videos": origs,
"build_id": getGitSHA(),
"videos": origs,
"Footer": makeFooter(),
})
}
@@ -752,7 +764,7 @@ func videoHandler(c echo.Context) error {
"videos": videoURLs,
"audios": audioURLs,
"dataDir": dataDir,
"build_id": getGitSHA(),
"Footer": makeFooter(),
})
}

View File

@@ -0,0 +1,9 @@
.footer {
display: flex;
justify-content: space-evenly;
color: lightgray;
}
.footer a {
color: lightgray;
}

View File

@@ -1,7 +1,11 @@
{{define "footer"}}
<div class="footer">
<div class="build-date">
Build Date: {{.Footer.BuildDate}}
</div>
<div class="build-id">
Build ID: <a href="https://github.com/cwpearson/ytdlp-site/compare/{{.build_id}}..master">{{.build_id}}</a>
Build ID: <a
href="https://github.com/cwpearson/ytdlp-site/compare/{{.Footer.BuildId}}..master">{{.Footer.BuildId}}</a>
</div>
</div>
{{end}}