2010-07-02 01:48:07 +02:00
< ? php
2017-04-30 06:07:00 +02:00
use Friendica\App ;
2017-05-07 20:44:30 +02:00
use Friendica\Network\Probe ;
2017-04-30 06:07:00 +02:00
2017-05-07 20:40:23 +02:00
require_once 'include/Contact.php' ;
2017-05-28 03:47:54 +02:00
require_once 'include/socgraph.php' ;
2010-07-02 01:48:07 +02:00
2017-01-09 13:14:55 +01:00
function profiles_init ( App $a ) {
2013-01-03 18:47:45 +01:00
nav_set_selected ( 'profiles' );
2016-12-20 11:56:34 +01:00
if ( ! local_user ()) {
2013-01-03 18:47:45 +01:00
return ;
}
2017-03-25 13:22:39 +01:00
if (( $a -> argc > 2 ) && ( $a -> argv [ 1 ] === " drop " ) && intval ( $a -> argv [ 2 ])) {
2013-01-03 18:47:45 +01:00
$r = q ( " SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1 " ,
intval ( $a -> argv [ 2 ]),
intval ( local_user ())
);
2016-12-20 10:10:33 +01:00
if ( ! dbm :: is_result ( $r )) {
2013-01-03 18:47:45 +01:00
notice ( t ( 'Profile not found.' ) . EOL );
2016-02-17 08:08:28 +01:00
goaway ( 'profiles' );
2013-01-03 18:47:45 +01:00
return ; // NOTREACHED
}
2014-03-09 09:19:14 +01:00
2013-01-03 18:47:45 +01:00
check_form_security_token_redirectOnErr ( '/profiles' , 'profile_drop' , 't' );
// move every contact using this profile as their default to the user default
$r = q ( " UPDATE `contact` SET `profile-id` = (SELECT `profile`.`id` AS `profile-id` FROM `profile` WHERE `profile`.`is-default` = 1 AND `profile`.`uid` = %d LIMIT 1) WHERE `profile-id` = %d AND `uid` = %d " ,
intval ( local_user ()),
intval ( $a -> argv [ 2 ]),
intval ( local_user ())
);
2014-03-09 09:19:14 +01:00
$r = q ( " DELETE FROM `profile` WHERE `id` = %d AND `uid` = %d " ,
2013-01-03 18:47:45 +01:00
intval ( $a -> argv [ 2 ]),
intval ( local_user ())
);
2017-03-25 13:22:39 +01:00
if ( dbm :: is_result ( $r )) {
2016-02-17 08:08:28 +01:00
info ( t ( 'Profile deleted.' ) . EOL );
2017-03-25 13:22:39 +01:00
}
2013-01-03 18:47:45 +01:00
2016-02-17 08:08:28 +01:00
goaway ( 'profiles' );
2013-01-03 18:47:45 +01:00
return ; // NOTREACHED
}
2017-03-25 13:22:39 +01:00
if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] === 'new' )) {
2014-03-09 09:19:14 +01:00
2013-01-03 18:47:45 +01:00
check_form_security_token_redirectOnErr ( '/profiles' , 'profile_new' , 't' );
$r0 = q ( " SELECT `id` FROM `profile` WHERE `uid` = %d " ,
intval ( local_user ()));
2017-03-25 13:22:39 +01:00
$num_profiles = ( dbm :: is_result ( $r0 ) ? count ( $r0 ) : 0 );
2013-01-03 18:47:45 +01:00
$name = t ( 'Profile-' ) . ( $num_profiles + 1 );
$r1 = q ( " SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1 " ,
intval ( local_user ()));
2014-03-09 09:19:14 +01:00
2013-01-03 18:47:45 +01:00
$r2 = q ( " INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
VALUES ( % d , '%s' , '%s' , '%s' , '%s' ) " ,
intval ( local_user ()),
dbesc ( $name ),
dbesc ( $r1 [ 0 ][ 'name' ]),
dbesc ( $r1 [ 0 ][ 'photo' ]),
dbesc ( $r1 [ 0 ][ 'thumb' ])
);
$r3 = q ( " SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1 " ,
intval ( local_user ()),
dbesc ( $name )
);
info ( t ( 'New profile created.' ) . EOL );
2017-03-25 13:22:39 +01:00
if ( dbm :: is_result ( $r3 ) && count ( $r3 ) == 1 ) {
goaway ( 'profiles/' . $r3 [ 0 ][ 'id' ]);
}
2014-03-09 09:19:14 +01:00
2016-02-17 08:08:28 +01:00
goaway ( 'profiles' );
2014-03-11 23:52:32 +01:00
}
2013-01-03 18:47:45 +01:00
2017-03-25 13:22:39 +01:00
if (( $a -> argc > 2 ) && ( $a -> argv [ 1 ] === 'clone' )) {
2014-03-09 09:19:14 +01:00
2013-01-03 18:47:45 +01:00
check_form_security_token_redirectOnErr ( '/profiles' , 'profile_clone' , 't' );
$r0 = q ( " SELECT `id` FROM `profile` WHERE `uid` = %d " ,
intval ( local_user ()));
2017-03-25 13:22:39 +01:00
$num_profiles = ( dbm :: is_result ( $r0 ) ? count ( $r0 ) : 0 );
2013-01-03 18:47:45 +01:00
$name = t ( 'Profile-' ) . ( $num_profiles + 1 );
$r1 = q ( " SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1 " ,
intval ( local_user ()),
intval ( $a -> argv [ 2 ])
);
2017-03-21 17:02:59 +01:00
if ( ! dbm :: is_result ( $r1 )) {
2013-01-03 18:47:45 +01:00
notice ( t ( 'Profile unavailable to clone.' ) . EOL );
killme ();
return ;
}
unset ( $r1 [ 0 ][ 'id' ]);
$r1 [ 0 ][ 'is-default' ] = 0 ;
2014-03-11 23:52:32 +01:00
$r1 [ 0 ][ 'publish' ] = 0 ;
$r1 [ 0 ][ 'net-publish' ] = 0 ;
2013-01-03 18:47:45 +01:00
$r1 [ 0 ][ 'profile-name' ] = dbesc ( $name );
2017-01-28 13:19:04 +01:00
dbm :: esc_array ( $r1 [ 0 ], true );
2013-01-03 18:47:45 +01:00
2014-03-11 23:52:32 +01:00
$r2 = dbq ( " INSERT INTO `profile` (` "
. implode ( " `, ` " , array_keys ( $r1 [ 0 ]))
2017-01-28 13:19:04 +01:00
. " `) VALUES ( "
. implode ( " , " , array_values ( $r1 [ 0 ]))
. " ) " );
2013-01-03 18:47:45 +01:00
$r3 = q ( " SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1 " ,
intval ( local_user ()),
dbesc ( $name )
);
info ( t ( 'New profile created.' ) . EOL );
2017-03-25 13:22:39 +01:00
if (( dbm :: is_result ( $r3 )) && ( count ( $r3 ) == 1 )) {
2016-02-17 08:08:28 +01:00
goaway ( 'profiles/' . $r3 [ 0 ][ 'id' ]);
2017-03-25 13:22:39 +01:00
}
2014-03-09 09:19:14 +01:00
2016-02-17 08:08:28 +01:00
goaway ( 'profiles' );
2014-03-09 09:19:14 +01:00
2013-01-03 18:47:45 +01:00
return ; // NOTREACHED
}
2017-03-25 13:22:39 +01:00
if (( $a -> argc > 1 ) && ( intval ( $a -> argv [ 1 ]))) {
2013-01-03 18:47:45 +01:00
$r = q ( " SELECT id FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1 " ,
intval ( $a -> argv [ 1 ]),
intval ( local_user ())
);
2016-12-20 10:10:33 +01:00
if ( ! dbm :: is_result ( $r )) {
2013-01-03 18:47:45 +01:00
notice ( t ( 'Profile not found.' ) . EOL );
killme ();
return ;
}
2017-03-25 13:22:39 +01:00
profile_load ( $a , $a -> user [ 'nickname' ], $r [ 0 ][ 'id' ]);
2013-01-03 18:47:45 +01:00
}
2015-01-10 00:34:08 +01:00
2016-02-07 15:11:34 +01:00
2013-01-03 18:47:45 +01:00
}
2015-01-25 13:19:37 +01:00
function profile_clean_keywords ( $keywords ) {
2017-03-25 13:22:39 +01:00
$keywords = str_replace ( " , " , " " , $keywords );
2015-01-25 13:19:37 +01:00
$keywords = explode ( " " , $keywords );
$cleaned = array ();
foreach ( $keywords as $keyword ) {
$keyword = trim ( strtolower ( $keyword ));
2015-01-26 01:07:15 +01:00
$keyword = trim ( $keyword , " # " );
2017-03-25 13:22:39 +01:00
if ( $keyword != " " ) {
2015-01-25 13:19:37 +01:00
$cleaned [] = $keyword ;
2017-03-25 13:22:39 +01:00
}
2015-01-25 13:19:37 +01:00
}
$keywords = implode ( " , " , $cleaned );
return $keywords ;
}
2017-01-09 13:14:55 +01:00
function profiles_post ( App $a ) {
2010-07-02 01:48:07 +02:00
2016-12-20 11:56:34 +01:00
if ( ! local_user ()) {
2010-08-19 13:59:31 +02:00
notice ( t ( 'Permission denied.' ) . EOL );
2010-07-02 01:48:07 +02:00
return ;
}
2010-08-09 06:03:08 +02:00
$namechanged = false ;
2011-01-21 00:30:45 +01:00
call_hooks ( 'profile_post' , $_POST );
2017-03-24 22:33:57 +01:00
if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] !== " new " ) && intval ( $a -> argv [ 1 ])) {
2010-08-09 06:03:08 +02:00
$orig = q ( " SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1 " ,
2010-07-02 01:48:07 +02:00
intval ( $a -> argv [ 1 ]),
2010-11-25 01:35:35 +01:00
intval ( local_user ())
2010-07-02 01:48:07 +02:00
);
2017-03-24 22:33:57 +01:00
if ( ! dbm :: is_result ( $orig )) {
2010-08-19 13:59:31 +02:00
notice ( t ( 'Profile not found.' ) . EOL );
2010-07-02 01:48:07 +02:00
return ;
}
2014-03-09 09:19:14 +01:00
2012-03-12 21:17:37 +01:00
check_form_security_token_redirectOnErr ( '/profiles' , 'profile_edit' );
2014-03-11 23:52:32 +01:00
2010-08-09 06:03:08 +02:00
$is_default = (( $orig [ 0 ][ 'is-default' ]) ? 1 : 0 );
2010-07-02 01:48:07 +02:00
$profile_name = notags ( trim ( $_POST [ 'profile_name' ]));
2017-03-24 22:33:57 +01:00
if ( ! strlen ( $profile_name )) {
2014-08-21 01:00:56 +02:00
notice ( t ( 'Profile Name is required.' ) . EOL );
2010-07-02 01:48:07 +02:00
return ;
}
2014-03-11 23:52:32 +01:00
2017-04-11 23:00:45 +02:00
$dob = $_POST [ 'dob' ] ? escape_tags ( trim ( $_POST [ 'dob' ])) : '0001-01-01' ; // FIXME: Needs to be validated?
2015-01-10 00:34:08 +01:00
2017-03-25 13:18:28 +01:00
$y = substr ( $dob , 0 , 4 );
2017-03-24 22:33:57 +01:00
if (( ! ctype_digit ( $y )) || ( $y < 1900 )) {
2015-05-22 18:53:18 +02:00
$ignore_year = true ;
2017-03-24 22:33:57 +01:00
} else {
2015-05-22 18:53:18 +02:00
$ignore_year = false ;
2017-03-24 22:33:57 +01:00
}
2017-04-16 15:36:01 +02:00
if ( ! in_array ( $dob , array ( '0000-00-00' , '0001-01-01' ))) {
2017-04-11 23:00:45 +02:00
if ( strpos ( $dob , '0000-' ) === 0 || strpos ( $dob , '0001-' ) === 0 ) {
2015-05-22 18:53:18 +02:00
$ignore_year = true ;
2017-03-24 22:33:57 +01:00
$dob = substr ( $dob , 5 );
2015-05-22 18:53:18 +02:00
}
2017-03-24 22:33:57 +01:00
$dob = datetime_convert ( 'UTC' , 'UTC' , (( $ignore_year ) ? '1900-' . $dob : $dob ), (( $ignore_year ) ? 'm-d' : 'Y-m-d' ));
if ( $ignore_year ) {
2017-04-11 23:00:45 +02:00
$dob = '0001-' . $dob ;
2017-03-24 22:33:57 +01:00
}
2015-05-22 18:53:18 +02:00
}
2015-10-25 09:15:36 +01:00
2010-07-02 01:48:07 +02:00
$name = notags ( trim ( $_POST [ 'name' ]));
2010-08-09 06:03:08 +02:00
2017-03-25 13:22:39 +01:00
if ( ! strlen ( $name )) {
2012-08-19 23:39:43 +02:00
$name = '[No Name]' ;
}
2017-03-24 22:33:57 +01:00
if ( $orig [ 0 ][ 'name' ] != $name ) {
2010-08-09 06:03:08 +02:00
$namechanged = true ;
2017-03-24 22:33:57 +01:00
}
2012-08-19 23:39:43 +02:00
2011-01-19 04:25:28 +01:00
$pdesc = notags ( trim ( $_POST [ 'pdesc' ]));
2010-07-02 01:48:07 +02:00
$gender = notags ( trim ( $_POST [ 'gender' ]));
$address = notags ( trim ( $_POST [ 'address' ]));
$locality = notags ( trim ( $_POST [ 'locality' ]));
$region = notags ( trim ( $_POST [ 'region' ]));
$postal_code = notags ( trim ( $_POST [ 'postal_code' ]));
$country_name = notags ( trim ( $_POST [ 'country_name' ]));
2015-01-25 13:19:37 +01:00
$pub_keywords = profile_clean_keywords ( notags ( trim ( $_POST [ 'pub_keywords' ])));
$prv_keywords = profile_clean_keywords ( notags ( trim ( $_POST [ 'prv_keywords' ])));
2010-08-19 14:29:43 +02:00
$marital = notags ( trim ( $_POST [ 'marital' ]));
2012-06-02 11:30:26 +02:00
$howlong = notags ( trim ( $_POST [ 'howlong' ]));
2010-08-10 07:58:58 +02:00
2010-12-04 07:46:42 +01:00
$with = (( x ( $_POST , 'with' )) ? notags ( trim ( $_POST [ 'with' ])) : '' );
2017-03-25 13:18:28 +01:00
if ( ! strlen ( $howlong )) {
2017-02-28 00:37:15 +01:00
$howlong = NULL_DATE ;
2017-03-19 09:04:04 +01:00
} else {
2017-03-25 13:18:28 +01:00
$howlong = datetime_convert ( date_default_timezone_get (), 'UTC' , $howlong );
2017-03-19 09:04:04 +01:00
}
2010-12-04 07:46:42 +01:00
// linkify the relationship target if applicable
2012-04-13 06:58:15 +02:00
$withchanged = false ;
2017-03-24 22:33:57 +01:00
if ( strlen ( $with )) {
if ( $with != strip_tags ( $orig [ 0 ][ 'with' ])) {
2012-04-13 06:58:15 +02:00
$withchanged = true ;
2010-12-04 07:46:42 +01:00
$prf = '' ;
$lookup = $with ;
2017-03-25 13:18:28 +01:00
if ( strpos ( $lookup , '@' ) === 0 ) {
2017-03-24 22:33:57 +01:00
$lookup = substr ( $lookup , 1 );
}
2011-02-25 21:12:25 +01:00
$lookup = str_replace ( '_' , ' ' , $lookup );
2017-03-24 22:33:57 +01:00
if ( strpos ( $lookup , '@' ) || ( strpos ( $lookup , 'http://' ))) {
2010-12-04 07:46:42 +01:00
$newname = $lookup ;
2016-07-09 20:09:09 +02:00
$links = @ Probe :: lrdd ( $lookup );
2017-03-24 22:33:57 +01:00
if ( count ( $links )) {
foreach ( $links as $link ) {
if ( $link [ '@attributes' ][ 'rel' ] === 'http://webfinger.net/rel/profile-page' ) {
2016-06-10 11:24:38 +02:00
$prf = $link [ '@attributes' ][ 'href' ];
2010-12-04 07:46:42 +01:00
}
}
}
2017-03-23 23:05:53 +01:00
} else {
2010-12-04 07:46:42 +01:00
$newname = $lookup ;
2014-03-09 09:19:14 +01:00
2012-09-30 01:55:40 +02:00
$r = q ( " SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1 " ,
dbesc ( $newname ),
intval ( local_user ())
);
2017-03-23 23:05:53 +01:00
if ( ! dbm :: is_result ( $r )) {
2012-09-30 01:55:40 +02:00
$r = q ( " SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1 " ,
dbesc ( $lookup ),
intval ( local_user ())
);
2010-12-04 07:46:42 +01:00
}
2016-12-14 09:41:33 +01:00
if ( dbm :: is_result ( $r )) {
2010-12-04 07:46:42 +01:00
$prf = $r [ 0 ][ 'url' ];
$newname = $r [ 0 ][ 'name' ];
}
}
2015-01-10 00:34:08 +01:00
2017-03-23 23:05:53 +01:00
if ( $prf ) {
2017-03-24 22:33:57 +01:00
$with = str_replace ( $lookup , '<a href="' . $prf . '">' . $newname . '</a>' , $with );
if ( strpos ( $with , '@' ) === 0 ) {
2017-03-23 23:05:53 +01:00
$with = substr ( $with , 1 );
}
2010-12-04 07:46:42 +01:00
}
2017-03-24 22:33:57 +01:00
} else {
2010-12-04 07:46:42 +01:00
$with = $orig [ 0 ][ 'with' ];
2017-03-24 22:33:57 +01:00
}
2010-12-04 07:46:42 +01:00
}
2017-03-24 22:33:57 +01:00
/// @TODO Not flexible enough for later expansion, let's have more OOP here
2010-07-11 01:47:10 +02:00
$sexual = notags ( trim ( $_POST [ 'sexual' ]));
2016-09-25 17:28:00 +02:00
$xmpp = notags ( trim ( $_POST [ 'xmpp' ]));
2010-07-02 01:48:07 +02:00
$homepage = notags ( trim ( $_POST [ 'homepage' ]));
2014-06-22 09:44:59 +02:00
if (( strpos ( $homepage , 'http' ) !== 0 ) && ( strlen ( $homepage ))) {
2016-06-10 11:24:38 +02:00
// neither http nor https in URL, add them
$homepage = 'http://' . $homepage ;
2014-01-12 09:16:46 +01:00
}
2012-06-03 05:58:20 +02:00
$hometown = notags ( trim ( $_POST [ 'hometown' ]));
2010-07-11 01:47:10 +02:00
$politic = notags ( trim ( $_POST [ 'politic' ]));
$religion = notags ( trim ( $_POST [ 'religion' ]));
2017-01-27 04:57:53 +01:00
$likes = escape_tags ( trim ( $_POST [ 'likes' ]));
$dislikes = escape_tags ( trim ( $_POST [ 'dislikes' ]));
$about = escape_tags ( trim ( $_POST [ 'about' ]));
$interest = escape_tags ( trim ( $_POST [ 'interest' ]));
$contact = escape_tags ( trim ( $_POST [ 'contact' ]));
$music = escape_tags ( trim ( $_POST [ 'music' ]));
$book = escape_tags ( trim ( $_POST [ 'book' ]));
$tv = escape_tags ( trim ( $_POST [ 'tv' ]));
$film = escape_tags ( trim ( $_POST [ 'film' ]));
$romance = escape_tags ( trim ( $_POST [ 'romance' ]));
$work = escape_tags ( trim ( $_POST [ 'work' ]));
$education = escape_tags ( trim ( $_POST [ 'education' ]));
2012-04-11 01:31:49 +02:00
2010-08-20 07:04:18 +02:00
$hide_friends = (( $_POST [ 'hide-friends' ] == 1 ) ? 1 : 0 );
2010-07-02 01:48:07 +02:00
2017-03-24 22:40:25 +01:00
set_pconfig ( local_user (), 'system' , 'detailled_profile' , (( $_POST [ 'detailled_profile' ] == 1 ) ? 1 : 0 ));
2012-04-13 06:10:32 +02:00
$changes = array ();
2012-04-29 10:42:48 +02:00
$value = '' ;
2017-03-23 23:05:53 +01:00
if ( $is_default ) {
if ( $marital != $orig [ 0 ][ 'marital' ]) {
2012-04-29 11:11:33 +02:00
$changes [] = '[color=#ff0000]♥[/color] ' . t ( 'Marital Status' );
2012-04-29 10:42:48 +02:00
$value = $marital ;
}
2017-03-23 23:05:53 +01:00
if ( $withchanged ) {
2012-05-25 09:42:38 +02:00
$changes [] = '[color=#ff0000]♥[/color] ' . t ( 'Romantic Partner' );
2012-04-29 10:42:48 +02:00
$value = strip_tags ( $with );
2012-06-25 06:16:55 +02:00
}
2017-03-23 23:05:53 +01:00
if ( $likes != $orig [ 0 ][ 'likes' ]) {
2012-06-25 06:16:55 +02:00
$changes [] = t ( 'Likes' );
$value = $likes ;
}
2017-03-23 23:05:53 +01:00
if ( $dislikes != $orig [ 0 ][ 'dislikes' ]) {
2012-06-25 06:16:55 +02:00
$changes [] = t ( 'Dislikes' );
$value = $dislikes ;
}
2017-03-23 23:05:53 +01:00
if ( $work != $orig [ 0 ][ 'work' ]) {
2012-04-29 10:42:48 +02:00
$changes [] = t ( 'Work/Employment' );
}
2017-03-23 23:05:53 +01:00
if ( $religion != $orig [ 0 ][ 'religion' ]) {
2012-04-29 10:42:48 +02:00
$changes [] = t ( 'Religion' );
$value = $religion ;
}
2017-03-23 23:05:53 +01:00
if ( $politic != $orig [ 0 ][ 'politic' ]) {
2012-04-29 10:42:48 +02:00
$changes [] = t ( 'Political Views' );
$value = $politic ;
}
2017-03-23 23:05:53 +01:00
if ( $gender != $orig [ 0 ][ 'gender' ]) {
2012-04-29 10:42:48 +02:00
$changes [] = t ( 'Gender' );
$value = $gender ;
}
2017-03-23 23:05:53 +01:00
if ( $sexual != $orig [ 0 ][ 'sexual' ]) {
2012-04-29 10:42:48 +02:00
$changes [] = t ( 'Sexual Preference' );
$value = $sexual ;
}
2017-03-23 23:05:53 +01:00
if ( $xmpp != $orig [ 0 ][ 'xmpp' ]) {
2016-09-25 17:28:00 +02:00
$changes [] = t ( 'XMPP' );
$value = $xmpp ;
}
2017-03-23 23:05:53 +01:00
if ( $homepage != $orig [ 0 ][ 'homepage' ]) {
2012-04-29 10:42:48 +02:00
$changes [] = t ( 'Homepage' );
$value = $homepage ;
}
2017-03-23 23:05:53 +01:00
if ( $interest != $orig [ 0 ][ 'interest' ]) {
2012-04-29 10:42:48 +02:00
$changes [] = t ( 'Interests' );
$value = $interest ;
}
2017-03-23 23:05:53 +01:00
if ( $address != $orig [ 0 ][ 'address' ]) {
2012-05-26 00:56:18 +02:00
$changes [] = t ( 'Address' );
// New address not sent in notifications, potential privacy issues
// in case this leaks to unintended recipients. Yes, it's in the public
// profile but that doesn't mean we have to broadcast it to everybody.
}
2017-03-23 23:05:53 +01:00
if ( $locality != $orig [ 0 ][ 'locality' ] || $region != $orig [ 0 ][ 'region' ]
2012-04-29 10:49:54 +02:00
|| $country_name != $orig [ 0 ][ 'country-name' ]) {
2012-04-29 10:42:48 +02:00
$changes [] = t ( 'Location' );
2012-05-26 00:56:18 +02:00
$comma1 = ((( $locality ) && ( $region || $country_name )) ? ', ' : ' ' );
$comma2 = (( $region && $country_name ) ? ', ' : '' );
$value = $locality . $comma1 . $region . $comma2 . $country_name ;
2012-04-29 10:42:48 +02:00
}
2012-04-13 06:10:32 +02:00
2012-04-29 10:42:48 +02:00
profile_activity ( $changes , $value );
2012-04-13 06:10:32 +02:00
2014-03-09 09:19:14 +01:00
}
$r = q ( " UPDATE `profile`
2010-07-02 01:48:07 +02:00
SET `profile-name` = '%s' ,
`name` = '%s' ,
2011-01-19 04:25:28 +01:00
`pdesc` = '%s' ,
2010-07-02 01:48:07 +02:00
`gender` = '%s' ,
2010-07-11 01:47:10 +02:00
`dob` = '%s' ,
2010-07-02 01:48:07 +02:00
`address` = '%s' ,
`locality` = '%s' ,
`region` = '%s' ,
`postal-code` = '%s' ,
`country-name` = '%s' ,
`marital` = '%s' ,
2010-12-04 07:46:42 +01:00
`with` = '%s' ,
2012-06-02 11:30:26 +02:00
`howlong` = '%s' ,
2010-07-11 01:47:10 +02:00
`sexual` = '%s' ,
2016-09-25 17:28:00 +02:00
`xmpp` = '%s' ,
2010-07-02 01:48:07 +02:00
`homepage` = '%s' ,
2012-06-03 05:58:20 +02:00
`hometown` = '%s' ,
2010-07-11 01:47:10 +02:00
`politic` = '%s' ,
`religion` = '%s' ,
2011-03-14 08:28:49 +01:00
`pub_keywords` = '%s' ,
`prv_keywords` = '%s' ,
2012-06-25 06:16:55 +02:00
`likes` = '%s' ,
`dislikes` = '%s' ,
2010-07-11 01:47:10 +02:00
`about` = '%s' ,
`interest` = '%s' ,
`contact` = '%s' ,
`music` = '%s' ,
`book` = '%s' ,
`tv` = '%s' ,
`film` = '%s' ,
`romance` = '%s' ,
`work` = '%s' ,
2010-08-20 07:04:18 +02:00
`education` = '%s' ,
2011-06-20 01:47:03 +02:00
`hide-friends` = % d
2014-03-09 09:19:14 +01:00
WHERE `id` = % d AND `uid` = % d " ,
2010-07-02 01:48:07 +02:00
dbesc ( $profile_name ),
dbesc ( $name ),
2011-01-19 04:25:28 +01:00
dbesc ( $pdesc ),
2010-07-02 01:48:07 +02:00
dbesc ( $gender ),
2010-07-11 01:47:10 +02:00
dbesc ( $dob ),
2010-07-02 01:48:07 +02:00
dbesc ( $address ),
dbesc ( $locality ),
dbesc ( $region ),
dbesc ( $postal_code ),
dbesc ( $country_name ),
dbesc ( $marital ),
2010-12-04 07:46:42 +01:00
dbesc ( $with ),
2012-06-02 11:30:26 +02:00
dbesc ( $howlong ),
2010-07-11 01:47:10 +02:00
dbesc ( $sexual ),
2016-09-25 17:28:00 +02:00
dbesc ( $xmpp ),
2010-07-02 01:48:07 +02:00
dbesc ( $homepage ),
2012-06-03 05:58:20 +02:00
dbesc ( $hometown ),
2010-07-11 01:47:10 +02:00
dbesc ( $politic ),
dbesc ( $religion ),
2011-03-14 08:28:49 +01:00
dbesc ( $pub_keywords ),
dbesc ( $prv_keywords ),
2012-06-25 06:16:55 +02:00
dbesc ( $likes ),
dbesc ( $dislikes ),
2010-07-02 01:48:07 +02:00
dbesc ( $about ),
2010-07-11 01:47:10 +02:00
dbesc ( $interest ),
dbesc ( $contact ),
dbesc ( $music ),
dbesc ( $book ),
dbesc ( $tv ),
dbesc ( $film ),
dbesc ( $romance ),
dbesc ( $work ),
dbesc ( $education ),
2010-08-20 07:04:18 +02:00
intval ( $hide_friends ),
2010-07-02 01:48:07 +02:00
intval ( $a -> argv [ 1 ]),
2012-04-13 06:10:32 +02:00
intval ( local_user ())
2010-07-02 01:48:07 +02:00
);
2017-03-23 23:05:53 +01:00
if ( $r ) {
2017-03-24 22:33:57 +01:00
info ( t ( 'Profile updated.' ) . EOL );
2017-03-23 23:05:53 +01:00
}
2010-07-09 12:10:28 +02:00
2017-03-23 23:05:53 +01:00
if ( $namechanged && $is_default ) {
2015-07-14 22:24:43 +02:00
$r = q ( " UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d " ,
dbesc ( $name ),
2010-08-09 06:03:08 +02:00
dbesc ( datetime_convert ()),
2010-11-25 01:35:35 +01:00
intval ( local_user ())
2010-08-09 06:03:08 +02:00
);
2014-03-09 09:19:14 +01:00
$r = q ( " UPDATE `user` set `username` = '%s' where `uid` = %d " ,
2013-04-05 00:10:14 +02:00
dbesc ( $name ),
intval ( local_user ())
);
2010-08-09 06:03:08 +02:00
}
2010-08-20 07:04:18 +02:00
2017-03-23 23:05:53 +01:00
if ( $is_default ) {
2016-01-24 14:30:57 +01:00
$location = formatted_location ( array ( " locality " => $locality , " region " => $region , " country-name " => $country_name ));
2015-01-10 00:34:08 +01:00
2016-05-05 12:02:51 +02:00
q ( " UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` AND `uid` = %d " ,
2015-01-10 00:34:08 +01:00
dbesc ( $about ),
2015-02-04 10:43:30 +01:00
dbesc ( $location ),
2015-01-25 13:19:37 +01:00
dbesc ( $pub_keywords ),
2015-01-25 13:22:25 +01:00
dbesc ( $gender ),
2015-01-10 00:34:08 +01:00
intval ( local_user ())
);
2010-08-19 13:59:31 +02:00
// Update global directory in background
$url = $_SESSION [ 'my_url' ];
2017-03-24 22:36:13 +01:00
if ( $url && strlen ( get_config ( 'system' , 'directory' ))) {
2016-08-01 07:48:43 +02:00
proc_run ( PRIORITY_LOW , " include/directory.php " , $url );
2016-12-20 11:36:03 +01:00
}
2011-10-20 14:43:33 +02:00
2017-05-19 08:01:13 +02:00
proc_run ( PRIORITY_LOW , 'include/profile_update.php' , local_user ());
2016-05-05 15:08:05 +02:00
// Update the global contact for the user
update_gcontact_for_user ( local_user ());
2010-08-19 13:59:31 +02:00
}
2010-07-02 01:48:07 +02:00
}
}
2016-02-07 15:11:34 +01:00
2012-04-29 10:42:48 +02:00
function profile_activity ( $changed , $value ) {
2012-04-13 06:10:32 +02:00
$a = get_app ();
2017-03-23 23:05:53 +01:00
if ( ! local_user () || ! is_array ( $changed ) || ! count ( $changed )) {
2012-04-13 06:10:32 +02:00
return ;
2017-03-23 23:05:53 +01:00
}
2012-04-13 06:10:32 +02:00
2017-03-24 22:33:57 +01:00
if ( $a -> user [ 'hidewall' ] || get_config ( 'system' , 'block_public' )) {
2012-04-13 06:10:32 +02:00
return ;
2017-03-23 23:05:53 +01:00
}
2012-04-13 06:10:32 +02:00
2017-03-24 22:33:57 +01:00
if ( ! get_pconfig ( local_user (), 'system' , 'post_profilechange' )) {
2012-04-13 06:10:32 +02:00
return ;
2017-03-23 23:05:53 +01:00
}
2012-04-13 06:10:32 +02:00
2017-05-07 20:40:23 +02:00
require_once 'include/items.php' ;
2012-04-13 06:10:32 +02:00
$self = q ( " SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1 " ,
intval ( local_user ())
);
2017-03-23 23:05:53 +01:00
if ( ! dbm :: is_result ( $self )) {
2012-04-13 06:10:32 +02:00
return ;
2017-03-23 23:05:53 +01:00
}
2012-04-13 06:10:32 +02:00
$arr = array ();
2016-03-20 15:01:50 +01:00
$arr [ 'guid' ] = get_guid ( 32 );
2015-10-25 09:15:36 +01:00
$arr [ 'uri' ] = $arr [ 'parent-uri' ] = item_new_uri ( $a -> get_hostname (), local_user ());
2012-04-13 06:10:32 +02:00
$arr [ 'uid' ] = local_user ();
$arr [ 'contact-id' ] = $self [ 0 ][ 'id' ];
$arr [ 'wall' ] = 1 ;
$arr [ 'type' ] = 'wall' ;
$arr [ 'gravity' ] = 0 ;
$arr [ 'origin' ] = 1 ;
$arr [ 'author-name' ] = $arr [ 'owner-name' ] = $self [ 0 ][ 'name' ];
$arr [ 'author-link' ] = $arr [ 'owner-link' ] = $self [ 0 ][ 'url' ];
$arr [ 'author-avatar' ] = $arr [ 'owner-avatar' ] = $self [ 0 ][ 'thumb' ];
$arr [ 'verb' ] = ACTIVITY_UPDATE ;
$arr [ 'object-type' ] = ACTIVITY_OBJ_PROFILE ;
2015-10-25 09:15:36 +01:00
2012-04-13 06:10:32 +02:00
$A = '[url=' . $self [ 0 ][ 'url' ] . ']' . $self [ 0 ][ 'name' ] . '[/url]' ;
$changes = '' ;
$t = count ( $changed );
$z = 0 ;
2017-03-23 23:05:53 +01:00
foreach ( $changed as $ch ) {
if ( strlen ( $changes )) {
if ( $z == ( $t - 1 )) {
2012-04-29 10:42:48 +02:00
$changes .= t ( ' and ' );
2017-03-23 23:05:53 +01:00
} else {
2012-04-13 06:10:32 +02:00
$changes .= ', ' ;
2017-03-23 23:05:53 +01:00
}
2012-04-13 06:10:32 +02:00
}
$z ++ ;
$changes .= $ch ;
}
2015-10-25 09:15:36 +01:00
$prof = '[url=' . $self [ 0 ][ 'url' ] . '?tab=profile' . ']' . t ( 'public profile' ) . '[/url]' ;
2012-04-13 06:10:32 +02:00
2017-03-23 23:05:53 +01:00
if ( $t == 1 && strlen ( $value )) {
2012-05-04 02:19:53 +02:00
$message = sprintf ( t ( '%1$s changed %2$s to “%3$s”' ), $A , $changes , $value );
2012-05-19 02:55:11 +02:00
$message .= " \n \n " . sprintf ( t ( ' - Visit %1$s\'s %2$s' ), $A , $prof );
2017-03-23 23:05:53 +01:00
} else {
2012-04-29 10:42:48 +02:00
$message = sprintf ( t ( '%1$s has an updated %2$s, changing %3$s.' ), $A , $prof , $changes );
2017-03-23 23:05:53 +01:00
}
2012-04-29 10:42:48 +02:00
2015-10-25 09:15:36 +01:00
$arr [ 'body' ] = $message ;
2012-04-13 06:10:32 +02:00
$arr [ 'object' ] = '<object><type>' . ACTIVITY_OBJ_PROFILE . '</type><title>' . $self [ 0 ][ 'name' ] . '</title>'
. '<id>' . $self [ 0 ][ 'url' ] . '/' . $self [ 0 ][ 'name' ] . '</id>' ;
2012-04-13 06:38:40 +02:00
$arr [ 'object' ] .= '<link>' . xmlify ( '<link rel="alternate" type="text/html" href="' . $self [ 0 ][ 'url' ] . '?tab=profile' . '" />' . " \n " );
2012-04-13 06:10:32 +02:00
$arr [ 'object' ] .= xmlify ( '<link rel="photo" type="image/jpeg" href="' . $self [ 0 ][ 'thumb' ] . '" />' . " \n " );
$arr [ 'object' ] .= '</link></object>' . " \n " ;
$arr [ 'last-child' ] = 1 ;
$arr [ 'allow_cid' ] = $a -> user [ 'allow_cid' ];
$arr [ 'allow_gid' ] = $a -> user [ 'allow_gid' ];
$arr [ 'deny_cid' ] = $a -> user [ 'deny_cid' ];
$arr [ 'deny_gid' ] = $a -> user [ 'deny_gid' ];
$i = item_store ( $arr );
2016-12-20 11:56:34 +01:00
if ( $i ) {
2016-08-01 07:48:43 +02:00
proc_run ( PRIORITY_HIGH , " include/notifier.php " , " activity " , $i );
2016-12-20 11:56:34 +01:00
}
2012-04-13 06:10:32 +02:00
}
2010-07-02 01:48:07 +02:00
2016-02-07 15:11:34 +01:00
2017-01-09 13:14:55 +01:00
function profiles_content ( App $a ) {
2011-01-19 04:25:28 +01:00
2016-12-20 11:56:34 +01:00
if ( ! local_user ()) {
2013-01-12 13:58:54 +01:00
notice ( t ( 'Permission denied.' ) . EOL );
return ;
}
2010-11-01 00:38:22 +01:00
$o = '' ;
2010-07-10 01:28:50 +02:00
2017-03-23 23:05:53 +01:00
if (( $a -> argc > 1 ) && ( intval ( $a -> argv [ 1 ]))) {
2010-07-02 01:48:07 +02:00
$r = q ( " SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1 " ,
intval ( $a -> argv [ 1 ]),
2010-11-25 01:35:35 +01:00
intval ( local_user ())
2010-07-02 01:48:07 +02:00
);
2016-12-20 10:10:33 +01:00
if ( ! dbm :: is_result ( $r )) {
2010-08-19 13:59:31 +02:00
notice ( t ( 'Profile not found.' ) . EOL );
2010-07-02 01:48:07 +02:00
return ;
}
2017-05-07 20:40:23 +02:00
require_once 'include/profile_selectors.php' ;
2010-07-02 01:48:07 +02:00
2017-01-26 15:23:30 +01:00
2012-04-11 03:08:06 +02:00
$a -> page [ 'htmlhead' ] .= replace_macros ( get_markup_template ( 'profed_head.tpl' ), array (
2016-12-19 14:26:13 +01:00
'$baseurl' => App :: get_baseurl ( true ),
2012-04-11 03:08:06 +02:00
));
2012-07-28 17:57:16 +02:00
$a -> page [ 'end' ] .= replace_macros ( get_markup_template ( 'profed_end.tpl' ), array (
2016-12-19 14:26:13 +01:00
'$baseurl' => App :: get_baseurl ( true ),
2012-07-28 17:57:16 +02:00
));
2012-04-11 03:08:06 +02:00
2011-05-11 13:37:13 +02:00
$opt_tpl = get_markup_template ( " profile-hide-friends.tpl " );
2010-07-11 11:52:47 +02:00
$hide_friends = replace_macros ( $opt_tpl , array (
2014-06-27 18:12:15 +02:00
'$yesno' => array (
'hide-friends' , //Name
t ( 'Hide contacts and friends:' ), //Label
!! $r [ 0 ][ 'hide-friends' ], //Value
'' , //Help string
2017-04-08 16:57:24 +02:00
array ( t ( 'No' ), t ( 'Yes' )) //Off - On strings
2014-06-27 18:12:15 +02:00
),
2011-05-25 01:30:52 +02:00
'$desc' => t ( 'Hide your contact/friend list from viewers of this profile?' ),
2011-04-08 03:00:35 +02:00
'$yes_str' => t ( 'Yes' ),
'$no_str' => t ( 'No' ),
2010-07-11 11:52:47 +02:00
'$yes_selected' => (( $r [ 0 ][ 'hide-friends' ]) ? " checked= \" checked \" " : " " ),
'$no_selected' => (( $r [ 0 ][ 'hide-friends' ] == 0 ) ? " checked= \" checked \" " : " " )
));
2015-10-25 09:15:36 +01:00
$personal_account = ! ( in_array ( $a -> user [ " page-flags " ],
array ( PAGE_COMMUNITY , PAGE_PRVGROUP )));
2012-04-11 03:08:06 +02:00
2017-03-24 22:40:25 +01:00
$detailled_profile = ( get_pconfig ( local_user (), 'system' , 'detailled_profile' ) AND $personal_account );
2012-04-11 03:08:06 +02:00
2017-03-24 22:36:13 +01:00
$f = get_config ( 'system' , 'birthday_input_format' );
if ( ! $f ) {
2011-07-26 05:59:25 +02:00
$f = 'ymd' ;
2017-03-24 22:36:13 +01:00
}
2010-07-10 16:09:57 +02:00
2010-07-02 01:48:07 +02:00
$is_default = (( $r [ 0 ][ 'is-default' ]) ? 1 : 0 );
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template ( " profile_edit.tpl " );
2017-03-23 23:05:53 +01:00
$o .= replace_macros ( $tpl , array (
2015-10-25 09:15:36 +01:00
'$personal_account' => $personal_account ,
'$detailled_profile' => $detailled_profile ,
'$details' => array (
2016-06-10 11:24:38 +02:00
'detailled_profile' , //Name
t ( 'Show more profile fields:' ), //Label
$detailled_profile , //Value
'' , //Help string
2017-03-23 23:05:53 +01:00
array ( t ( 'No' ), t ( 'Yes' )) //Off - On strings
2016-06-10 11:24:38 +02:00
),
2017-03-24 22:40:25 +01:00
'$multi_profiles' => feature_enabled ( local_user (), 'multi_profiles' ),
2016-06-10 11:24:38 +02:00
'$form_security_token' => get_form_security_token ( " profile_edit " ),
'$form_security_token_photo' => get_form_security_token ( " profile_photo " ),
2017-03-24 22:40:25 +01:00
'$profile_clone_link' => (( feature_enabled ( local_user (), 'multi_profiles' )) ? 'profiles/clone/' . $r [ 0 ][ 'id' ] . '?t=' . get_form_security_token ( " profile_clone " ) : " " ),
2016-06-10 11:24:38 +02:00
'$profile_drop_link' => 'profiles/drop/' . $r [ 0 ][ 'id' ] . '?t=' . get_form_security_token ( " profile_drop " ),
'$profile_action' => t ( 'Profile Actions' ),
'$banner' => t ( 'Edit Profile Details' ),
'$submit' => t ( 'Submit' ),
'$profpic' => t ( 'Change Profile Photo' ),
'$viewprof' => t ( 'View this profile' ),
'$editvis' => t ( 'Edit visibility' ),
'$cr_prof' => t ( 'Create a new profile using these settings' ),
'$cl_prof' => t ( 'Clone this profile' ),
'$del_prof' => t ( 'Delete this profile' ),
2014-07-03 18:39:22 +02:00
'$lbl_basic_section' => t ( 'Basic information' ),
'$lbl_picture_section' => t ( 'Profile picture' ),
'$lbl_location_section' => t ( 'Location' ),
'$lbl_preferences_section' => t ( 'Preferences' ),
'$lbl_status_section' => t ( 'Status information' ),
'$lbl_about_section' => t ( 'Additional information' ),
'$lbl_interests_section' => t ( 'Interests' ),
2016-06-10 11:24:38 +02:00
'$lbl_personal_section' => t ( 'Personal' ),
'$lbl_relation_section' => t ( 'Relation' ),
'$lbl_miscellaneous_section' => t ( 'Miscellaneous' ),
2014-06-28 01:31:11 +02:00
'$lbl_profile_photo' => t ( 'Upload Profile Photo' ),
2011-04-08 08:10:43 +02:00
'$lbl_gender' => t ( 'Your Gender:' ),
'$lbl_marital' => t ( '<span class="heart">♥</span> Marital Status:' ),
'$lbl_sexual' => t ( 'Sexual Preference:' ),
'$lbl_ex2' => t ( 'Example: fishing photography software' ),
2016-06-10 11:24:38 +02:00
2010-07-20 04:09:58 +02:00
'$disabled' => (( $is_default ) ? 'onclick="return false;" style="color: #BBBBFF;"' : '' ),
2016-12-19 14:26:13 +01:00
'$baseurl' => App :: get_baseurl ( true ),
2010-07-02 01:48:07 +02:00
'$profile_id' => $r [ 0 ][ 'id' ],
2016-06-10 11:24:38 +02:00
'$profile_name' => array ( 'profile_name' , t ( 'Profile Name:' ), $r [ 0 ][ 'profile-name' ], t ( 'Required' ), '*' ),
'$is_default' => $is_default ,
2010-08-19 13:59:31 +02:00
'$default' => (( $is_default ) ? '<p id="profile-edit-default-desc">' . t ( 'This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.' ) . '</p>' : " " ),
2016-06-10 11:24:38 +02:00
'$name' => array ( 'name' , t ( 'Your Full Name:' ), $r [ 0 ][ 'name' ]),
'$pdesc' => array ( 'pdesc' , t ( 'Title/Description:' ), $r [ 0 ][ 'pdesc' ]),
2010-07-10 16:09:57 +02:00
'$dob' => dob ( $r [ 0 ][ 'dob' ]),
2010-07-11 11:52:47 +02:00
'$hide_friends' => $hide_friends ,
2016-06-10 11:24:38 +02:00
'$address' => array ( 'address' , t ( 'Street Address:' ), $r [ 0 ][ 'address' ]),
'$locality' => array ( 'locality' , t ( 'Locality/City:' ), $r [ 0 ][ 'locality' ]),
'$region' => array ( 'region' , t ( 'Region/State:' ), $r [ 0 ][ 'region' ]),
'$postal_code' => array ( 'postal_code' , t ( 'Postal/Zip Code:' ), $r [ 0 ][ 'postal-code' ]),
'$country_name' => array ( 'country_name' , t ( 'Country:' ), $r [ 0 ][ 'country-name' ]),
2010-08-19 13:59:31 +02:00
'$age' => (( intval ( $r [ 0 ][ 'dob' ])) ? '(' . t ( 'Age: ' ) . age ( $r [ 0 ][ 'dob' ], $a -> user [ 'timezone' ], $a -> user [ 'timezone' ]) . ')' : '' ),
2010-07-02 01:48:07 +02:00
'$gender' => gender_selector ( $r [ 0 ][ 'gender' ]),
'$marital' => marital_selector ( $r [ 0 ][ 'marital' ]),
2016-06-10 11:24:38 +02:00
'$with' => array ( 'with' , t ( " Who: \x28 if applicable \x29 " ), strip_tags ( $r [ 0 ][ 'with' ]), t ( 'Examples: cathy123, Cathy Williams, cathy@example.com' )),
2017-02-28 00:37:15 +01:00
'$howlong' => array ( 'howlong' , t ( 'Since [date]:' ), ( $r [ 0 ][ 'howlong' ] <= NULL_DATE ? '' : datetime_convert ( 'UTC' , date_default_timezone_get (), $r [ 0 ][ 'howlong' ]))),
2010-07-10 16:09:57 +02:00
'$sexual' => sexpref_selector ( $r [ 0 ][ 'sexual' ]),
2016-06-10 11:24:38 +02:00
'$about' => array ( 'about' , t ( 'Tell us about yourself...' ), $r [ 0 ][ 'about' ]),
2016-09-25 17:28:00 +02:00
'$xmpp' => array ( 'xmpp' , t ( 'XMPP (Jabber) address:' ), $r [ 0 ][ 'xmpp' ], t ( " The XMPP address will be propagated to your contacts so that they can follow you. " )),
2016-06-10 11:24:38 +02:00
'$homepage' => array ( 'homepage' , t ( 'Homepage URL:' ), $r [ 0 ][ 'homepage' ]),
'$hometown' => array ( 'hometown' , t ( 'Hometown:' ), $r [ 0 ][ 'hometown' ]),
'$politic' => array ( 'politic' , t ( 'Political Views:' ), $r [ 0 ][ 'politic' ]),
'$religion' => array ( 'religion' , t ( 'Religious Views:' ), $r [ 0 ][ 'religion' ]),
'$pub_keywords' => array ( 'pub_keywords' , t ( 'Public Keywords:' ), $r [ 0 ][ 'pub_keywords' ], t ( " \x28 Used for suggesting potential friends, can be seen by others \x29 " )),
'$prv_keywords' => array ( 'prv_keywords' , t ( 'Private Keywords:' ), $r [ 0 ][ 'prv_keywords' ], t ( " \x28 Used for searching profiles, never shown to others \x29 " )),
'$likes' => array ( 'likes' , t ( 'Likes:' ), $r [ 0 ][ 'likes' ]),
'$dislikes' => array ( 'dislikes' , t ( 'Dislikes:' ), $r [ 0 ][ 'dislikes' ]),
'$music' => array ( 'music' , t ( 'Musical interests' ), $r [ 0 ][ 'music' ]),
'$book' => array ( 'book' , t ( 'Books, literature' ), $r [ 0 ][ 'book' ]),
'$tv' => array ( 'tv' , t ( 'Television' ), $r [ 0 ][ 'tv' ]),
'$film' => array ( 'film' , t ( 'Film/dance/culture/entertainment' ), $r [ 0 ][ 'film' ]),
'$interest' => array ( 'interest' , t ( 'Hobbies/Interests' ), $r [ 0 ][ 'interest' ]),
2017-04-08 16:57:24 +02:00
'$romance' => array ( 'romance' , t ( 'Love/romance' ), $r [ 0 ][ 'romance' ]),
2016-06-10 11:24:38 +02:00
'$work' => array ( 'work' , t ( 'Work/employment' ), $r [ 0 ][ 'work' ]),
'$education' => array ( 'education' , t ( 'School/education' ), $r [ 0 ][ 'education' ]),
'$contact' => array ( 'contact' , t ( 'Contact information and Social Networks' ), $r [ 0 ][ 'contact' ]),
2010-07-02 01:48:07 +02:00
));
2011-01-21 00:30:45 +01:00
$arr = array ( 'profile' => $r [ 0 ], 'entry' => $o );
call_hooks ( 'profile_edit' , $arr );
2010-07-02 01:48:07 +02:00
return $o ;
2017-03-23 23:05:53 +01:00
} else {
2015-10-25 09:15:36 +01:00
2017-03-23 23:05:53 +01:00
// If we don't support multi profiles, don't display this list.
2017-03-24 22:40:25 +01:00
if ( ! feature_enabled ( local_user (), 'multi_profiles' )) {
2017-03-23 23:05:53 +01:00
$r = q ( " SELECT * FROM `profile` WHERE `uid` = %d AND `is-default`=1 " ,
2014-06-28 01:30:10 +02:00
local_user ()
);
2017-03-24 22:40:25 +01:00
if ( dbm :: is_result ( $r )) {
2014-06-28 01:30:10 +02:00
//Go to the default profile.
2017-03-24 22:40:25 +01:00
goaway ( 'profiles/' . $r [ 0 ][ 'id' ]);
2014-06-28 01:30:10 +02:00
}
}
2015-10-25 09:15:36 +01:00
2012-06-18 21:18:43 +02:00
$r = q ( " SELECT * FROM `profile` WHERE `uid` = %d " ,
2010-11-25 01:35:35 +01:00
local_user ());
2017-03-23 23:05:53 +01:00
2016-12-14 09:41:33 +01:00
if ( dbm :: is_result ( $r )) {
2015-10-25 09:15:36 +01:00
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template ( 'profile_entry.tpl' );
2016-12-20 21:15:53 +01:00
$profiles = '' ;
foreach ( $r as $rr ) {
2016-06-10 11:24:38 +02:00
$profiles .= replace_macros ( $tpl , array (
2016-12-20 21:15:53 +01:00
'$photo' => $a -> remove_baseurl ( $rr [ 'thumb' ]),
'$id' => $rr [ 'id' ],
'$alt' => t ( 'Profile Image' ),
2011-04-13 06:21:33 +02:00
'$profile_name' => $rr [ 'profile-name' ],
2016-12-20 21:15:53 +01:00
'$visible' => (( $rr [ 'is-default' ]) ? '<strong>' . t ( 'visible to everybody' ) . '</strong>'
2016-02-17 08:08:28 +01:00
: '<a href="' . 'profperm/' . $rr [ 'id' ] . '" />' . t ( 'Edit visibility' ) . '</a>' )
2010-07-02 01:48:07 +02:00
));
}
2016-06-10 11:24:38 +02:00
$tpl_header = get_markup_template ( 'profile_listing_header.tpl' );
$o .= replace_macros ( $tpl_header , array (
2016-12-20 21:15:53 +01:00
'$header' => t ( 'Edit/Manage Profiles' ),
'$chg_photo' => t ( 'Change profile photo' ),
'$cr_new' => t ( 'Create New Profile' ),
2016-06-10 11:24:38 +02:00
'$cr_new_link' => 'profiles/new?t=' . get_form_security_token ( " profile_new " ),
2016-12-20 21:15:53 +01:00
'$profiles' => $profiles
2016-06-10 11:24:38 +02:00
));
2010-07-02 01:48:07 +02:00
}
return $o ;
}
2016-02-07 15:11:34 +01:00
2011-05-23 11:39:57 +02:00
}