forked from cidertool/asc-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
116 lines (101 loc) · 3.43 KB
/
main.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/**
Copyright (C) 2020 Aaron Sky.
This file is part of asc-go, a package for working with Apple's
App Store Connect API.
asc-go is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
asc-go is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with asc-go. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"context"
"flag"
"fmt"
"log"
"strings"
"github.com/cidertool/asc-go/asc"
"github.com/cidertool/asc-go/examples/util"
)
var (
givenName = flag.String("givenname", "", "Given (first) name")
familyName = flag.String("familyname", "", "Family (last) name")
email = flag.String("email", "", "Email address")
shouldCancel = flag.Bool("cancel", false, "Instead of inviting the user, cancel the invitation instead")
roles = flag.String("roles", "", "Roles that the user should be set to, comma-separated")
allAppsVisible = flag.Bool("allappsvisible", false, "Whether the user should have access to all apps in the team.")
provisioningAllowed = flag.Bool("provisioningallowed", false, "Whether the user should be allowed to update provisioning settings.")
)
func main() {
flag.Parse()
ctx := context.Background()
auth, err := util.TokenConfig()
if err != nil {
log.Fatalf("client config failed: %s", err)
}
// Create the App Store Connect client
client := asc.NewClient(auth.Client())
if *shouldCancel {
err = cancelUserInvitation(ctx, client)
} else {
err = inviteUser(ctx, client)
}
if err != nil {
log.Fatal(err)
}
}
func inviteUser(ctx context.Context, client *asc.Client) error {
userRoles := make([]asc.UserRole, 0)
for _, role := range strings.Split(*roles, ",") {
role = strings.Trim(role, " ")
userRoles = append(userRoles, asc.UserRole(role))
}
invitation, _, err := client.Users.CreateInvitation(ctx, asc.UserInvitationCreateRequestAttributes{
FirstName: *givenName,
LastName: *familyName,
Email: asc.Email(*email),
Roles: userRoles,
AllAppsVisible: allAppsVisible,
ProvisioningAllowed: provisioningAllowed,
}, nil)
if err != nil {
return err
}
fmt.Printf(
"Sent an invitation to %s %s at %s. They should check their email and confirm the invitation before it expires at %s.",
*invitation.Data.Attributes.FirstName,
*invitation.Data.Attributes.LastName,
*invitation.Data.Attributes.Email,
invitation.Data.Attributes.ExpirationDate.String(),
)
return nil
}
func cancelUserInvitation(ctx context.Context, client *asc.Client) error {
invitations, _, err := client.Users.ListInvitations(ctx, &asc.ListInvitationsQuery{
FilterEmail: []string{*email},
})
if err != nil {
fmt.Println(err)
}
var invitation asc.UserInvitation
if len(invitations.Data) > 0 {
invitation = invitations.Data[0]
}
_, err = client.Users.CancelInvitation(ctx, invitation.ID)
if err != nil {
return err
}
fmt.Printf(
"Cancelled the invitation issued for %s %s at %s.",
*invitation.Attributes.FirstName,
*invitation.Attributes.LastName,
*invitation.Attributes.Email,
)
return nil
}