mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
b868d30434
Co-authored-by: techknowlogick <hello@techknowlogick.com> Co-committed-by: techknowlogick <hello@techknowlogick.com>
51 lines
941 B
Go
51 lines
941 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package print
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
)
|
|
|
|
// OrganizationDetails prints details of an org with formatting
|
|
func OrganizationDetails(org *gitea.Organization) {
|
|
_ = outputMarkdown(fmt.Sprintf(
|
|
"# %s\n%s\n\n- Visibility: %s\n- Location: %s\n- Website: %s\n",
|
|
org.UserName,
|
|
org.Description,
|
|
org.Visibility,
|
|
org.Location,
|
|
org.Website,
|
|
), "")
|
|
}
|
|
|
|
// OrganizationsList prints a listing of the organizations
|
|
func OrganizationsList(organizations []*gitea.Organization, output string) {
|
|
if len(organizations) == 0 {
|
|
fmt.Println("No organizations found")
|
|
return
|
|
}
|
|
|
|
t := tableWithHeader(
|
|
"Name",
|
|
"FullName",
|
|
"Website",
|
|
"Location",
|
|
"Description",
|
|
)
|
|
|
|
for _, org := range organizations {
|
|
t.addRow(
|
|
org.UserName,
|
|
org.FullName,
|
|
org.Website,
|
|
org.Location,
|
|
org.Description,
|
|
)
|
|
}
|
|
|
|
t.print(output)
|
|
}
|