Noah Petherbridge
2a8a1df6ab
* Initial codebase (lot of work!) * Uses vanilla Go net/http and implements by hand: session cookies backed by Redis; log in/out; CSRF protection; email verification flow; initial database models (User table)
20 lines
396 B
Go
20 lines
396 B
Go
package session
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"git.kirsle.net/apps/gosocial/pkg/models"
|
|
)
|
|
|
|
// CurrentUser returns the current logged in user via session cookie.
|
|
func CurrentUser(r *http.Request) (*models.User, error) {
|
|
sess := Get(r)
|
|
if sess.LoggedIn {
|
|
// Load the associated user ID.
|
|
return models.GetUser(sess.UserID)
|
|
}
|
|
|
|
return nil, errors.New("request session is not logged in")
|
|
}
|