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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package client
import (
"bytes"
"encoding/json"
"fmt"
"os"
"path/filepath"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/osutil/sys"
"github.com/snapcore/snapd/osutil/user"
)
// User holds logged in user information.
type User struct {
ID int `json:"id,omitempty"`
Username string `json:"username,omitempty"`
Email string `json:"email,omitempty"`
Macaroon string `json:"macaroon,omitempty"`
Discharges []string `json:"discharges,omitempty"`
}
type loginData struct {
Email string `json:"email,omitempty"`
Password string `json:"password,omitempty"`
Otp string `json:"otp,omitempty"`
}
// Login logs user in.
func (client *Client) Login(email, password, otp string) (*User, error) {
postData := loginData{
Email: email,
Password: password,
Otp: otp,
}
var body bytes.Buffer
if err := json.NewEncoder(&body).Encode(postData); err != nil {
return nil, err
}
var user User
if _, err := client.doSync("POST", "/v2/login", nil, nil, &body, &user); err != nil {
return nil, err
}
if err := writeAuthData(user); err != nil {
return nil, fmt.Errorf("cannot persist login information: %v", err)
}
return &user, nil
}
// Logout logs the user out.
func (client *Client) Logout() error {
_, err := client.doSync("POST", "/v2/logout", nil, nil, nil, nil)
if err != nil {
return err
}
return removeAuthData()
}
// LoggedInUser returns the logged in User or nil
func (client *Client) LoggedInUser() *User {
u, err := readAuthData()
if err != nil {
return nil
}
return u
}
const authFileEnvKey = "SNAPD_AUTH_DATA_FILENAME"
func storeAuthDataFilename(homeDir string) string {
if fn := os.Getenv(authFileEnvKey); fn != "" {
return fn
}
if homeDir == "" {
real, err := osutil.UserMaybeSudoUser()
if err != nil {
panic(err)
}
homeDir = real.HomeDir
}
return filepath.Join(homeDir, ".snap", "auth.json")
}
// realUidGid finds the real user when the command is run
// via sudo. It returns the users record and uid,gid.
func realUidGid() (*user.User, sys.UserID, sys.GroupID, error) {
real, err := osutil.UserMaybeSudoUser()
if err != nil {
return nil, 0, 0, err
}
uid, gid, err := osutil.UidGid(real)
if err != nil {
return nil, 0, 0, err
}
return real, uid, gid, err
}
// writeAuthData saves authentication details for later reuse through ReadAuthData
func writeAuthData(user User) error {
real, uid, gid, err := realUidGid()
if err != nil {
return err
}
targetFile := storeAuthDataFilename(real.HomeDir)
out, err := json.Marshal(user)
if err != nil {
return err
}
return sys.RunAsUidGid(uid, gid, func() error {
if err := os.MkdirAll(filepath.Dir(targetFile), 0700); err != nil {
return err
}
return osutil.AtomicWriteFile(targetFile, out, 0600, 0)
})
}
// readAuthData reads previously written authentication details
func readAuthData() (*User, error) {
_, uid, _, err := realUidGid()
if err != nil {
return nil, err
}
var user User
sourceFile := storeAuthDataFilename("")
if err := sys.RunAsUidGid(uid, sys.FlagID, func() error {
f, err := os.Open(sourceFile)
if err != nil {
return err
}
defer f.Close()
dec := json.NewDecoder(f)
return dec.Decode(&user)
}); err != nil {
return nil, err
}
return &user, nil
}
// removeAuthData removes any previously written authentication details.
func removeAuthData() error {
_, uid, _, err := realUidGid()
if err != nil {
return err
}
filename := storeAuthDataFilename("")
return sys.RunAsUidGid(uid, sys.FlagID, func() error {
return os.Remove(filename)
})
}
|