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
|
package main
import (
"context"
"github.com/grindlemire/gothem-stack/magefiles/cmd"
"github.com/pkg/errors"
"go.uber.org/zap"
)
func auth(ctx context.Context) error {
config, err := GetConfig(ctx)
if err != nil {
return errors.Wrap(err, "failed to get config")
}
if len(config.Args) == 0 {
return errors.New("no arguments passed. Please pass 'gcloud' or 'firebase' to authenticate with the respective service")
}
switch config.Args[0] {
case "gcloud":
return authGcloud(ctx)
case "firebase":
return authFirebase(ctx)
default:
return errors.Errorf("unknown auth target: %s", config.Args[0])
}
}
func authGcloud(ctx context.Context) error {
zap.S().Info("Authenticating with Google Cloud...")
err := cmd.Run(ctx, cmd.WithCMD("gcloud", "version"), cmd.WithSilent())
if err != nil {
return errors.Wrap(err, "gcloud is not installed. Run `mage install deploy` to install it")
}
err = cmd.Run(ctx, cmd.WithCMD(
"gcloud", "auth", "login",
))
if err != nil {
return errors.Wrap(err, "failed to authenticate with gcloud")
}
zap.S().Info("Successfully authenticated with Google Cloud")
return nil
}
func authFirebase(ctx context.Context) error {
zap.S().Info("Authenticating with Firebase...")
err := cmd.Run(ctx, cmd.WithCMD("firebase", "--version"), cmd.WithSilent())
if err != nil {
return errors.Wrap(err, "firebase is not installed. Run `mage install deploy` to install it")
}
err = cmd.Run(ctx, cmd.WithCMD(
"firebase", "login",
))
if err != nil {
return errors.Wrap(err, "failed to authenticate with firebase")
}
zap.S().Info("Successfully authenticated with Firebase")
return nil
}
|