mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-27 18:53:52 +00:00
646ea0f253
Deploy keys only work over SSH. A deploy token is their counterpart for HTTPS: a repository scoped credential, used as the password of a Git request, with read or read and write access. It covers Git operations and LFS, and can be regenerated in place. Signed-off-by: silverwind <me@silverwind.io> Co-authored-by: Claude Mythos <noreply@anthropic.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: bircni <bircni@icloud.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
46 lines
892 B
Go
46 lines
892 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package user
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitea.dev/models/db"
|
|
)
|
|
|
|
func GetUsersMapByIDs(ctx context.Context, userIDs []int64) (map[int64]*User, error) {
|
|
userMaps := make(map[int64]*User, len(userIDs))
|
|
if len(userIDs) == 0 {
|
|
return userMaps, nil
|
|
}
|
|
|
|
left := len(userIDs)
|
|
for left > 0 {
|
|
limit := min(left, db.DefaultMaxInSize)
|
|
err := db.GetEngine(ctx).
|
|
In("id", userIDs[:limit]).
|
|
Find(&userMaps)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
left -= limit
|
|
userIDs = userIDs[limit:]
|
|
}
|
|
return userMaps, nil
|
|
}
|
|
|
|
func GetPossibleUserFromMap(userID int64, usererMaps map[int64]*User) *User {
|
|
if userID == 0 {
|
|
return nil
|
|
}
|
|
if newFunc, ok := globalVars().systemUserNewFuncs[userID]; ok {
|
|
return newFunc()
|
|
}
|
|
user, ok := usererMaps[userID]
|
|
if !ok {
|
|
return NewGhostUser()
|
|
}
|
|
return user
|
|
}
|