import_diaspora: add all the friends
This commit is contained in:
parent
0a9d3b4025
commit
e85d2c4b90
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
require_once('include/bb2diaspora.php');
|
require_once('include/bb2diaspora.php');
|
||||||
require_once('include/group.php');
|
require_once('include/group.php');
|
||||||
|
require_once('include/follow.php');
|
||||||
|
|
||||||
function import_diaspora($data) {
|
function import_diaspora($data) {
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
@ -75,16 +76,24 @@ function import_diaspora($data) {
|
|||||||
// now add connections and send friend requests
|
// now add connections and send friend requests
|
||||||
|
|
||||||
|
|
||||||
|
if($data['contacts']) {
|
||||||
|
foreach($data['contacts'] as $contact) {
|
||||||
|
$result = new_contact($channel_id, $contact['person_diaspora_handle'], $c['channel']);
|
||||||
|
if($result['success']) {
|
||||||
|
if($contact['aspects']) {
|
||||||
|
foreach($contact['aspects'] as $aspect) {
|
||||||
|
group_add_member($channel_id,$aspect['name'],$result['abook']['xchan_hash']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Then add items - note this can't be done until Diaspora adds guids to exported
|
// Then add items - note this can't be done until Diaspora adds guids to exported
|
||||||
// items and comments
|
// items and comments
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
proc_run('php','include/notifier.php','location',$channel_id);
|
proc_run('php','include/notifier.php','location',$channel_id);
|
||||||
|
|
||||||
// This will indirectly perform a refresh_all *and* update the directory
|
// This will indirectly perform a refresh_all *and* update the directory
|
||||||
|
Reference in New Issue
Block a user