This repository has been archived by the owner on Oct 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
user.go
120 lines (97 loc) · 2.84 KB
/
user.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// Package pydio contains all objects needed by the Pydio system
/*
* Copyright 2007-2016 Abstrium <contact (at) pydio.com>
* This file is part of Pydio.
*
* Pydio is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com/>.
*/
package pydio
import (
"encoding/json"
"errors"
"time"
"github.com/dgrijalva/jwt-go"
)
// User format definition
type User struct {
ID string `xml:"id,attr" json:"id"`
GroupPath string `xml:"groupPath,attr" json:"grp"`
Repos []Repo `xml:"repositories>repo" json:"rep"`
}
// NewUser object with pipewriting
func NewUser() *User {
return &User{}
}
// NewUserFromJWT creates a user based on a JWT token string
func NewUserFromJWT(token string, signatureSecret string) (*User, error) {
decryptedToken, err := jwt.Parse(token, func(token *jwt.Token) (interface{}, error) {
return []byte(signatureSecret), nil
})
if err != nil {
return nil, err
}
if !decryptedToken.Valid {
return nil, errors.New("Token has been tampered with")
}
claim := decryptedToken.Claims["user"]
claimStr, ok := claim.(string)
if !ok {
return nil, errors.New("User format is not valid")
}
userStr, err := jwt.DecodeSegment(claimStr)
if err != nil {
return nil, err
}
var user User
err = json.Unmarshal([]byte(userStr), &user)
if err != nil {
return nil, err
}
return &user, nil
}
// GetRepo via its ID
func (u *User) GetRepo(id string) *Repo {
for _, repo := range u.Repos {
if repo.ID == id {
return &repo
}
}
return nil
}
// JWT representation of the User
func (u *User) JWT(signatureSecret string, hoursBeforeExpiry int) (string, error) {
payload, err := json.Marshal(u)
if err != nil {
return "", err
}
// Create the token
token := jwt.New(jwt.SigningMethodHS256)
// Set some claims
token.Claims["user"] = payload
token.Claims["exp"] = time.Now().Add(time.Hour * time.Duration(hoursBeforeExpiry)).Unix()
// Sign and get the complete encoded token as a string
tokenString, err := token.SignedString([]byte(signatureSecret))
if err != nil {
return "", err
}
return tokenString, nil
}
// Read the node by encoding to its json representation
func (u *User) Read(p []byte) (int, error) {
data, err := json.Marshal(u)
numBytes := copy(p, data)
return numBytes, err
}