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-10-08 03:42:43 +02:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/md5"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/http/response/html"
|
2018-10-08 03:42:43 +02:00
|
|
|
"miniflux.app/http/request"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/http/route"
|
2018-09-23 00:04:55 +02:00
|
|
|
"miniflux.app/locale"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/ui/form"
|
|
|
|
"miniflux.app/ui/session"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// UpdateIntegration updates integration settings.
|
|
|
|
func (c *Controller) UpdateIntegration(w http.ResponseWriter, r *http.Request) {
|
2018-09-23 00:04:55 +02:00
|
|
|
printer := locale.NewPrinter(request.UserLanguage(r))
|
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 {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
integration, err := c.store.Integration(user.ID)
|
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
integrationForm := form.NewIntegrationForm(r)
|
|
|
|
integrationForm.Merge(integration)
|
|
|
|
|
|
|
|
if integration.FeverUsername != "" && c.store.HasDuplicateFeverUsername(user.ID, integration.FeverUsername) {
|
2018-09-23 00:04:55 +02:00
|
|
|
sess.NewFlashErrorMessage(printer.Printf("error.duplicate_fever_username"))
|
2018-10-08 03:42:43 +02:00
|
|
|
html.Redirect(w, r, route.Path(c.router, "integrations"))
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if integration.FeverEnabled {
|
|
|
|
integration.FeverToken = fmt.Sprintf("%x", md5.Sum([]byte(integration.FeverUsername+":"+integration.FeverPassword)))
|
|
|
|
} else {
|
|
|
|
integration.FeverToken = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
err = c.store.UpdateIntegration(integration)
|
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-23 00:04:55 +02:00
|
|
|
sess.NewFlashMessage(printer.Printf("alert.prefs_saved"))
|
2018-10-08 03:42:43 +02:00
|
|
|
html.Redirect(w, r, route.Path(c.router, "integrations"))
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|