forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set_quota.go
73 lines (61 loc) · 2.01 KB
/
set_quota.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package organization
import (
"github.com/cloudfoundry/cli/cf/api/quotas"
"github.com/cloudfoundry/cli/cf/command_metadata"
"github.com/cloudfoundry/cli/cf/configuration"
. "github.com/cloudfoundry/cli/cf/i18n"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
type SetQuota struct {
ui terminal.UI
config configuration.Reader
quotaRepo quotas.QuotaRepository
orgReq requirements.OrganizationRequirement
}
func NewSetQuota(ui terminal.UI, config configuration.Reader, quotaRepo quotas.QuotaRepository) (cmd *SetQuota) {
cmd = new(SetQuota)
cmd.ui = ui
cmd.config = config
cmd.quotaRepo = quotaRepo
return
}
func (cmd *SetQuota) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "set-quota",
Description: T("Assign a quota to an org"),
Usage: T("CF_NAME set-quota ORG QUOTA\n\n") + T("TIP:\n") + T(" View allowable quotas with 'CF_NAME quotas'"),
}
}
func (cmd *SetQuota) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) (reqs []requirements.Requirement, err error) {
if len(c.Args()) != 2 {
cmd.ui.FailWithUsage(c)
}
cmd.orgReq = requirementsFactory.NewOrganizationRequirement(c.Args()[0])
reqs = []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
cmd.orgReq,
}
return
}
func (cmd *SetQuota) Run(c *cli.Context) {
org := cmd.orgReq.GetOrganization()
quotaName := c.Args()[1]
quota, apiErr := cmd.quotaRepo.FindByName(quotaName)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Say(T("Setting quota {{.QuotaName}} to org {{.OrgName}} as {{.Username}}...",
map[string]interface{}{
"QuotaName": terminal.EntityNameColor(quota.Name),
"OrgName": terminal.EntityNameColor(org.Name),
"Username": terminal.EntityNameColor(cmd.config.Username())}))
apiErr = cmd.quotaRepo.AssignQuotaToOrg(org.Guid, quota.Guid)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
return
}
cmd.ui.Ok()
}