| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- // Copyright 2019 Yunion
- //
- // 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 models
- import (
- "context"
- "database/sql"
- "fmt"
- "time"
- "yunion.io/x/pkg/errors"
- "yunion.io/x/pkg/tristate"
- "yunion.io/x/sqlchemy"
- "yunion.io/x/onecloud/pkg/cloudcommon/db"
- )
- // +onecloud:swagger-gen-ignore
- type SLocalUserManager struct {
- db.SResourceBaseManager
- }
- var LocalUserManager *SLocalUserManager
- func init() {
- LocalUserManager = &SLocalUserManager{
- SResourceBaseManager: db.NewResourceBaseManager(
- SLocalUser{},
- "local_user",
- "local_user",
- "local_users",
- ),
- }
- LocalUserManager.SetVirtualObject(LocalUserManager)
- }
- /*
- +-------------------+--------------+------+-----+---------+----------------+
- | Field | Type | Null | Key | Default | Extra |
- +-------------------+--------------+------+-----+---------+----------------+
- | id | int(11) | NO | PRI | NULL | auto_increment |
- | user_id | varchar(64) | NO | UNI | NULL | |
- | domain_id | varchar(64) | NO | MUL | NULL | |
- | name | varchar(255) | NO | | NULL | |
- | failed_auth_count | int(11) | YES | | NULL | |
- | failed_auth_at | datetime | YES | | NULL | |
- +-------------------+--------------+------+-----+---------+----------------+
- */
- type SLocalUser struct {
- db.SResourceBase
- Id int `nullable:"false" primary:"true" auto_increment:"true"`
- UserId string `width:"64" charset:"ascii" nullable:"false" index:"true"`
- DomainId string `width:"64" charset:"ascii" nullable:"false" index:"true"`
- Name string `width:"255" charset:"utf8" nullable:"false"`
- FailedAuthCount int `nullable:"true"`
- FailedAuthAt time.Time `nullable:"true"`
- NeedResetPassword tristate.TriState `default:"false" list:"domain"`
- ResetHint string `width:"16" charset:"ascii" list:"domain"`
- }
- func (user *SLocalUser) GetId() string {
- return fmt.Sprintf("%d", user.Id)
- }
- func (user *SLocalUser) GetName() string {
- return user.Name
- }
- func (manager *SLocalUserManager) CreateByInsertOrUpdate() bool {
- return false
- }
- func (manager *SLocalUserManager) FetchLocalUserById(localId int) (*SLocalUser, error) {
- return manager.fetchLocalUser("", "", localId)
- }
- func (manager *SLocalUserManager) fetchLocalUser(userId string, domainId string, localId int) (*SLocalUser, error) {
- localUser := SLocalUser{}
- localUser.SetModelManager(manager, &localUser)
- var q *sqlchemy.SQuery
- if len(userId) > 0 && len(domainId) > 0 {
- q = manager.Query().Equals("user_id", userId).Equals("domain_id", domainId)
- } else {
- q = manager.Query().Equals("id", localId)
- }
- err := q.First(&localUser)
- if err != nil {
- if err == sql.ErrNoRows {
- return nil, err
- } else {
- return nil, errors.Wrap(err, "Query")
- }
- }
- return &localUser, nil
- }
- func (manager *SLocalUserManager) register(userId string, domainId string, name string) (*SLocalUser, error) {
- localUser, err := manager.fetchLocalUser(userId, domainId, 0)
- if err != nil && err != sql.ErrNoRows {
- return nil, errors.Wrap(err, "Query")
- }
- if err == nil {
- return localUser, nil
- }
- localUser = &SLocalUser{}
- localUser.SetModelManager(manager, localUser)
- localUser.UserId = userId
- localUser.DomainId = domainId
- localUser.Name = name
- err = manager.TableSpec().Insert(context.TODO(), localUser)
- if err != nil {
- return nil, errors.Wrap(err, "Insert")
- }
- return localUser, nil
- }
- func (manager *SLocalUserManager) delete(userId string, domainId string) (*SLocalUser, error) {
- localUser, err := manager.fetchLocalUser(userId, domainId, 0)
- if err != nil && err != sql.ErrNoRows {
- return nil, errors.Wrap(err, "Query")
- }
- if err == sql.ErrNoRows {
- return nil, nil
- }
- _, err = db.Update(localUser, func() error {
- return localUser.MarkDelete()
- })
- if err != nil {
- return nil, errors.Wrap(err, "MarkDelete")
- }
- return localUser, nil
- }
- func (usr *SLocalUser) SaveFailedAuth() error {
- _, err := db.Update(usr, func() error {
- usr.FailedAuthCount += 1
- usr.FailedAuthAt = time.Now()
- return nil
- })
- if err != nil {
- return errors.Wrap(err, "Update")
- }
- return nil
- }
- func (usr *SLocalUser) ClearFailedAuth() error {
- _, err := db.Update(usr, func() error {
- usr.FailedAuthCount = 0
- usr.FailedAuthAt = time.Time{}
- return nil
- })
- if err != nil {
- return errors.Wrap(err, "Update")
- }
- return nil
- }
- func (usr *SLocalUser) markNeedResetPassword(needReset bool, reason string) error {
- if usr.NeedResetPassword.IsTrue() == needReset {
- return nil
- }
- _, err := db.Update(usr, func() error {
- if needReset {
- usr.NeedResetPassword = tristate.True
- usr.ResetHint = reason
- } else {
- usr.NeedResetPassword = tristate.False
- usr.ResetHint = reason
- }
- return nil
- })
- if err != nil {
- return errors.Wrap(err, "Update")
- }
- return nil
- }
|