2018-04-30 01:35:04 +02:00
|
|
|
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/http/cookie"
|
2018-09-03 23:26:40 +02:00
|
|
|
"miniflux.app/http/request"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/http/response"
|
|
|
|
"miniflux.app/http/response/html"
|
|
|
|
"miniflux.app/http/route"
|
|
|
|
"miniflux.app/logger"
|
|
|
|
"miniflux.app/ui/session"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Logout destroy the session and redirects the user to the login page.
|
|
|
|
func (c *Controller) Logout(w http.ResponseWriter, r *http.Request) {
|
2018-09-03 23:26:40 +02:00
|
|
|
sess := session.New(c.store, request.SessionID(r))
|
|
|
|
user, err := c.store.UserByID(request.UserID(r))
|
2018-04-30 01:35:04 +02:00
|
|
|
if err != nil {
|
|
|
|
html.ServerError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
sess.SetLanguage(user.Language)
|
2018-07-19 07:30:05 +02:00
|
|
|
sess.SetTheme(user.Theme)
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2018-09-03 23:26:40 +02:00
|
|
|
if err := c.store.RemoveUserSessionByToken(user.ID, request.UserSessionToken(r)); err != nil {
|
2018-04-30 01:35:04 +02:00
|
|
|
logger.Error("[Controller:Logout] %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
http.SetCookie(w, cookie.Expired(
|
|
|
|
cookie.CookieUserSessionID,
|
|
|
|
c.cfg.IsHTTPS,
|
|
|
|
c.cfg.BasePath(),
|
|
|
|
))
|
|
|
|
|
|
|
|
response.Redirect(w, r, route.Path(c.router, "login"))
|
|
|
|
}
|