forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.go
49 lines (44 loc) · 1.2 KB
/
users.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package backend
import (
"context"
"fmt"
"net/url"
"strconv"
"github.com/sourcegraph/sourcegraph/cmd/frontend/db"
"github.com/sourcegraph/sourcegraph/internal/actor"
"github.com/sourcegraph/sourcegraph/internal/randstring"
)
func MakeRandomHardToGuessPassword() string {
return randstring.NewLen(36)
}
func MakePasswordResetURL(ctx context.Context, userID int32) (*url.URL, error) {
resetCode, err := db.Users.RenewPasswordResetCode(ctx, userID)
if err != nil {
return nil, err
}
query := url.Values{}
query.Set("userID", strconv.Itoa(int(userID)))
query.Set("code", resetCode)
return &url.URL{Path: "/password-reset", RawQuery: query.Encode()}, nil
}
// CheckActorHasTag reports whether the context actor has the given tag. If not, or if an error
// occurs, a non-nil error is returned.
func CheckActorHasTag(ctx context.Context, tag string) error {
actor := actor.FromContext(ctx)
if !actor.IsAuthenticated() {
return ErrNotAuthenticated
}
user, err := db.Users.GetByID(ctx, actor.UID)
if err != nil {
return err
}
if user == nil {
return ErrNotAuthenticated
}
for _, t := range user.Tags {
if t == tag {
return nil
}
}
return fmt.Errorf("actor lacks required tag %q", tag)
}