mirror of https://github.com/harness/drone.git
77 lines
2.4 KiB
Go
77 lines
2.4 KiB
Go
// Copyright 2023 Harness, 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 types defines common data structures.
|
|
package types
|
|
|
|
import (
|
|
"github.com/harness/gitness/types/enum"
|
|
)
|
|
|
|
type (
|
|
// User is a principal representing an end user.
|
|
User struct {
|
|
// Fields from Principal
|
|
ID int64 `db:"principal_id" json:"-"`
|
|
UID string `db:"principal_uid" json:"uid"`
|
|
Email string `db:"principal_email" json:"email"`
|
|
DisplayName string `db:"principal_display_name" json:"display_name"`
|
|
Admin bool `db:"principal_admin" json:"admin"`
|
|
Blocked bool `db:"principal_blocked" json:"blocked"`
|
|
Salt string `db:"principal_salt" json:"-"`
|
|
Created int64 `db:"principal_created" json:"created"`
|
|
Updated int64 `db:"principal_updated" json:"updated"`
|
|
|
|
// User specific fields
|
|
Password string `db:"principal_user_password" json:"-"`
|
|
}
|
|
|
|
// UserInput store user account details used to
|
|
// create or update a user.
|
|
UserInput struct {
|
|
Email *string `json:"email"`
|
|
Password *string `json:"password"`
|
|
Name *string `json:"name"`
|
|
Admin *bool `json:"admin"`
|
|
}
|
|
|
|
// UserFilter stores user query parameters.
|
|
UserFilter struct {
|
|
Page int `json:"page"`
|
|
Size int `json:"size"`
|
|
Sort enum.UserAttr `json:"sort"`
|
|
Order enum.Order `json:"order"`
|
|
Admin bool `json:"admin"`
|
|
}
|
|
)
|
|
|
|
func (u *User) ToPrincipal() *Principal {
|
|
return &Principal{
|
|
ID: u.ID,
|
|
UID: u.UID,
|
|
Email: u.Email,
|
|
Type: enum.PrincipalTypeUser,
|
|
DisplayName: u.DisplayName,
|
|
Admin: u.Admin,
|
|
Blocked: u.Blocked,
|
|
Salt: u.Salt,
|
|
Created: u.Created,
|
|
Updated: u.Updated,
|
|
}
|
|
}
|
|
|
|
func (u *User) ToPrincipalInfo() *PrincipalInfo {
|
|
return u.ToPrincipal().ToPrincipalInfo()
|
|
}
|