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>
48 lines
1.8 KiB
Go
48 lines
1.8 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package user
|
|
|
|
import (
|
|
"time"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/avatars"
|
|
user_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/user"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/httpcache"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/services/context"
|
|
)
|
|
|
|
func cacheableRedirect(ctx *context.Context, location string) {
|
|
// here we should not use `setting.StaticCacheTime`, it is pretty long (default: 6 hours)
|
|
// we must make sure the redirection cache time is short enough, otherwise a user won't see the updated avatar in 6 hours
|
|
// it's OK to make the cache time short, it is only a redirection, and doesn't cost much to make a new request
|
|
httpcache.SetCacheControlInHeader(ctx.Resp.Header(), &httpcache.CacheControlOptions{MaxAge: 5 * time.Minute})
|
|
ctx.Redirect(location)
|
|
}
|
|
|
|
// AvatarByUsernameSize redirect browser to user avatar of requested size
|
|
func AvatarByUsernameSize(ctx *context.Context) {
|
|
username := ctx.PathParam("username")
|
|
user := user_model.GetSystemUserByName(username)
|
|
if user == nil {
|
|
var err error
|
|
if user, err = user_model.GetUserByName(ctx, username); err != nil {
|
|
ctx.NotFoundOrServerError("GetUserByName", user_model.IsErrUserNotExist, err)
|
|
return
|
|
}
|
|
}
|
|
cacheableRedirect(ctx, user.AvatarLinkWithSize(ctx, ctx.PathParamInt("size")))
|
|
}
|
|
|
|
// AvatarByEmailHash redirects the browser to the email avatar link
|
|
func AvatarByEmailHash(ctx *context.Context) {
|
|
hash := ctx.PathParam("hash")
|
|
email, err := avatars.GetEmailForHash(ctx, hash)
|
|
if err != nil {
|
|
ctx.ServerError("invalid avatar hash: "+hash, err)
|
|
return
|
|
}
|
|
size := ctx.FormInt("size")
|
|
cacheableRedirect(ctx, avatars.GenerateEmailAvatarFinalLink(ctx, email, size))
|
|
}
|