2015-08-23 22:38:18 +02:00
|
|
|
<?php /** @file */
|
|
|
|
|
|
|
|
|
|
|
|
function locs_post(&$a) {
|
|
|
|
|
|
|
|
if(! local_channel())
|
|
|
|
return;
|
|
|
|
|
2016-04-17 16:29:18 +02:00
|
|
|
$channel = App::get_channel();
|
2015-08-23 22:38:18 +02:00
|
|
|
|
|
|
|
if($_REQUEST['primary']) {
|
|
|
|
$hubloc_id = intval($_REQUEST['primary']);
|
|
|
|
if($hubloc_id) {
|
|
|
|
|
|
|
|
$r = q("select hubloc_id from hubloc where hubloc_id = %d and hubloc_hash = '%s' limit 1",
|
|
|
|
intval($hubloc_id),
|
|
|
|
dbesc($channel['channel_hash'])
|
|
|
|
);
|
|
|
|
|
|
|
|
if(! $r) {
|
|
|
|
notice( t('Location not found.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$r = q("update hubloc set hubloc_primary = 0 where hubloc_primary = 1 and hubloc_hash = '%s' ",
|
|
|
|
dbesc($channel['channel_hash'])
|
|
|
|
);
|
|
|
|
$r = q("update hubloc set hubloc_primary = 1 where hubloc_id = %d and hubloc_hash = '%s'",
|
|
|
|
intval($hubloc_id),
|
|
|
|
dbesc($channel['channel_hash'])
|
|
|
|
);
|
|
|
|
|
|
|
|
proc_run('php','include/notifier.php','location',$channel['channel_id']);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-15 19:51:39 +01:00
|
|
|
|
2015-08-23 22:38:18 +02:00
|
|
|
if($_REQUEST['drop']) {
|
|
|
|
$hubloc_id = intval($_REQUEST['drop']);
|
|
|
|
|
|
|
|
if($hubloc_id) {
|
|
|
|
$r = q("select * from hubloc where hubloc_id = %d and hubloc_url != '%s' and hubloc_hash = '%s' limit 1",
|
|
|
|
intval($hubloc_id),
|
|
|
|
dbesc(z_root()),
|
|
|
|
dbesc($channel['channel_hash'])
|
|
|
|
);
|
|
|
|
|
|
|
|
if(! $r) {
|
|
|
|
notice( t('Location not found.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(intval($r[0]['hubloc_primary'])) {
|
2015-10-24 13:04:14 +02:00
|
|
|
$x = q("select hubloc_id from hubloc where hubloc_primary = 1 and hubloc_hash = '%s'",
|
|
|
|
dbesc($channel['channel_hash'])
|
|
|
|
);
|
|
|
|
if(! $x) {
|
|
|
|
notice( t('Location lookup failed.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(count($x) == 1) {
|
|
|
|
notice( t('Please select another location to become primary before removing the primary location.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
2015-08-23 22:38:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$r = q("update hubloc set hubloc_deleted = 1 where hubloc_id = %d and hubloc_hash = '%s'",
|
|
|
|
intval($hubloc_id),
|
|
|
|
dbesc($channel['channel_hash'])
|
|
|
|
);
|
|
|
|
proc_run('php','include/notifier.php','location',$channel['channel_id']);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function locs_content(&$a) {
|
|
|
|
|
|
|
|
|
|
|
|
if(! local_channel()) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-17 16:29:18 +02:00
|
|
|
$channel = App::get_channel();
|
2015-08-23 22:38:18 +02:00
|
|
|
|
2015-11-15 19:51:39 +01:00
|
|
|
if($_REQUEST['sync']) {
|
|
|
|
proc_run('php','include/notifier.php','location',$channel['channel_id']);
|
|
|
|
info( t('Syncing locations') . EOL);
|
|
|
|
goaway(z_root() . '/locs');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-23 22:38:18 +02:00
|
|
|
$r = q("select * from hubloc where hubloc_hash = '%s'",
|
|
|
|
dbesc($channel['channel_hash'])
|
|
|
|
);
|
|
|
|
|
|
|
|
if(! $r) {
|
|
|
|
notice( t('No locations found.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for($x = 0; $x < count($r); $x ++) {
|
|
|
|
$r[$x]['primary'] = (intval($r[$x]['hubloc_primary']) ? true : false);
|
|
|
|
$r[$x]['deleted'] = (intval($r[$x]['hubloc_deleted']) ? true : false);
|
|
|
|
}
|
|
|
|
|
|
|
|
$o = replace_macros(get_markup_template('locmanage.tpl'), array(
|
|
|
|
'$header' => t('Manage Channel Locations'),
|
2016-04-17 16:29:18 +02:00
|
|
|
'$loc' => t('Location'),
|
|
|
|
'$addr' => t('Address'),
|
|
|
|
'$mkprm' => t('Primary'),
|
|
|
|
'$drop' => t('Drop'),
|
2015-08-23 22:38:18 +02:00
|
|
|
'$submit' => t('Submit'),
|
2016-04-17 16:29:18 +02:00
|
|
|
'$sync' => t('Sync Now'),
|
2015-11-15 19:51:39 +01:00
|
|
|
'$sync_text' => t('Please wait several minutes between consecutive operations.'),
|
|
|
|
'$drop_text' => t('When possible, drop a location by logging into that website/hub and removing your channel.'),
|
|
|
|
'$last_resort' => t('Use this form to drop the location if the hub is no longer operating.'),
|
2015-08-23 22:38:18 +02:00
|
|
|
'$hubs' => $r
|
|
|
|
));
|
|
|
|
|
|
|
|
return $o;
|
2016-04-17 16:29:18 +02:00
|
|
|
}
|