2017-12-03 06:12:03 +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.
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
package integration // import "miniflux.app/integration"
|
2017-12-03 06:12:03 +01:00
|
|
|
|
|
|
|
import (
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/config"
|
|
|
|
"miniflux.app/integration/instapaper"
|
|
|
|
"miniflux.app/integration/nunuxkeeper"
|
|
|
|
"miniflux.app/integration/pinboard"
|
|
|
|
"miniflux.app/integration/pocket"
|
|
|
|
"miniflux.app/integration/wallabag"
|
|
|
|
"miniflux.app/logger"
|
|
|
|
"miniflux.app/model"
|
2017-12-03 06:12:03 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// SendEntry send the entry to the activated providers.
|
2019-06-02 03:18:09 +02:00
|
|
|
func SendEntry(entry *model.Entry, integration *model.Integration) {
|
2017-12-03 06:12:03 +01:00
|
|
|
if integration.PinboardEnabled {
|
|
|
|
client := pinboard.NewClient(integration.PinboardToken)
|
2017-12-19 05:52:46 +01:00
|
|
|
err := client.AddBookmark(
|
|
|
|
entry.URL,
|
|
|
|
entry.Title,
|
|
|
|
integration.PinboardTags,
|
|
|
|
integration.PinboardMarkAsUnread,
|
|
|
|
)
|
|
|
|
|
2017-12-03 06:12:03 +01:00
|
|
|
if err != nil {
|
2018-04-30 02:58:09 +02:00
|
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
2017-12-03 06:12:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if integration.InstapaperEnabled {
|
|
|
|
client := instapaper.NewClient(integration.InstapaperUsername, integration.InstapaperPassword)
|
2017-12-19 05:52:46 +01:00
|
|
|
if err := client.AddURL(entry.URL, entry.Title); err != nil {
|
2018-04-30 02:58:09 +02:00
|
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
2017-12-19 05:52:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if integration.WallabagEnabled {
|
|
|
|
client := wallabag.NewClient(
|
|
|
|
integration.WallabagURL,
|
|
|
|
integration.WallabagClientID,
|
|
|
|
integration.WallabagClientSecret,
|
|
|
|
integration.WallabagUsername,
|
|
|
|
integration.WallabagPassword,
|
|
|
|
)
|
|
|
|
|
2021-02-21 08:34:07 +01:00
|
|
|
if err := client.AddEntry(entry.URL, entry.Title, entry.Content); err != nil {
|
2018-04-30 02:58:09 +02:00
|
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
2017-12-03 06:12:03 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-25 20:49:08 +01:00
|
|
|
|
|
|
|
if integration.NunuxKeeperEnabled {
|
|
|
|
client := nunuxkeeper.NewClient(
|
|
|
|
integration.NunuxKeeperURL,
|
|
|
|
integration.NunuxKeeperAPIKey,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err := client.AddEntry(entry.URL, entry.Title, entry.Content); err != nil {
|
2018-04-30 02:58:09 +02:00
|
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
2018-02-25 20:49:08 +01:00
|
|
|
}
|
|
|
|
}
|
2018-05-20 22:31:56 +02:00
|
|
|
|
|
|
|
if integration.PocketEnabled {
|
2019-06-02 03:18:09 +02:00
|
|
|
client := pocket.NewClient(config.Opts.PocketConsumerKey(integration.PocketConsumerKey), integration.PocketAccessToken)
|
2018-05-20 22:31:56 +02:00
|
|
|
if err := client.AddURL(entry.URL, entry.Title); err != nil {
|
|
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
|
|
|
}
|
|
|
|
}
|
2017-12-03 06:12:03 +01:00
|
|
|
}
|