From fd5dfc95f6c41aa2253112d8758253e4856232c8 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 2 Sep 2012 21:24:39 -0700 Subject: set the account_id on channel creation --- include/identity.php | 73 ++++++++-------------------------------------------- 1 file changed, 11 insertions(+), 62 deletions(-) diff --git a/include/identity.php b/include/identity.php index 7b80d383c..1fd3c7eb0 100644 --- a/include/identity.php +++ b/include/identity.php @@ -101,9 +101,10 @@ function create_identity($arr) { $newuid = $ret['entity']['entity_id']; - $r = q("INSERT INTO `profile` ( `uid`, `profile_name`, `is_default`, `name`, `photo`, `thumb`) - VALUES ( %d, '%s', %d, '%s', '%s', '%s') ", - intval($ret['entity']['entity_id']), + $r = q("INSERT INTO `profile` ( `aid`, `uid`, `profile_name`, `is_default`, `name`, `photo`, `thumb`) + VALUES ( %d, %d, '%s', %d, '%s', '%s', '%s') ", + intval($ret['entity']['entity_account_id']), + intval($newuid), t('default'), 1, dbesc($ret['entity']['entity_name']), @@ -111,9 +112,10 @@ function create_identity($arr) { dbesc($a->get_baseurl() . "/photo/avatar/{$newuid}") ); - $r = q("INSERT INTO `contact` ( `uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`, `name_date`, `uri_date`, `avatar_date`, `closeness` ) - VALUES ( %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', 0 ) ", - intval($ret['entity']['entity_id']), + $r = q("INSERT INTO `contact` ( `aid`, `uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`, `name_date`, `uri_date`, `avatar_date`, `closeness` ) + VALUES ( %d, %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', 0 ) ", + intval($ret['entity']['entity_account_id']), + intval($newuid), datetime_convert(), dbesc($ret['entity']['entity_name']), dbesc($ret['entity']['entity_address']), @@ -126,67 +128,14 @@ function create_identity($arr) { dbesc(datetime_convert()) ); - // Create a group with no members. This allows somebody to use it - // right away as a default group for new contacts. + // Create a group with no members. This allows somebody to use it + // right away as a default group for new contacts. require_once('include/group.php'); - group_add($ret['entity']['entity_id'], t('Friends')); - - - // if we have no OpenID photo try to look up an avatar - // FIXME - we need the top level account email - - $photo = avatar_img($email); - $photo = ''; - - // unless there is no avatar-plugin loaded - if(strlen($photo)) { - require_once('include/Photo.php'); - $photo_failure = false; - - $filename = basename($photo); - $img_str = fetch_url($photo,true); - // guess mimetype from headers or filename - $type = guess_image_type($photo,true); - - - $img = new Photo($img_str, $type); - if($img->is_valid()) { - - $img->scaleImageSquare(175); - - $hash = photo_new_resource(); - - $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 4 ); - - if($r === false) - $photo_failure = true; - - $img->scaleImage(80); - - $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 5 ); - - if($r === false) - $photo_failure = true; - - $img->scaleImage(48); - - $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 6 ); - - if($r === false) - $photo_failure = true; - - if(! $photo_failure) { - q("UPDATE `photo` SET `profile` = 1 WHERE `resource-id` = '%s' ", - dbesc($hash) - ); - } - } - } + group_add($newuid, t('Friends')); call_hooks('register_account', $newuid); - $ret['success'] = true; return $ret; -- cgit v1.2.3