miniflux-v2/storage/integration.go

196 lines
4.9 KiB
Go
Raw Normal View History

2017-12-03 04:32:14 +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 storage // import "miniflux.app/storage"
2017-12-03 04:32:14 +01:00
import (
"database/sql"
"fmt"
2018-08-25 06:51:50 +02:00
"miniflux.app/model"
2017-12-03 04:32:14 +01:00
)
// HasDuplicateFeverUsername checks if another user have the same fever username.
func (s *Storage) HasDuplicateFeverUsername(userID int64, feverUsername string) bool {
2019-10-30 06:48:07 +01:00
query := `SELECT true FROM integrations WHERE user_id != $1 AND fever_username=$2`
var result bool
s.db.QueryRow(query, userID, feverUsername).Scan(&result)
2019-10-30 06:48:07 +01:00
return result
}
2017-12-04 02:44:27 +01:00
// UserByFeverToken returns a user by using the Fever API token.
func (s *Storage) UserByFeverToken(token string) (*model.User, error) {
query := `
SELECT
users.id, users.is_admin, users.timezone
2017-12-04 02:44:27 +01:00
FROM users
LEFT JOIN integrations ON integrations.user_id=users.id
2019-10-30 06:48:07 +01:00
WHERE
integrations.fever_enabled='t' AND lower(integrations.fever_token)=lower($1)
2017-12-04 02:44:27 +01:00
`
var user model.User
err := s.db.QueryRow(query, token).Scan(&user.ID, &user.IsAdmin, &user.Timezone)
switch {
case err == sql.ErrNoRows:
return nil, nil
case err != nil:
return nil, fmt.Errorf("unable to fetch user: %v", err)
2019-10-30 06:48:07 +01:00
default:
return &user, nil
2017-12-04 02:44:27 +01:00
}
}
2017-12-03 04:32:14 +01:00
// Integration returns user integration settings.
func (s *Storage) Integration(userID int64) (*model.Integration, error) {
2019-10-30 06:48:07 +01:00
query := `
SELECT
2017-12-03 04:32:14 +01:00
user_id,
pinboard_enabled,
pinboard_token,
pinboard_tags,
2017-12-03 06:12:03 +01:00
pinboard_mark_as_unread,
instapaper_enabled,
instapaper_username,
2017-12-04 02:44:27 +01:00
instapaper_password,
fever_enabled,
fever_username,
2017-12-19 05:52:46 +01:00
fever_token,
wallabag_enabled,
wallabag_url,
wallabag_client_id,
wallabag_client_secret,
wallabag_username,
2018-02-25 20:49:08 +01:00
wallabag_password,
nunux_keeper_enabled,
nunux_keeper_url,
2018-05-20 22:31:56 +02:00
nunux_keeper_api_key,
pocket_enabled,
pocket_access_token,
pocket_consumer_key
2019-10-30 06:48:07 +01:00
FROM
integrations
WHERE
user_id=$1
2017-12-03 04:32:14 +01:00
`
var integration model.Integration
err := s.db.QueryRow(query, userID).Scan(
&integration.UserID,
&integration.PinboardEnabled,
&integration.PinboardToken,
&integration.PinboardTags,
&integration.PinboardMarkAsUnread,
2017-12-03 06:12:03 +01:00
&integration.InstapaperEnabled,
&integration.InstapaperUsername,
&integration.InstapaperPassword,
2017-12-04 02:44:27 +01:00
&integration.FeverEnabled,
&integration.FeverUsername,
&integration.FeverToken,
2017-12-19 05:52:46 +01:00
&integration.WallabagEnabled,
&integration.WallabagURL,
&integration.WallabagClientID,
&integration.WallabagClientSecret,
&integration.WallabagUsername,
&integration.WallabagPassword,
2018-02-25 20:49:08 +01:00
&integration.NunuxKeeperEnabled,
&integration.NunuxKeeperURL,
&integration.NunuxKeeperAPIKey,
2018-05-20 22:31:56 +02:00
&integration.PocketEnabled,
&integration.PocketAccessToken,
&integration.PocketConsumerKey,
2017-12-03 04:32:14 +01:00
)
switch {
case err == sql.ErrNoRows:
2017-12-16 03:55:57 +01:00
return &integration, nil
2017-12-03 04:32:14 +01:00
case err != nil:
2019-10-30 06:48:07 +01:00
return &integration, fmt.Errorf(`store: unable to fetch integration row: %v`, err)
default:
return &integration, nil
2017-12-03 04:32:14 +01:00
}
}
// UpdateIntegration saves user integration settings.
func (s *Storage) UpdateIntegration(integration *model.Integration) error {
query := `
2019-10-30 06:48:07 +01:00
UPDATE
integrations
SET
2017-12-03 04:32:14 +01:00
pinboard_enabled=$1,
pinboard_token=$2,
pinboard_tags=$3,
2017-12-03 06:12:03 +01:00
pinboard_mark_as_unread=$4,
instapaper_enabled=$5,
instapaper_username=$6,
2017-12-04 02:44:27 +01:00
instapaper_password=$7,
fever_enabled=$8,
fever_username=$9,
fever_token=$10,
wallabag_enabled=$11,
wallabag_url=$12,
wallabag_client_id=$13,
wallabag_client_secret=$14,
wallabag_username=$15,
wallabag_password=$16,
nunux_keeper_enabled=$17,
nunux_keeper_url=$18,
nunux_keeper_api_key=$19,
pocket_enabled=$20,
pocket_access_token=$21,
pocket_consumer_key=$22
2019-10-30 06:48:07 +01:00
WHERE
user_id=$23
2017-12-03 04:32:14 +01:00
`
_, err := s.db.Exec(
query,
integration.PinboardEnabled,
integration.PinboardToken,
integration.PinboardTags,
integration.PinboardMarkAsUnread,
2017-12-03 06:12:03 +01:00
integration.InstapaperEnabled,
integration.InstapaperUsername,
integration.InstapaperPassword,
2017-12-04 02:44:27 +01:00
integration.FeverEnabled,
integration.FeverUsername,
integration.FeverToken,
2017-12-19 05:52:46 +01:00
integration.WallabagEnabled,
integration.WallabagURL,
integration.WallabagClientID,
integration.WallabagClientSecret,
integration.WallabagUsername,
integration.WallabagPassword,
2018-02-25 20:49:08 +01:00
integration.NunuxKeeperEnabled,
integration.NunuxKeeperURL,
integration.NunuxKeeperAPIKey,
2018-05-20 22:31:56 +02:00
integration.PocketEnabled,
integration.PocketAccessToken,
integration.PocketConsumerKey,
2017-12-03 04:32:14 +01:00
integration.UserID,
)
if err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to update integration row: %v`, err)
2017-12-03 04:32:14 +01:00
}
return nil
}
// HasSaveEntry returns true if the given user can save articles to third-parties.
func (s *Storage) HasSaveEntry(userID int64) (result bool) {
query := `
2019-10-30 06:48:07 +01:00
SELECT
true
FROM
integrations
WHERE
user_id=$1
AND
(pinboard_enabled='t' OR instapaper_enabled='t' OR wallabag_enabled='t' OR nunux_keeper_enabled='t' OR pocket_enabled='t')
`
if err := s.db.QueryRow(query, userID).Scan(&result); err != nil {
result = false
}
return result
}