2015-11-16 16:11:59 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user profile">
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="ui container">
|
2017-12-31 00:47:52 +00:00
|
|
|
<div class="ui stackable grid">
|
2023-05-23 17:55:51 +00:00
|
|
|
<div class="ui four wide column">
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="ui card">
|
2023-03-27 16:05:51 +00:00
|
|
|
<div id="profile-avatar" class="content gt-df">
|
2023-05-04 06:36:34 +00:00
|
|
|
{{if eq .SignedUserID .ContextUser.ID}}
|
2023-03-24 10:35:38 +00:00
|
|
|
<a class="image" href="{{AppSubUrl}}/user/settings" data-tooltip-content="{{.locale.Tr "user.change_avatar"}}">
|
2023-05-13 18:59:11 +00:00
|
|
|
{{/* the size doesn't take affect (and no need to take affect), image size(width) should be controlled by the parent container since this is not a flex layout*/}}
|
|
|
|
{{avatar $.Context .ContextUser 256}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</a>
|
|
|
|
{{else}}
|
2022-06-10 11:06:34 +00:00
|
|
|
<span class="image">
|
2023-05-13 18:59:11 +00:00
|
|
|
{{avatar $.Context .ContextUser 256}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</span>
|
|
|
|
{{end}}
|
2022-06-10 11:06:34 +00:00
|
|
|
</div>
|
2023-02-13 17:59:59 +00:00
|
|
|
<div class="content gt-word-break profile-avatar-name">
|
2023-04-20 17:33:30 +00:00
|
|
|
{{if .ContextUser.FullName}}<span class="header text center">{{.ContextUser.FullName}}</span>{{end}}
|
|
|
|
<span class="username text center">{{.ContextUser.Name}}</span>
|
2022-11-21 05:14:58 +00:00
|
|
|
{{if .EnableFeed}}
|
2023-04-20 17:33:30 +00:00
|
|
|
<a href="{{.ContextUser.HomeLink}}.rss"><i class="ui text grey gt-ml-3" data-tooltip-content="{{.locale.Tr "rss_feed"}}">{{svg "octicon-rss" 18}}</i></a>
|
2022-11-21 05:14:58 +00:00
|
|
|
{{end}}
|
2023-02-13 17:59:59 +00:00
|
|
|
<div class="gt-mt-3">
|
2023-04-29 19:13:58 +00:00
|
|
|
<a class="muted" href="{{.ContextUser.HomeLink}}?tab=followers">{{svg "octicon-person" 18 "gt-mr-2"}}{{.NumFollowers}} {{.locale.Tr "user.followers"}}</a> · <a class="muted" href="{{.ContextUser.HomeLink}}?tab=following">{{.NumFollowing}} {{.locale.Tr "user.following"}}</a>
|
2022-05-25 16:29:40 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2023-02-13 17:59:59 +00:00
|
|
|
<div class="extra content gt-word-break">
|
2020-12-03 18:46:11 +00:00
|
|
|
<ul>
|
2023-04-20 17:33:30 +00:00
|
|
|
{{if .ContextUser.Location}}
|
|
|
|
<li>{{svg "octicon-location"}} {{.ContextUser.Location}}</li>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
2023-05-04 06:36:34 +00:00
|
|
|
{{if (eq .SignedUserID .ContextUser.ID)}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<li>
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-mail"}}
|
2023-04-20 17:33:30 +00:00
|
|
|
<a href="mailto:{{.ContextUser.Email}}" rel="nofollow">{{.ContextUser.Email}}</a>
|
2023-04-08 10:05:21 +00:00
|
|
|
<a href="{{AppSubUrl}}/user/settings#keep-email-private">
|
|
|
|
{{if .ShowUserEmail}}
|
|
|
|
<i class="ui right" data-tooltip-content="{{.locale.Tr "user.email_visibility.limited"}}">
|
|
|
|
{{svg "octicon-unlock"}}
|
|
|
|
</i>
|
|
|
|
{{else}}
|
|
|
|
<i class="ui right" data-tooltip-content="{{.locale.Tr "user.email_visibility.private"}}">
|
|
|
|
{{svg "octicon-lock"}}
|
|
|
|
</i>
|
|
|
|
{{end}}
|
|
|
|
</a>
|
2015-12-07 22:30:52 +00:00
|
|
|
</li>
|
2023-04-08 10:05:21 +00:00
|
|
|
{{else}}
|
|
|
|
{{if .ShowUserEmail}}
|
|
|
|
<li>
|
|
|
|
{{svg "octicon-mail"}}
|
2023-04-20 17:33:30 +00:00
|
|
|
<a href="mailto:{{.ContextUser.Email}}" rel="nofollow">{{.ContextUser.Email}}</a>
|
2023-04-08 10:05:21 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
2023-04-20 17:33:30 +00:00
|
|
|
{{if .ContextUser.Website}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<li>
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-link"}}
|
2023-04-20 17:33:30 +00:00
|
|
|
<a target="_blank" rel="noopener noreferrer me" href="{{.ContextUser.Website}}">{{.ContextUser.Website}}</a>
|
2015-12-07 22:30:52 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
2020-08-05 07:48:37 +00:00
|
|
|
{{if $.RenderedDescription}}
|
2019-03-19 02:28:10 +00:00
|
|
|
<li>
|
2021-05-07 08:43:41 +00:00
|
|
|
<div class="render-content markup">{{$.RenderedDescription|Str2html}}</div>
|
2019-03-19 02:28:10 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
2017-03-20 08:31:08 +00:00
|
|
|
{{range .OpenIDs}}
|
|
|
|
{{if .Show}}
|
|
|
|
<li>
|
2021-05-22 21:29:46 +00:00
|
|
|
{{svg "fontawesome-openid"}}
|
2018-07-03 23:52:36 +00:00
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.URI}}">{{.URI}}</a>
|
2017-03-20 08:31:08 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2023-05-06 10:10:30 +00:00
|
|
|
<li>{{svg "octicon-clock"}} {{.locale.Tr "user.joined_on" (DateTime "short" .ContextUser.CreatedUnix) | Safe}}</li>
|
2019-02-18 16:00:27 +00:00
|
|
|
{{if and .Orgs .HasOrgsVisible}}
|
2016-01-12 02:09:59 +00:00
|
|
|
<li>
|
2019-05-13 20:52:59 +00:00
|
|
|
<ul class="user-orgs">
|
2016-01-12 02:09:59 +00:00
|
|
|
{{range .Orgs}}
|
2020-08-16 20:27:08 +00:00
|
|
|
{{if (or .Visibility.IsPublic (and ($.SignedUser) (or .Visibility.IsLimited (and (.HasMemberWithUserID $.SignedUserID) .Visibility.IsPrivate) ($.IsAdmin))))}}
|
2019-05-13 20:52:59 +00:00
|
|
|
<li>
|
2023-03-24 10:35:38 +00:00
|
|
|
<a href="{{.HomeLink}}" data-tooltip-content="{{.Name}}">
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 13:37:34 +00:00
|
|
|
{{avatar $.Context .}}
|
2020-12-03 18:46:11 +00:00
|
|
|
</a>
|
2019-05-13 20:52:59 +00:00
|
|
|
</li>
|
2019-02-18 16:00:27 +00:00
|
|
|
{{end}}
|
2016-01-12 02:09:59 +00:00
|
|
|
{{end}}
|
2019-05-13 20:52:59 +00:00
|
|
|
</ul>
|
2016-01-12 02:09:59 +00:00
|
|
|
</li>
|
2016-01-14 13:29:25 +00:00
|
|
|
{{end}}
|
2022-08-17 23:25:25 +00:00
|
|
|
{{if .Badges}}
|
|
|
|
<li>
|
|
|
|
<ul class="user-badges">
|
|
|
|
{{range .Badges}}
|
|
|
|
<li>
|
2023-03-24 10:35:38 +00:00
|
|
|
<img width="64" height="64" src="{{.ImageURL}}" alt="{{.Description}}" data-tooltip-content="{{.Description}}">
|
2022-08-17 23:25:25 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
2023-05-04 06:36:34 +00:00
|
|
|
{{if and .IsSigned (ne .SignedUserID .ContextUser.ID)}}
|
2015-12-21 12:24:11 +00:00
|
|
|
<li class="follow">
|
2021-11-22 15:21:55 +00:00
|
|
|
{{if $.IsFollowing}}
|
2021-12-20 17:18:26 +00:00
|
|
|
<form method="post" action="{{.Link}}?action=unfollow&redirect_to={{$.Link}}">
|
2020-02-25 20:28:47 +00:00
|
|
|
{{$.CsrfTokenHtml}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<button type="submit" class="ui basic red button">{{svg "octicon-person"}} {{.locale.Tr "user.unfollow"}}</button>
|
2020-02-25 20:28:47 +00:00
|
|
|
</form>
|
2015-12-21 12:24:11 +00:00
|
|
|
{{else}}
|
2021-12-20 17:18:26 +00:00
|
|
|
<form method="post" action="{{.Link}}?action=follow&redirect_to={{$.Link}}">
|
2020-02-25 20:28:47 +00:00
|
|
|
{{$.CsrfTokenHtml}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<button type="submit" class="ui basic green button">{{svg "octicon-person"}} {{.locale.Tr "user.follow"}}</button>
|
2020-02-25 20:28:47 +00:00
|
|
|
</form>
|
2015-12-21 12:24:11 +00:00
|
|
|
{{end}}
|
|
|
|
</li>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-05-23 17:55:51 +00:00
|
|
|
<div class="ui twelve wide column">
|
|
|
|
<div class="gt-mb-4 gt-df">
|
2023-05-09 05:57:24 +00:00
|
|
|
{{template "user/overview/header" .}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2016-12-29 14:58:24 +00:00
|
|
|
|
|
|
|
{{if eq .TabName "activity"}}
|
2023-04-20 17:33:30 +00:00
|
|
|
{{if .ContextUser.KeepActivityPrivate}}
|
2020-06-05 20:01:53 +00:00
|
|
|
<div class="ui info message">
|
2022-06-27 20:58:46 +00:00
|
|
|
<p>{{.locale.Tr "user.disabled_public_activity"}}</p>
|
2020-06-05 20:01:53 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-11-18 22:00:16 +00:00
|
|
|
{{template "user/heatmap" .}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="feeds">
|
|
|
|
{{template "user/dashboard/feeds" .}}
|
|
|
|
</div>
|
2016-12-29 14:58:24 +00:00
|
|
|
{{else if eq .TabName "stars"}}
|
|
|
|
<div class="stars">
|
2018-05-24 01:03:42 +00:00
|
|
|
{{template "explore/repo_search" .}}
|
2016-12-29 14:58:24 +00:00
|
|
|
{{template "explore/repo_list" .}}
|
2017-02-07 11:54:16 +00:00
|
|
|
{{template "base/paginate" .}}
|
2016-12-29 14:58:24 +00:00
|
|
|
</div>
|
2020-02-09 20:18:01 +00:00
|
|
|
{{else if eq .TabName "following"}}
|
|
|
|
{{template "repo/user_cards" .}}
|
|
|
|
{{else if eq .TabName "followers"}}
|
|
|
|
{{template "repo/user_cards" .}}
|
2023-05-09 05:57:24 +00:00
|
|
|
{{else if or (eq .TabName "repositories") (not .ProfileReadme)}}
|
2018-05-24 01:03:42 +00:00
|
|
|
{{template "explore/repo_search" .}}
|
2016-12-29 14:58:24 +00:00
|
|
|
{{template "explore/repo_list" .}}
|
|
|
|
{{template "base/paginate" .}}
|
2023-05-09 05:57:24 +00:00
|
|
|
{{else if .ProfileReadme}}
|
|
|
|
<div id="readme_profile" class="render-content markup"> {{$.ProfileReadme|Str2html}} </div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-02 13:47:55 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|