// 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. package ui // import "miniflux.app/ui" import ( "crypto/md5" "fmt" "net/http" "miniflux.app/http/response/html" "miniflux.app/http/request" "miniflux.app/http/route" "miniflux.app/locale" "miniflux.app/ui/form" "miniflux.app/ui/session" ) func (h *handler) updateIntegration(w http.ResponseWriter, r *http.Request) { printer := locale.NewPrinter(request.UserLanguage(r)) sess := session.New(h.store, request.SessionID(r)) user, err := h.store.UserByID(request.UserID(r)) if err != nil { html.ServerError(w, r, err) return } integration, err := h.store.Integration(user.ID) if err != nil { html.ServerError(w, r, err) return } integrationForm := form.NewIntegrationForm(r) integrationForm.Merge(integration) if integration.FeverUsername != "" && h.store.HasDuplicateFeverUsername(user.ID, integration.FeverUsername) { sess.NewFlashErrorMessage(printer.Printf("error.duplicate_fever_username")) html.Redirect(w, r, route.Path(h.router, "integrations")) return } if integration.FeverEnabled { integration.FeverToken = fmt.Sprintf("%x", md5.Sum([]byte(integration.FeverUsername+":"+integration.FeverPassword))) } else { integration.FeverToken = "" } err = h.store.UpdateIntegration(integration) if err != nil { html.ServerError(w, r, err) return } sess.NewFlashMessage(printer.Printf("alert.prefs_saved")) html.Redirect(w, r, route.Path(h.router, "integrations")) }