2009-09-03 19:58:50 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Plugin to push RSS/Atom updates to a PubSubHubBub hub
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Plugin
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
2010-05-27 23:26:47 +01:00
|
|
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
2009-09-03 19:58:50 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-11-11 19:02:57 +00:00
|
|
|
class LilUrlPlugin extends UrlShortenerPlugin
|
2009-09-03 19:58:50 +01:00
|
|
|
{
|
2019-06-03 01:56:52 +01:00
|
|
|
const PLUGIN_VERSION = '2.0.0';
|
|
|
|
|
2009-11-11 19:02:57 +00:00
|
|
|
public $serviceUrl;
|
2009-09-03 19:58:50 +01:00
|
|
|
|
|
|
|
function onInitializePlugin(){
|
2009-11-11 19:02:57 +00:00
|
|
|
parent::onInitializePlugin();
|
|
|
|
if(!isset($this->serviceUrl)){
|
2011-04-24 18:28:26 +01:00
|
|
|
// TRANS: Exception thrown when URL shortening plugin was configured incorrectly.
|
2010-09-20 19:54:30 +01:00
|
|
|
throw new Exception(_m('A serviceUrl must be specified.'));
|
2009-11-11 19:02:57 +00:00
|
|
|
}
|
2009-09-03 19:58:50 +01:00
|
|
|
}
|
|
|
|
|
2009-11-11 19:02:57 +00:00
|
|
|
protected function shorten($url) {
|
|
|
|
$data = array('longurl' => $url);
|
2010-01-08 08:20:38 +00:00
|
|
|
|
2009-11-11 19:02:57 +00:00
|
|
|
$responseBody = $this->http_post($this->serviceUrl,$data);
|
2010-01-08 08:20:38 +00:00
|
|
|
|
2009-11-11 19:02:57 +00:00
|
|
|
if (!$responseBody) return;
|
|
|
|
$y = @simplexml_load_string($responseBody);
|
|
|
|
if (!isset($y->body)) return;
|
2009-09-03 19:58:50 +01:00
|
|
|
$x = $y->body->p[0]->a->attributes();
|
2009-10-28 19:29:20 +00:00
|
|
|
if (isset($x['href'])) {
|
2009-11-30 16:09:30 +00:00
|
|
|
return strval($x['href']);
|
2009-10-28 19:29:20 +00:00
|
|
|
}
|
2009-09-03 19:58:50 +01:00
|
|
|
}
|
2010-01-08 08:20:38 +00:00
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
public function onPluginVersion(array &$versions): bool
|
2010-01-08 08:20:38 +00:00
|
|
|
{
|
|
|
|
$versions[] = array('name' => sprintf('LilUrl (%s)', $this->shortenerName),
|
2019-06-03 01:56:52 +01:00
|
|
|
'version' => self::PLUGIN_VERSION,
|
2010-01-08 08:20:38 +00:00
|
|
|
'author' => 'Craig Andrews',
|
2019-11-21 00:21:22 +00:00
|
|
|
'homepage' => GNUSOCIAL_ENGINE_REPO_URL . 'tree/master/plugins/LilUrl',
|
2010-01-08 08:20:38 +00:00
|
|
|
'rawdescription' =>
|
2011-04-24 18:28:26 +01:00
|
|
|
// TRANS: Plugin description.
|
|
|
|
// TRANS: %1$s is the service URL.
|
2010-01-08 08:20:38 +00:00
|
|
|
sprintf(_m('Uses <a href="http://%1$s/">%1$s</a> URL-shortener service.'),
|
|
|
|
$this->shortenerName));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-09-03 19:58:50 +01:00
|
|
|
}
|