2017-11-22 04:37:47 +01:00
|
|
|
// Copyright 2017 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 controller
|
|
|
|
|
2017-12-03 04:32:14 +01:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
2017-12-03 06:12:03 +01:00
|
|
|
"github.com/miniflux/miniflux2/integration"
|
2017-12-03 04:32:14 +01:00
|
|
|
"github.com/miniflux/miniflux2/model"
|
|
|
|
"github.com/miniflux/miniflux2/server/core"
|
|
|
|
"github.com/miniflux/miniflux2/server/ui/form"
|
|
|
|
)
|
2017-11-22 04:37:47 +01:00
|
|
|
|
|
|
|
// ShowIntegrations renders the page with all external integrations.
|
|
|
|
func (c *Controller) ShowIntegrations(ctx *core.Context, request *core.Request, response *core.Response) {
|
2017-12-03 04:32:14 +01:00
|
|
|
user := ctx.LoggedUser()
|
|
|
|
integration, err := c.store.Integration(user.ID)
|
|
|
|
if err != nil {
|
|
|
|
response.HTML().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-11-22 04:37:47 +01:00
|
|
|
args, err := c.getCommonTemplateArgs(ctx)
|
|
|
|
if err != nil {
|
|
|
|
response.HTML().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
response.HTML().Render("integrations", args.Merge(tplParams{
|
|
|
|
"menu": "settings",
|
2017-12-03 04:32:14 +01:00
|
|
|
"form": form.IntegrationForm{
|
|
|
|
PinboardEnabled: integration.PinboardEnabled,
|
|
|
|
PinboardToken: integration.PinboardToken,
|
|
|
|
PinboardTags: integration.PinboardTags,
|
|
|
|
PinboardMarkAsUnread: integration.PinboardMarkAsUnread,
|
2017-12-03 06:12:03 +01:00
|
|
|
InstapaperEnabled: integration.InstapaperEnabled,
|
|
|
|
InstapaperUsername: integration.InstapaperUsername,
|
|
|
|
InstapaperPassword: integration.InstapaperPassword,
|
2017-12-03 04:32:14 +01:00
|
|
|
},
|
2017-11-22 04:37:47 +01:00
|
|
|
}))
|
|
|
|
}
|
2017-12-03 04:32:14 +01:00
|
|
|
|
|
|
|
// UpdateIntegration updates integration settings.
|
|
|
|
func (c *Controller) UpdateIntegration(ctx *core.Context, request *core.Request, response *core.Response) {
|
|
|
|
user := ctx.LoggedUser()
|
|
|
|
integration, err := c.store.Integration(user.ID)
|
|
|
|
if err != nil {
|
|
|
|
response.HTML().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
integrationForm := form.NewIntegrationForm(request.Request())
|
|
|
|
integrationForm.Merge(integration)
|
|
|
|
|
|
|
|
err = c.store.UpdateIntegration(integration)
|
|
|
|
if err != nil {
|
|
|
|
response.HTML().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
response.Redirect(ctx.Route("integrations"))
|
|
|
|
}
|
|
|
|
|
|
|
|
// SaveEntry send the link to external services.
|
|
|
|
func (c *Controller) SaveEntry(ctx *core.Context, request *core.Request, response *core.Response) {
|
|
|
|
entryID, err := request.IntegerParam("entryID")
|
|
|
|
if err != nil {
|
|
|
|
response.HTML().BadRequest(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
user := ctx.LoggedUser()
|
|
|
|
builder := c.store.GetEntryQueryBuilder(user.ID, user.Timezone)
|
|
|
|
builder.WithEntryID(entryID)
|
|
|
|
builder.WithoutStatus(model.EntryStatusRemoved)
|
|
|
|
|
|
|
|
entry, err := builder.GetEntry()
|
|
|
|
if err != nil {
|
|
|
|
response.JSON().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if entry == nil {
|
|
|
|
response.JSON().NotFound(errors.New("Entry not found"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-12-03 06:12:03 +01:00
|
|
|
settings, err := c.store.Integration(user.ID)
|
2017-12-03 04:32:14 +01:00
|
|
|
if err != nil {
|
|
|
|
response.JSON().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
2017-12-03 06:12:03 +01:00
|
|
|
integration.SendEntry(entry, settings)
|
2017-12-03 04:32:14 +01:00
|
|
|
}()
|
|
|
|
|
|
|
|
response.JSON().Created(map[string]string{"message": "saved"})
|
|
|
|
}
|