2020-12-06 17:02:50 -05:00
|
|
|
// 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"
|
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
)
|
|
|
|
|
|
|
|
// OrganizationsList prints a listing of the organizations
|
2020-12-08 05:28:54 -05:00
|
|
|
func OrganizationsList(organizations []*gitea.Organization, output string) {
|
2020-12-06 17:02:50 -05:00
|
|
|
if len(organizations) == 0 {
|
|
|
|
fmt.Println("No organizations found")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-09 17:04:36 -05:00
|
|
|
t := tableWithHeader(
|
2020-12-06 17:02:50 -05:00
|
|
|
"Name",
|
|
|
|
"FullName",
|
|
|
|
"Website",
|
|
|
|
"Location",
|
|
|
|
"Description",
|
2020-12-09 17:04:36 -05:00
|
|
|
)
|
2020-12-06 17:02:50 -05:00
|
|
|
|
|
|
|
for _, org := range organizations {
|
2020-12-09 17:04:36 -05:00
|
|
|
t.addRow(
|
|
|
|
org.UserName,
|
|
|
|
org.FullName,
|
|
|
|
org.Website,
|
|
|
|
org.Location,
|
|
|
|
org.Description,
|
2020-12-06 17:02:50 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-12-09 17:04:36 -05:00
|
|
|
t.print(output)
|
2020-12-06 17:02:50 -05:00
|
|
|
}
|