mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
127 lines
3.3 KiB
PHP
127 lines
3.3 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Name: Redmatrix Photo Migrator
|
||
|
* Description: Migrate photo albums from Redmatrix to Hubzilla
|
||
|
* Version: 1.0
|
||
|
* Author: Mike Macgirvin
|
||
|
*/
|
||
|
|
||
|
|
||
|
function redphotos_install() {}
|
||
|
function redphotos_uninstall() {}
|
||
|
function redphotos_module() {}
|
||
|
|
||
|
|
||
|
function redphotos_init(&$a) {
|
||
|
|
||
|
if(! local_channel())
|
||
|
return;
|
||
|
|
||
|
// if(intval(get_pconfig(local_channel(),'redphotos','complete')))
|
||
|
// return;
|
||
|
|
||
|
$channel = $a->get_channel();
|
||
|
|
||
|
$fr_server = $_REQUEST['fr_server'];
|
||
|
$fr_username = $_REQUEST['fr_username'];
|
||
|
$fr_password = $_REQUEST['fr_password'];
|
||
|
$fr_album = $_REQUEST['fr_album'];
|
||
|
|
||
|
$cookies = 'store/[data]/redphoto_cookie_' . $channel['channel_address'];
|
||
|
|
||
|
if($fr_server && $fr_username && $fr_password) {
|
||
|
|
||
|
$ch = curl_init($fr_server . '/api/red/photos' . (($fr_album) ? '&album=' . $fr_album : ''));
|
||
|
|
||
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
||
|
curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookies);
|
||
|
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookies);
|
||
|
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
|
||
|
curl_setopt($ch, CURLOPT_USERPWD, $fr_username . ':' . $fr_password);
|
||
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
||
|
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
||
|
curl_setopt($ch, CURLOPT_USERAGENT, 'RedMatrix');
|
||
|
|
||
|
$output = curl_exec($ch);
|
||
|
curl_close($ch);
|
||
|
|
||
|
$j = json_decode($output,true);
|
||
|
|
||
|
// echo print_r($j,true);
|
||
|
|
||
|
if(! $j['success'])
|
||
|
return;
|
||
|
|
||
|
$total = 0;
|
||
|
$done = 0;
|
||
|
$todo = 0;
|
||
|
$arr_done = array();
|
||
|
|
||
|
if(count($j['photos'])) {
|
||
|
$todo = count($j['photos']);
|
||
|
logger('redphotos: processing: ' . $todo);
|
||
|
|
||
|
foreach($j['photos'] as $jj) {
|
||
|
|
||
|
logger('json data: ' . print_r($jj,true));
|
||
|
|
||
|
if(in_array($jj['resource_id'],$arr_done)) {
|
||
|
$done ++;
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
$r = q("select uid from photo where resource_id = '%s' and uid = %d limit 1",
|
||
|
dbesc($jj['resource_id']),
|
||
|
intval($channel['channel_id'])
|
||
|
);
|
||
|
|
||
|
if($r) {
|
||
|
$done ++;
|
||
|
$arr_done[] = $jj['resource_id'];
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
$total ++;
|
||
|
proc_run('php','addon/redphotos/redphotohelper.php',$jj['resource_id'], $channel['channel_address'], urlencode($fr_server));
|
||
|
sleep(3);
|
||
|
$arr_done[] = $jj['resource_id'];
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
logger('redphotos: already done: ' . $done);
|
||
|
logger('redphotos: done this run: ' . $total);
|
||
|
|
||
|
// set_pconfig(local_channel(),'redphotos','complete','1');
|
||
|
|
||
|
@unlink($cookies);
|
||
|
goaway(z_root() . '/photos/' . $channel['channel_address']);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
function redphotos_content(&$a) {
|
||
|
|
||
|
if(! local_channel()) {
|
||
|
notice( t('Permission denied') . EOL);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// if(intval(get_pconfig(local_channel(),'redphotos','complete'))) {
|
||
|
// info('Redmatrix photos have already been imported into this channel.');
|
||
|
// return;
|
||
|
// }
|
||
|
|
||
|
$o = replace_macros(get_markup_template('redphotos.tpl','addon/redphotos'),array(
|
||
|
'$header' => t('Redmatrix Photo Album Import'),
|
||
|
'$desc' => t('This will import all your Redmatrix photo albums to this channel.'),
|
||
|
'$fr_server' => array('fr_server', t('Redmatrix Server base URL'),'',''),
|
||
|
'$fr_username' => array('fr_username', t('Redmatrix Login Username'),'',''),
|
||
|
'$fr_password' => array('fr_password', t('Redmatrix Login Password'),'',''),
|
||
|
'$fr_album' => array('fr_album', t('Import just this album'),'', t('Leave blank to import all albums')),
|
||
|
'$submit' => t('Submit'),
|
||
|
));
|
||
|
return $o;
|
||
|
}
|