miniflux-legacy/models/service.php

80 lines
1.7 KiB
PHP
Raw Normal View History

2014-12-24 16:47:24 +01:00
<?php
namespace Model\Service;
use Model\Config;
use Model\Item;
use PicoFeed\Client\Client;
use PicoFeed\Client\ClientException;
// Sync the item to an external service
function push($item_id)
{
2014-12-24 19:50:20 +01:00
$item = Item\get($item_id);
2014-12-24 16:47:24 +01:00
if ((bool) Config\get('pinboard_enabled')) {
2014-12-24 19:50:20 +01:00
pinboard_add($item);
}
if ((bool) Config\get('instapaper_enabled')) {
instapaper_add($item);
}
}
// Send item to Instapaper
function instapaper_add(array $item)
{
$params = array(
'username' => Config\get('instapaper_username'),
'password' => Config\get('instapaper_password'),
'url' => $item['url'],
'title' => $item['title'],
);
$url = 'https://www.instapaper.com/api/add?'.http_build_query($params);
$client = api_call($url);
if ($client !== false) {
return $client->getStatusCode() === 201;
2014-12-24 16:47:24 +01:00
}
2014-12-24 19:50:20 +01:00
return false;
2014-12-24 16:47:24 +01:00
}
// Add a Pinboard bookmark
function pinboard_add(array $item)
{
2014-12-24 19:50:20 +01:00
$params = array(
'auth_token' => Config\get('pinboard_token'),
'format' => 'json',
2014-12-24 16:47:24 +01:00
'url' => $item['url'],
'description' => $item['title'],
'tags' => Config\get('pinboard_tags'),
2014-12-24 19:50:20 +01:00
);
$url = 'https://api.pinboard.in/v1/posts/add?'.http_build_query($params);
$client = api_call($url);
if ($client !== false) {
$response = json_decode($client->getContent(), true);
return is_array($response) && $response['result_code'] === 'done';
}
return false;
2014-12-24 16:47:24 +01:00
}
2014-12-24 19:50:20 +01:00
// HTTP client
function api_call($url)
2014-12-24 16:47:24 +01:00
{
try {
$client = Client::getInstance();
$client->setUserAgent(Config\HTTP_USER_AGENT);
$client->execute($url);
2014-12-24 19:50:20 +01:00
return $client;
2016-04-18 01:44:45 +02:00
} catch (ClientException $e) {
2014-12-24 16:47:24 +01:00
return false;
}
}