9a5720e8ad
Branch Policy Check / Verify merge target (pull_request) Has been cancelled
Universal: PR Check / Branch Policy (pull_request) Has been cancelled
PR RC Release / Build RC Release (pull_request) Has been cancelled
Universal: PR Check / Validate PR (pull_request) Has been cancelled
Branch Cleanup / Delete merged branch (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
user_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/user"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/setting"
|
|
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
func microcmdUserMustChangePassword() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "must-change-password",
|
|
Usage: "Set the must change password flag for the provided users or all users",
|
|
Action: runMustChangePassword,
|
|
Flags: []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "all",
|
|
Aliases: []string{"A"},
|
|
Usage: "All users must change password, except those explicitly excluded with --exclude",
|
|
},
|
|
&cli.StringSliceFlag{
|
|
Name: "exclude",
|
|
Aliases: []string{"e"},
|
|
Usage: "Do not change the must-change-password flag for these users",
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "unset",
|
|
Usage: "Instead of setting the must-change-password flag, unset it",
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func runMustChangePassword(ctx context.Context, c *cli.Command) error {
|
|
if c.NArg() == 0 && !c.IsSet("all") {
|
|
return errors.New("either usernames or --all must be provided")
|
|
}
|
|
|
|
mustChangePassword := !c.Bool("unset")
|
|
all := c.Bool("all")
|
|
exclude := c.StringSlice("exclude")
|
|
|
|
if !setting.IsInTesting {
|
|
if err := initDB(ctx); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
n, err := user_model.SetMustChangePassword(ctx, all, mustChangePassword, c.Args().Slice(), exclude)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// codeql[disable-next-line=go/clear-text-logging]
|
|
fmt.Printf("Updated %d users setting MustChangePassword to %t\n", n, mustChangePassword)
|
|
return nil
|
|
}
|