mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
e23f56e81c
Impruve & Refactor AddLogin Impruve login comands Remove unused Package + Vars Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/212 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: Andrew Thornton <art27@cantab.net>
42 lines
876 B
Go
42 lines
876 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package print
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"code.gitea.io/tea/modules/config"
|
|
|
|
"github.com/charmbracelet/glamour"
|
|
)
|
|
|
|
// LoginDetails print login entry to stdout
|
|
func LoginDetails(login *config.Login) {
|
|
|
|
in := fmt.Sprintf("# %s\n\n[@%s](%s/%s)\n",
|
|
login.Name,
|
|
login.User,
|
|
strings.TrimSuffix(login.URL, "/"),
|
|
login.User,
|
|
)
|
|
if len(login.SSHKey) != 0 {
|
|
in += fmt.Sprintf("\nSSH Key: '%s' via %s\n",
|
|
login.SSHKey,
|
|
login.SSHHost,
|
|
)
|
|
}
|
|
in += fmt.Sprintf("\nCreated: %s", time.Unix(login.Created, 0).Format(time.RFC822))
|
|
|
|
out, err := glamour.Render(in, getGlamourTheme())
|
|
if err != nil {
|
|
// TODO: better Error handling
|
|
fmt.Printf("Error:\n%v\n\n", err)
|
|
return
|
|
}
|
|
fmt.Print(out)
|
|
}
|