aboutsummaryrefslogtreecommitdiffstats
path: root/include/identity.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-09-02 21:24:39 -0700
committerfriendica <info@friendica.com>2012-09-02 21:24:39 -0700
commitfd5dfc95f6c41aa2253112d8758253e4856232c8 (patch)
tree22334f6f86fbd89ed49da8c9f73adf282ecab816 /include/identity.php
parent7550cd586bd8089a5b82f668dbdb245d90d723eb (diff)
downloadvolse-hubzilla-fd5dfc95f6c41aa2253112d8758253e4856232c8.tar.gz
volse-hubzilla-fd5dfc95f6c41aa2253112d8758253e4856232c8.tar.bz2
volse-hubzilla-fd5dfc95f6c41aa2253112d8758253e4856232c8.zip
set the account_id on channel creation
Diffstat (limited to 'include/identity.php')
-rw-r--r--include/identity.php73
1 files 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;