Skip to content

Commit 5842a55

Browse files
authored
Move login related structs and functions to models/login (#17093)
* Move login related structs and functions to models/login * Fix test * Fix lint * Fix lint * Fix lint of windows * Fix lint * Fix test * Fix test * Only load necessary fixtures when preparing unit tests envs * Fix lint * Fix test * Fix test * Fix error log * Fix error log * Fix error log * remove unnecessary change * fix error log * merge main branch
1 parent 4a26550 commit 5842a55

File tree

142 files changed

+1046
-903
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+1046
-903
lines changed

.golangci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,3 @@ issues:
111111
linters:
112112
- staticcheck
113113
text: "svc.IsAnInteractiveSession is deprecated: Use IsWindowsService instead."
114-

cmd/admin.go

+12-9
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ import (
1414
"text/tabwriter"
1515

1616
"code.gitea.io/gitea/models"
17+
"code.gitea.io/gitea/models/db"
18+
"code.gitea.io/gitea/models/login"
1719
"code.gitea.io/gitea/modules/git"
1820
"code.gitea.io/gitea/modules/graceful"
1921
"code.gitea.io/gitea/modules/log"
2022
pwd "code.gitea.io/gitea/modules/password"
2123
repo_module "code.gitea.io/gitea/modules/repository"
2224
"code.gitea.io/gitea/modules/setting"
2325
"code.gitea.io/gitea/modules/storage"
26+
auth_service "code.gitea.io/gitea/services/auth"
2427
"code.gitea.io/gitea/services/auth/source/oauth2"
2528

2629
"github.com/urfave/cli"
@@ -529,7 +532,7 @@ func runRepoSyncReleases(_ *cli.Context) error {
529532
log.Trace("Synchronizing repository releases (this may take a while)")
530533
for page := 1; ; page++ {
531534
repos, count, err := models.SearchRepositoryByName(&models.SearchRepoOptions{
532-
ListOptions: models.ListOptions{
535+
ListOptions: db.ListOptions{
533536
PageSize: models.RepositoryListDefaultPageSize,
534537
Page: page,
535538
},
@@ -629,8 +632,8 @@ func runAddOauth(c *cli.Context) error {
629632
return err
630633
}
631634

632-
return models.CreateLoginSource(&models.LoginSource{
633-
Type: models.LoginOAuth2,
635+
return login.CreateSource(&login.Source{
636+
Type: login.OAuth2,
634637
Name: c.String("name"),
635638
IsActive: true,
636639
Cfg: parseOAuth2Config(c),
@@ -646,7 +649,7 @@ func runUpdateOauth(c *cli.Context) error {
646649
return err
647650
}
648651

649-
source, err := models.GetLoginSourceByID(c.Int64("id"))
652+
source, err := login.GetSourceByID(c.Int64("id"))
650653
if err != nil {
651654
return err
652655
}
@@ -705,15 +708,15 @@ func runUpdateOauth(c *cli.Context) error {
705708
oAuth2Config.CustomURLMapping = customURLMapping
706709
source.Cfg = oAuth2Config
707710

708-
return models.UpdateSource(source)
711+
return login.UpdateSource(source)
709712
}
710713

711714
func runListAuth(c *cli.Context) error {
712715
if err := initDB(); err != nil {
713716
return err
714717
}
715718

716-
loginSources, err := models.LoginSources()
719+
loginSources, err := login.Sources()
717720

718721
if err != nil {
719722
return err
@@ -733,7 +736,7 @@ func runListAuth(c *cli.Context) error {
733736
w := tabwriter.NewWriter(os.Stdout, c.Int("min-width"), c.Int("tab-width"), c.Int("padding"), padChar, flags)
734737
fmt.Fprintf(w, "ID\tName\tType\tEnabled\n")
735738
for _, source := range loginSources {
736-
fmt.Fprintf(w, "%d\t%s\t%s\t%t\n", source.ID, source.Name, models.LoginNames[source.Type], source.IsActive)
739+
fmt.Fprintf(w, "%d\t%s\t%s\t%t\n", source.ID, source.Name, source.Type.String(), source.IsActive)
737740
}
738741
w.Flush()
739742

@@ -749,10 +752,10 @@ func runDeleteAuth(c *cli.Context) error {
749752
return err
750753
}
751754

752-
source, err := models.GetLoginSourceByID(c.Int64("id"))
755+
source, err := login.GetSourceByID(c.Int64("id"))
753756
if err != nil {
754757
return err
755758
}
756759

757-
return models.DeleteSource(source)
760+
return auth_service.DeleteLoginSource(source)
758761
}

cmd/admin_auth_ldap.go

+16-16
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"strings"
1010

11-
"code.gitea.io/gitea/models"
11+
"code.gitea.io/gitea/models/login"
1212
"code.gitea.io/gitea/services/auth/source/ldap"
1313

1414
"github.com/urfave/cli"
@@ -17,9 +17,9 @@ import (
1717
type (
1818
authService struct {
1919
initDB func() error
20-
createLoginSource func(loginSource *models.LoginSource) error
21-
updateLoginSource func(loginSource *models.LoginSource) error
22-
getLoginSourceByID func(id int64) (*models.LoginSource, error)
20+
createLoginSource func(loginSource *login.Source) error
21+
updateLoginSource func(loginSource *login.Source) error
22+
getLoginSourceByID func(id int64) (*login.Source, error)
2323
}
2424
)
2525

@@ -164,14 +164,14 @@ var (
164164
func newAuthService() *authService {
165165
return &authService{
166166
initDB: initDB,
167-
createLoginSource: models.CreateLoginSource,
168-
updateLoginSource: models.UpdateSource,
169-
getLoginSourceByID: models.GetLoginSourceByID,
167+
createLoginSource: login.CreateSource,
168+
updateLoginSource: login.UpdateSource,
169+
getLoginSourceByID: login.GetSourceByID,
170170
}
171171
}
172172

173173
// parseLoginSource assigns values on loginSource according to command line flags.
174-
func parseLoginSource(c *cli.Context, loginSource *models.LoginSource) {
174+
func parseLoginSource(c *cli.Context, loginSource *login.Source) {
175175
if c.IsSet("name") {
176176
loginSource.Name = c.String("name")
177177
}
@@ -269,7 +269,7 @@ func findLdapSecurityProtocolByName(name string) (ldap.SecurityProtocol, bool) {
269269

270270
// getLoginSource gets the login source by its id defined in the command line flags.
271271
// It returns an error if the id is not set, does not match any source or if the source is not of expected type.
272-
func (a *authService) getLoginSource(c *cli.Context, loginType models.LoginType) (*models.LoginSource, error) {
272+
func (a *authService) getLoginSource(c *cli.Context, loginType login.Type) (*login.Source, error) {
273273
if err := argsSet(c, "id"); err != nil {
274274
return nil, err
275275
}
@@ -280,7 +280,7 @@ func (a *authService) getLoginSource(c *cli.Context, loginType models.LoginType)
280280
}
281281

282282
if loginSource.Type != loginType {
283-
return nil, fmt.Errorf("Invalid authentication type. expected: %s, actual: %s", models.LoginNames[loginType], models.LoginNames[loginSource.Type])
283+
return nil, fmt.Errorf("Invalid authentication type. expected: %s, actual: %s", loginType.String(), loginSource.Type.String())
284284
}
285285

286286
return loginSource, nil
@@ -296,8 +296,8 @@ func (a *authService) addLdapBindDn(c *cli.Context) error {
296296
return err
297297
}
298298

299-
loginSource := &models.LoginSource{
300-
Type: models.LoginLDAP,
299+
loginSource := &login.Source{
300+
Type: login.LDAP,
301301
IsActive: true, // active by default
302302
Cfg: &ldap.Source{
303303
Enabled: true, // always true
@@ -318,7 +318,7 @@ func (a *authService) updateLdapBindDn(c *cli.Context) error {
318318
return err
319319
}
320320

321-
loginSource, err := a.getLoginSource(c, models.LoginLDAP)
321+
loginSource, err := a.getLoginSource(c, login.LDAP)
322322
if err != nil {
323323
return err
324324
}
@@ -341,8 +341,8 @@ func (a *authService) addLdapSimpleAuth(c *cli.Context) error {
341341
return err
342342
}
343343

344-
loginSource := &models.LoginSource{
345-
Type: models.LoginDLDAP,
344+
loginSource := &login.Source{
345+
Type: login.DLDAP,
346346
IsActive: true, // active by default
347347
Cfg: &ldap.Source{
348348
Enabled: true, // always true
@@ -363,7 +363,7 @@ func (a *authService) updateLdapSimpleAuth(c *cli.Context) error {
363363
return err
364364
}
365365

366-
loginSource, err := a.getLoginSource(c, models.LoginDLDAP)
366+
loginSource, err := a.getLoginSource(c, login.DLDAP)
367367
if err != nil {
368368
return err
369369
}

0 commit comments

Comments
 (0)