forked from JustaPenguin/assetto-server-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
accounts.go
787 lines (601 loc) · 19.7 KB
/
accounts.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
package servermanager
import (
"context"
"crypto/rand"
"crypto/subtle"
"encoding/gob"
"encoding/hex"
"errors"
"fmt"
"io"
"net/http"
"strings"
"time"
"github.com/Masterminds/semver"
"github.com/cj123/sessions"
"github.com/go-chi/chi"
"github.com/google/uuid"
"github.com/sethvargo/go-diceware/diceware"
"github.com/sirupsen/logrus"
"golang.org/x/crypto/scrypt"
)
const (
sessionAccountID = "account_id"
requestContextKeyAccount accountContextKey = iota
adminUserName = "admin"
serverAccountOptionsMetaKey = "server-account-options"
defaultHostedAdminAccountName = "acserver"
)
type accountContextKey int
type ServerAccountOptions struct {
IsOpen bool
}
var accountOptions = &ServerAccountOptions{
IsOpen: false,
}
func init() {
// Register the Account struct with gob so that it can be stored in a session
gob.Register(Account{})
}
func NewAccount() *Account {
return &Account{
ID: uuid.New(),
Created: time.Now(),
LastSeenVersion: BuildVersion,
Theme: ThemeDefault,
Groups: map[ServerID]Group{serverID: GroupRead},
}
}
type Account struct {
ID uuid.UUID
Created time.Time
Updated time.Time
Deleted time.Time
Name string
Groups map[ServerID]Group
DriverName, GUID, Team string
PasswordHash string
PasswordSalt string
DefaultPassword string
LastSeenVersion string
HasSeenIntroPopup bool
Theme Theme
// Deprecated: Use Groups instead.
DeprecatedGroup Group `json:"Group"`
}
func (a Account) Group() Group {
if a.Groups == nil {
return GroupNoAccess
}
if group, ok := a.Groups[serverID]; ok {
return group
}
// in the case where a user has not got any group permissions at all for this server instance
// give them the first permission we find from other server instances (if any)
for _, group := range a.Groups {
return group
}
return GroupNoAccess
}
func (a Account) ShowDarkTheme(serverManagerDarkThemeEnabled bool) bool {
if (a.Theme == "" || a.Theme == ThemeDefault) && serverManagerDarkThemeEnabled {
return true
}
return a.Theme == ThemeDark
}
func (a Account) HasSeenCurrentVersion() bool {
return a.HasSeenVersion(BuildVersion)
}
func (a Account) ShouldSeeUpgradePopup() bool {
return !a.HasSeenCurrentVersion() && !a.ShouldSeeIntroPopup() && !a.NeedsPasswordReset()
}
func (a Account) ShouldSeeIntroPopup() bool {
return IsHosted && !a.HasSeenIntroPopup && !a.NeedsPasswordReset() && a.IsDefaultHostedAccount()
}
func (a Account) IsDefaultHostedAccount() bool {
return a.Name == defaultHostedAdminAccountName
}
func (a Account) HasSeenVersion(version string) bool {
if a.Name == OpenAccount.Name {
return true // open accounts don't see version releases
}
newVersion, err := semver.NewVersion(version)
if err != nil {
return true
}
currentVersion, err := semver.NewVersion(a.LastSeenVersion)
if err != nil {
return true
}
return newVersion.Equal(currentVersion) || newVersion.LessThan(currentVersion)
}
func (a Account) NeedsPasswordReset() bool {
return a.DefaultPassword != "" || (a.Name == adminUserName && config.Accounts.AdminPasswordOverride != "")
}
func (a Account) HasGroupPrivilege(g Group) bool {
userGroup := a.Group()
if g == userGroup {
return true
}
if userGroup == GroupAdmin {
return true
}
if g == GroupWrite && userGroup == GroupDelete {
return true
}
if g == GroupRead && (userGroup == GroupWrite || userGroup == GroupDelete) {
return true
}
return false
}
type Group string
const (
GroupNoAccess Group = "no_access"
GroupRead Group = "read"
GroupWrite Group = "write"
GroupDelete Group = "delete"
GroupAdmin Group = "admin"
)
var OpenAccount *Account
// MustLoginMiddleware determines whether an account needs to log in to access a given Group page
func (ah *AccountHandler) MustLoginMiddleware(requiredGroup Group, next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
sess := getSession(r)
accountID, ok := sess.Values[sessionAccountID].(string)
if ok {
account, err := ah.store.FindAccountByID(accountID)
if err != nil {
logrus.WithError(err).Errorf("Could not find account for id: %s", accountID)
delete(sess.Values, sessionAccountID)
_ = sessions.Save(r, w)
AddFlash(w, r, "You have been logged out")
http.Redirect(w, r, "/", http.StatusFound)
return
}
if !account.HasGroupPrivilege(requiredGroup) {
if account.Group() == GroupNoAccess {
AddErrorFlash(w, r, "You do not have permission to access this Server Manager instance.")
http.Redirect(w, r, "/login", http.StatusFound)
return
}
AddErrorFlash(w, r, "You do not have permission to view this page.")
http.Redirect(w, r, "/", http.StatusFound)
return
}
next.ServeHTTP(w, r.WithContext(context.WithValue(r.Context(), requestContextKeyAccount, account)))
return
}
if requiredGroup == GroupRead && accountOptions.IsOpen {
// if read is open, allow access and use a dummy account so the UI doesn't break
next.ServeHTTP(w, r.WithContext(context.WithValue(r.Context(), requestContextKeyAccount, OpenAccount)))
return
}
if !ok {
AddErrorFlash(w, r, "You do not have permission to view this page. Please login first.")
http.Redirect(w, r, "/login", http.StatusFound)
return
}
})
}
func (ah *AccountHandler) ReadAccessMiddleware(next http.Handler) http.Handler {
return ah.MustLoginMiddleware(GroupRead, next)
}
func (ah *AccountHandler) WriteAccessMiddleware(next http.Handler) http.Handler {
return ah.MustLoginMiddleware(GroupWrite, next)
}
func (ah *AccountHandler) DeleteAccessMiddleware(next http.Handler) http.Handler {
return ah.MustLoginMiddleware(GroupDelete, next)
}
func (ah *AccountHandler) AdminAccessMiddleware(next http.Handler) http.Handler {
return ah.MustLoginMiddleware(GroupAdmin, next)
}
func (ah *AccountHandler) dismissChangelog(w http.ResponseWriter, r *http.Request) {
account := AccountFromRequest(r)
if account.Name == OpenAccount.Name {
// don't save the open account
return
}
err := ah.accountManager.SetCurrentVersion(account)
if err != nil {
logrus.WithError(err).Error("could not save current account version")
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
}
func (ah *AccountHandler) dismissIntro(w http.ResponseWriter, r *http.Request) {
account := AccountFromRequest(r)
account.HasSeenIntroPopup = true
err := ah.accountManager.store.UpsertAccount(account)
if err != nil {
logrus.WithError(err).Error("could not save current account (dismiss intro)")
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
}
func AccountFromRequest(r *http.Request) *Account {
u, ok := r.Context().Value(requestContextKeyAccount).(*Account)
if !ok {
return &Account{}
}
return u
}
func ReadAccess(r *http.Request) func() bool {
ok := AccountFromRequest(r).HasGroupPrivilege(GroupRead)
return func() bool {
return ok
}
}
func LoggedIn(r *http.Request) func() bool {
account := AccountFromRequest(r)
ok := account.Name != "" && account != OpenAccount
return func() bool {
return ok
}
}
func WriteAccess(r *http.Request) func() bool {
ok := AccountFromRequest(r).HasGroupPrivilege(GroupWrite)
return func() bool {
return ok
}
}
func DeleteAccess(r *http.Request) func() bool {
ok := AccountFromRequest(r).HasGroupPrivilege(GroupDelete)
return func() bool {
return ok
}
}
func AdminAccess(r *http.Request) func() bool {
ok := AccountFromRequest(r).HasGroupPrivilege(GroupAdmin)
return func() bool {
return ok
}
}
type AccountHandler struct {
*BaseHandler
SteamLoginHandler
store Store
accountManager *AccountManager
}
func NewAccountHandler(baseHandler *BaseHandler, store Store, accountManager *AccountManager) *AccountHandler {
return &AccountHandler{
BaseHandler: baseHandler,
store: store,
accountManager: accountManager,
}
}
func (ah *AccountHandler) login(w http.ResponseWriter, r *http.Request) {
if r.Method == http.MethodPost {
err := ah.accountManager.login(r, w)
switch {
case err == ErrInvalidUsernameOrPassword:
AddErrorFlash(w, r, "Invalid username or password. Check your details and try again.")
case err == ErrAccountNeedsPassword:
AddFlash(w, r, "Thanks for logging in. We need you to set up a permanent password for your account.")
http.Redirect(w, r, "/accounts/new-password", http.StatusFound)
return
case err != nil:
logrus.WithError(err).Errorf("Couldn't log in account")
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
default: // err == nil, successful auth
AddFlash(w, r, "Thanks for logging in!")
http.Redirect(w, r, "/", http.StatusFound)
return
}
}
ah.viewRenderer.MustLoadTemplate(w, r, "accounts/login.html", nil)
}
func (ah *AccountHandler) toggleServerOpenStatus(w http.ResponseWriter, r *http.Request) {
err := ah.store.GetMeta(serverAccountOptionsMetaKey, &accountOptions)
if err != nil && err != ErrValueNotSet {
logrus.WithError(err).Errorf("Could not determine server open status")
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
accountOptions.IsOpen = !accountOptions.IsOpen
err = ah.store.SetMeta(serverAccountOptionsMetaKey, accountOptions)
if err != nil {
logrus.WithError(err).Errorf("Could not save server open status")
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
AddFlash(w, r, "Server openness successfully changed")
http.Redirect(w, r, r.Referer(), http.StatusFound)
}
type newPasswordTemplateVars struct {
BaseTemplateVars
NewAccount bool
}
func (ah *AccountHandler) newPassword(w http.ResponseWriter, r *http.Request) {
account := AccountFromRequest(r)
if r.Method == http.MethodPost {
set := true
password, repeatPassword, currentPassword := r.FormValue("Password"), r.FormValue("RepeatPassword"), r.FormValue("CurrentPassword")
if !account.NeedsPasswordReset() {
currentPasswordHash, err := hashPassword([]byte(currentPassword), []byte(account.PasswordSalt))
if err != nil {
AddErrorFlash(w, r, "Unable to change your password")
set = false
}
if !(subtle.ConstantTimeCompare([]byte(currentPasswordHash), []byte(account.PasswordHash)) == 1) {
AddErrorFlash(w, r, "Unable to change your password")
set = false
}
}
if set {
if password == repeatPassword {
updateDetails := account.NeedsPasswordReset()
err := ah.accountManager.ChangePassword(account, password)
if err == nil {
AddFlash(w, r, "Your password was successfully changed!")
if updateDetails {
http.Redirect(w, r, "/accounts/update", http.StatusFound)
} else {
http.Redirect(w, r, "/", http.StatusFound)
}
return
}
AddErrorFlash(w, r, "Unable to change your password")
logrus.WithError(err).Errorf("Could not change password for account id: %s", account.ID.String())
} else {
AddErrorFlash(w, r, "Your passwords must match")
}
}
}
ah.viewRenderer.MustLoadTemplate(w, r, "accounts/new-password.html", &newPasswordTemplateVars{
NewAccount: account.NeedsPasswordReset(),
})
}
type updateAccountTemplateVars struct {
BaseTemplateVars
Account *Account
ThemeOptions []ThemeDetails
SteamGUIDOverride string
}
func (ah *AccountHandler) update(w http.ResponseWriter, r *http.Request) {
account := AccountFromRequest(r)
if r.Method == http.MethodPost {
driverName, guid, team := r.FormValue("DriverName"), r.FormValue("DriverGUID"), r.FormValue("DriverTeam")
theme := r.FormValue("Theme")
if driverName != "" || guid != "" || team != "" || theme != "" {
err := ah.accountManager.updateDetails(account, driverName, guid, team, theme)
if err != nil {
AddErrorFlash(w, r, "Unable to update account details")
logrus.WithError(err).Errorf("Could not update details for account id: %s", account.ID.String())
} else {
if account.GUID != "" {
err := ah.store.UpsertEntrant(Entrant{
Name: account.DriverName,
GUID: account.GUID,
Team: account.Team,
})
if err != nil {
logrus.WithError(err).Errorf("Successfully updated details, but could not add to autofill entry list. Account id: %s", account.ID.String())
}
}
AddFlash(w, r, "Your details were successfully changed!")
http.Redirect(w, r, "/", http.StatusFound)
return
}
}
}
ah.viewRenderer.MustLoadTemplate(w, r, "accounts/update.html", &updateAccountTemplateVars{
Account: account,
ThemeOptions: ThemeOptions,
SteamGUIDOverride: r.URL.Query().Get("steamGUID"),
})
}
func (ah *AccountHandler) deleteAccount(w http.ResponseWriter, r *http.Request) {
requestAccount := AccountFromRequest(r)
accountID := chi.URLParam(r, "id")
if requestAccount.ID.String() == accountID {
AddErrorFlash(w, r, "You can't delete your own account!")
http.Redirect(w, r, r.Referer(), http.StatusFound)
return
}
if err := ah.store.DeleteAccount(accountID); err != nil {
logrus.WithError(err).Errorf("Could not delete account")
AddErrorFlash(w, r, "Could not delete account")
} else {
AddFlash(w, r, "Account successfully deleted")
}
http.Redirect(w, r, r.Referer(), http.StatusFound)
}
func (ah *AccountHandler) resetPassword(w http.ResponseWriter, r *http.Request) {
accountID := chi.URLParam(r, "id")
account, err := ah.accountManager.resetPassword(accountID)
if err != nil {
AddErrorFlash(w, r, "Unable to reset account password")
logrus.WithError(err).Errorf("Could not reset password for account id: %s", accountID)
} else {
AddFlash(w, r, fmt.Sprintf("We have autogenerated a new password for %s, it is: %s", account.Name, account.DefaultPassword))
}
http.Redirect(w, r, r.Referer(), http.StatusFound)
}
var ErrAccountNeedsPassword = errors.New("servermanager: account needs to set a password")
var ErrInvalidUsernameOrPassword = errors.New("servermanager: invalid username or password")
type AccountManager struct {
store Store
}
func NewAccountManager(store Store) *AccountManager {
return &AccountManager{
store: store,
}
}
func (am *AccountManager) login(r *http.Request, w http.ResponseWriter) error {
if err := r.ParseForm(); err != nil {
return err
}
username, password := r.FormValue("Username"), r.FormValue("Password")
accounts, err := am.store.ListAccounts()
if err != nil {
return err
}
for _, account := range accounts {
if username == account.Name {
if (account.NeedsPasswordReset() && password == account.DefaultPassword && account.DefaultPassword != "") ||
(account.Name == adminUserName && config.Accounts.AdminPasswordOverride != "" && password == config.Accounts.AdminPasswordOverride) {
// first log in of the account, direct them to a reset password form
sess := getSession(r)
sess.Values[sessionAccountID] = account.ID.String()
err := sess.Save(r, w)
if err != nil {
return err
}
return ErrAccountNeedsPassword
}
passwordHash, err := hashPassword([]byte(password), []byte(account.PasswordSalt))
if err != nil {
return err
}
if subtle.ConstantTimeCompare([]byte(account.PasswordHash), []byte(passwordHash)) == 1 {
sess := getSession(r)
sess.Values[sessionAccountID] = account.ID.String()
return sess.Save(r, w)
}
break
}
}
return ErrInvalidUsernameOrPassword
}
func (am *AccountManager) resetPassword(accountID string) (*Account, error) {
account, err := am.store.FindAccountByID(accountID)
if err != nil {
return nil, err
}
defaultPass, err := diceware.Generate(4)
if err != nil {
return nil, err
}
account.DefaultPassword = strings.Join(defaultPass, "-")
account.PasswordSalt = ""
account.PasswordHash = ""
return account, am.store.UpsertAccount(account)
}
func (am *AccountManager) SetCurrentVersion(account *Account) error {
account.LastSeenVersion = BuildVersion
return am.store.UpsertAccount(account)
}
func (am *AccountManager) ChangePassword(account *Account, password string) error {
salt, err := generateSalt()
if err != nil {
return err
}
pass, err := hashPassword([]byte(password), []byte(salt))
if err != nil {
return err
}
account.DefaultPassword = ""
account.PasswordSalt = salt
account.PasswordHash = pass
return am.store.UpsertAccount(account)
}
func (am *AccountManager) updateDetails(account *Account, name, guid, team, theme string) error {
account.DriverName = name
account.GUID = guid
account.Team = team
account.Theme = Theme(theme)
return am.store.UpsertAccount(account)
}
func (ah *AccountHandler) logout(w http.ResponseWriter, r *http.Request) {
sess := getSession(r)
delete(sess.Values, sessionAccountID)
_ = sess.Save(r, w)
http.Redirect(w, r, "/", http.StatusFound)
}
type createAccountTemplateVars struct {
BaseTemplateVars
Account *Account
IsEditing bool
}
func (ah *AccountHandler) createOrEditAccount(w http.ResponseWriter, r *http.Request) {
var account *Account
isEditing := false
if id := chi.URLParam(r, "id"); id != "" {
var err error
account, err = ah.store.FindAccountByID(id)
if err != nil {
logrus.WithError(err).Errorf("Could not find account for id: %s", id)
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
isEditing = true
} else {
defaultPass, err := diceware.Generate(4)
if err != nil {
logrus.WithError(err).Errorf("Could not generate password")
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
account = NewAccount()
account.DefaultPassword = strings.Join(defaultPass, "-")
}
if r.Method == http.MethodPost {
username := r.FormValue("Username")
group := Group(r.FormValue("Group"))
if isEditing && IsHosted && account.Name == defaultHostedAdminAccountName {
group = GroupAdmin
}
if !isEditing {
// creating new account
account = NewAccount()
account.DefaultPassword = r.FormValue("DefaultPassword")
}
account.Name = username
account.Groups[serverID] = group
if formValueAsInt(r.FormValue("UpdateGroupForAllServers")) == 1 {
for serverID := range account.Groups {
account.Groups[serverID] = group
}
}
err := ah.store.UpsertAccount(account)
if err != nil {
logrus.WithError(err).Errorf("Couldn't save account with id: %s", account.ID)
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
if isEditing {
AddFlash(w, r, "Account successfully edited")
} else {
AddFlash(w, r, "Account successfully created")
}
http.Redirect(w, r, "/accounts", http.StatusFound)
return
}
ah.viewRenderer.MustLoadTemplate(w, r, "accounts/new.html", &createAccountTemplateVars{
Account: account,
IsEditing: isEditing,
})
}
type manageAccountsTemplateVars struct {
BaseTemplateVars
Accounts []*Account
ServerReadIsOpen bool
}
func (ah *AccountHandler) manageAccounts(w http.ResponseWriter, r *http.Request) {
accounts, err := ah.store.ListAccounts()
if err != nil {
logrus.WithError(err).Errorf("Could not list accounts")
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
ah.viewRenderer.MustLoadTemplate(w, r, "accounts/manage.html", &manageAccountsTemplateVars{
Accounts: accounts,
ServerReadIsOpen: accountOptions.IsOpen,
})
}
func hashPassword(password, salt []byte) (string, error) {
pass, err := scrypt.Key(password, salt, 16384, 8, 1, 64)
if err != nil {
return "", err
}
return hex.EncodeToString(pass), nil
}
func generateSalt() (string, error) {
salt := make([]byte, 32)
_, err := io.ReadFull(rand.Reader, salt)
if err != nil {
return "", err
}
return hex.EncodeToString(salt), err
}