harness-drone/store/user/scan.go
2021-05-04 18:59:03 -04:00

107 lines
2.7 KiB
Go

// Copyright 2019 Drone IO, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package user
import (
"database/sql"
"github.com/drone/drone/core"
"github.com/drone/drone/store/shared/db"
"github.com/drone/drone/store/shared/encrypt"
)
// helper function converts the User structure to a set
// of named query parameters.
func toParams(encrypt encrypt.Encrypter, u *core.User) (map[string]interface{}, error) {
token, err := encrypt.Encrypt(u.Token)
if err != nil {
return nil, err
}
refresh, err := encrypt.Encrypt(u.Refresh)
if err != nil {
return nil, err
}
return map[string]interface{}{
"user_id": u.ID,
"user_login": u.Login,
"user_email": u.Email,
"user_admin": u.Admin,
"user_machine": u.Machine,
"user_active": u.Active,
"user_avatar": u.Avatar,
"user_syncing": u.Syncing,
"user_synced": u.Synced,
"user_created": u.Created,
"user_updated": u.Updated,
"user_last_login": u.LastLogin,
"user_oauth_token": token,
"user_oauth_refresh": refresh,
"user_oauth_expiry": u.Expiry,
"user_hash": u.Hash,
}, nil
}
// helper function scans the sql.Row and copies the column
// values to the destination object.
func scanRow(encrypt encrypt.Encrypter, scanner db.Scanner, dest *core.User) error {
var token, refresh []byte
err := scanner.Scan(
&dest.ID,
&dest.Login,
&dest.Email,
&dest.Admin,
&dest.Machine,
&dest.Active,
&dest.Avatar,
&dest.Syncing,
&dest.Synced,
&dest.Created,
&dest.Updated,
&dest.LastLogin,
&token,
&refresh,
&dest.Expiry,
&dest.Hash,
)
if err != nil {
return err
}
dest.Token, err = encrypt.Decrypt(token)
if err != nil {
return err
}
dest.Refresh, err = encrypt.Decrypt(refresh)
if err != nil {
return err
}
return nil
}
// helper function scans the sql.Row and copies the column
// values to the destination object.
func scanRows(encrypt encrypt.Encrypter, rows *sql.Rows) ([]*core.User, error) {
defer rows.Close()
users := []*core.User{}
for rows.Next() {
user := new(core.User)
err := scanRow(encrypt, rows, user)
if err != nil {
return nil, err
}
users = append(users, user)
}
return users, nil
}