72 lines
2.2 KiB
Go
72 lines
2.2 KiB
Go
// 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 integration // import "miniflux.app/integration"
|
|
|
|
import (
|
|
"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"
|
|
)
|
|
|
|
// SendEntry send the entry to the activated providers.
|
|
func SendEntry(cfg *config.Config, entry *model.Entry, integration *model.Integration) {
|
|
if integration.PinboardEnabled {
|
|
client := pinboard.NewClient(integration.PinboardToken)
|
|
err := client.AddBookmark(
|
|
entry.URL,
|
|
entry.Title,
|
|
integration.PinboardTags,
|
|
integration.PinboardMarkAsUnread,
|
|
)
|
|
|
|
if err != nil {
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
|
}
|
|
}
|
|
|
|
if integration.InstapaperEnabled {
|
|
client := instapaper.NewClient(integration.InstapaperUsername, integration.InstapaperPassword)
|
|
if err := client.AddURL(entry.URL, entry.Title); err != nil {
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
|
}
|
|
}
|
|
|
|
if integration.WallabagEnabled {
|
|
client := wallabag.NewClient(
|
|
integration.WallabagURL,
|
|
integration.WallabagClientID,
|
|
integration.WallabagClientSecret,
|
|
integration.WallabagUsername,
|
|
integration.WallabagPassword,
|
|
)
|
|
|
|
if err := client.AddEntry(entry.URL, entry.Title); err != nil {
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
|
}
|
|
}
|
|
|
|
if integration.NunuxKeeperEnabled {
|
|
client := nunuxkeeper.NewClient(
|
|
integration.NunuxKeeperURL,
|
|
integration.NunuxKeeperAPIKey,
|
|
)
|
|
|
|
if err := client.AddEntry(entry.URL, entry.Title, entry.Content); err != nil {
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
|
}
|
|
}
|
|
|
|
if integration.PocketEnabled {
|
|
client := pocket.NewClient(cfg.PocketConsumerKey(integration.PocketConsumerKey), integration.PocketAccessToken)
|
|
if err := client.AddURL(entry.URL, entry.Title); err != nil {
|
|
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
|
|
}
|
|
}
|
|
}
|