2010-07-03 03:37:43 +02:00
< ? php
2011-01-13 06:04:49 +01:00
2010-07-10 09:45:18 +02:00
function directory_init ( & $a ) {
$a -> set_pager_itemspage ( 60 );
2011-10-12 04:27:58 +02:00
if ( local_user ()) {
require_once ( 'include/contact_widgets.php' );
$a -> page [ 'aside' ] .= findpeople_widget ();
}
2012-09-07 01:24:34 +02:00
else {
2011-10-12 04:27:58 +02:00
unset ( $_SESSION [ 'theme' ]);
2012-09-07 01:24:34 +02:00
unset ( $_SESSION [ 'mobile-theme' ]);
}
2011-10-12 04:27:58 +02:00
2010-07-10 09:45:18 +02:00
}
2010-07-03 03:37:43 +02:00
2010-12-13 03:43:32 +01:00
function directory_post ( & $a ) {
if ( x ( $_POST , 'search' ))
$a -> data [ 'search' ] = $_POST [ 'search' ];
}
2010-07-03 03:37:43 +02:00
function directory_content ( & $a ) {
2011-04-22 02:29:47 +02:00
2014-08-13 00:13:13 +02:00
require_once ( " mod/proxy.php " );
2011-04-22 02:29:47 +02:00
if (( get_config ( 'system' , 'block_public' )) && ( ! local_user ()) && ( ! remote_user ())) {
notice ( t ( 'Public access denied.' ) . EOL );
return ;
}
2010-11-01 00:38:22 +01:00
$o = '' ;
2011-08-17 18:36:24 +02:00
nav_set_selected ( 'directory' );
2010-07-10 12:26:21 +02:00
2010-12-13 03:43:32 +01:00
if ( x ( $a -> data , 'search' ))
$search = notags ( trim ( $a -> data [ 'search' ]));
else
2010-12-20 04:55:03 +01:00
$search = (( x ( $_GET , 'search' )) ? notags ( trim ( rawurldecode ( $_GET [ 'search' ]))) : '' );
2010-07-03 03:37:43 +02:00
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template ( 'directory_header.tpl' );
2010-07-03 03:37:43 +02:00
2010-09-24 03:33:07 +02:00
$globaldir = '' ;
$gdirpath = dirname ( get_config ( 'system' , 'directory_submit_url' ));
if ( strlen ( $gdirpath )) {
$globaldir = '<ul><li><div id="global-directory-link"><a href="'
2012-04-14 12:51:41 +02:00
. zrl ( $gdirpath , true ) . '">' . t ( 'Global Directory' ) . '</a></div></li></ul>' ;
2010-09-24 03:33:07 +02:00
}
2010-08-19 13:59:31 +02:00
2011-05-17 03:52:27 +02:00
$admin = '' ;
2010-07-09 12:10:28 +02:00
$o .= replace_macros ( $tpl , array (
2010-07-13 05:16:27 +02:00
'$search' => $search ,
2010-09-24 03:33:07 +02:00
'$globaldir' => $globaldir ,
2011-10-12 04:27:58 +02:00
'$desc' => t ( 'Find on this site' ),
2011-05-17 03:52:27 +02:00
'$admin' => $admin ,
2011-04-07 07:42:08 +02:00
'$finding' => ( strlen ( $search ) ? '<h4>' . t ( 'Finding: ' ) . " ' " . $search . " ' " . '</h4>' : " " ),
'$sitedir' => t ( 'Site Directory' ),
'$submit' => t ( 'Find' )
2010-07-09 12:10:28 +02:00
));
2010-07-10 07:47:32 +02:00
if ( $search )
$search = dbesc ( $search );
2011-03-14 08:28:49 +01:00
$sql_extra = (( strlen ( $search )) ? " AND MATCH (`profile`.`name`, `user`.`nickname`, `pdesc`, `locality`,`region`,`country-name`,`gender`,`marital`,`sexual`,`about`,`romance`,`work`,`education`,`pub_keywords`,`prv_keywords` ) AGAINST (' $search ' IN BOOLEAN MODE) " : " " );
2010-07-10 07:47:32 +02:00
2012-03-18 06:14:17 +01:00
$publish = (( get_config ( 'system' , 'publish_all' )) ? '' : " AND `publish` = 1 " );
2010-07-10 09:45:18 +02:00
2011-01-03 06:01:07 +01:00
2011-01-03 07:09:54 +01:00
$r = q ( " SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra " );
2010-07-10 09:45:18 +02:00
if ( count ( $r ))
$a -> set_pager_total ( $r [ 0 ][ 'total' ]);
2012-03-18 06:14:17 +01:00
$order = " ORDER BY `name` ASC " ;
2010-07-10 09:45:18 +02:00
2012-07-01 13:46:03 +02:00
$r = q ( " SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d " ,
2010-07-10 09:45:18 +02:00
intval ( $a -> pager [ 'start' ]),
intval ( $a -> pager [ 'itemspage' ])
);
2010-07-03 03:37:43 +02:00
if ( count ( $r )) {
2010-07-10 02:39:55 +02:00
if ( in_array ( 'small' , $a -> argv ))
$photo = 'thumb' ;
else
$photo = 'photo' ;
2010-07-03 03:37:43 +02:00
foreach ( $r as $rr ) {
2010-07-31 11:18:37 +02:00
2010-07-10 02:39:55 +02:00
$profile_link = $a -> get_baseurl () . '/profile/' . (( strlen ( $rr [ 'nickname' ])) ? $rr [ 'nickname' ] : $rr [ 'profile_uid' ]);
2014-08-13 00:13:13 +02:00
2011-01-19 04:25:28 +01:00
$pdesc = (( $rr [ 'pdesc' ]) ? $rr [ 'pdesc' ] . '<br />' : '' );
2010-07-10 02:39:55 +02:00
$details = '' ;
if ( strlen ( $rr [ 'locality' ]))
$details .= $rr [ 'locality' ];
if ( strlen ( $rr [ 'region' ])) {
if ( strlen ( $rr [ 'locality' ]))
$details .= ', ' ;
$details .= $rr [ 'region' ];
}
if ( strlen ( $rr [ 'country-name' ])) {
if ( strlen ( $details ))
$details .= ', ' ;
$details .= $rr [ 'country-name' ];
}
2010-07-10 07:47:32 +02:00
if ( strlen ( $rr [ 'dob' ])) {
if (( $years = age ( $rr [ 'dob' ], $rr [ 'timezone' ], '' )) != 0 )
2011-03-23 00:34:12 +01:00
$details .= '<br />' . t ( 'Age: ' ) . $years ;
2010-07-10 07:47:32 +02:00
}
2010-07-10 02:39:55 +02:00
if ( strlen ( $rr [ 'gender' ]))
2011-03-23 00:34:12 +01:00
$details .= '<br />' . t ( 'Gender: ' ) . $rr [ 'gender' ];
2010-07-09 10:17:20 +02:00
2012-07-01 13:46:03 +02:00
if ( $rr [ 'page-flags' ] == PAGE_NORMAL )
$page_type = " Personal Profile " ;
if ( $rr [ 'page-flags' ] == PAGE_SOAPBOX )
$page_type = " Fan Page " ;
if ( $rr [ 'page-flags' ] == PAGE_COMMUNITY )
$page_type = " Community Forum " ;
if ( $rr [ 'page-flags' ] == PAGE_FREELOVE )
$page_type = " Open Forum " ;
if ( $rr [ 'page-flags' ] == PAGE_PRVGROUP )
$page_type = " Private Group " ;
$profile = $rr ;
if (( x ( $profile , 'address' ) == 1 )
|| ( x ( $profile , 'locality' ) == 1 )
|| ( x ( $profile , 'region' ) == 1 )
|| ( x ( $profile , 'postal-code' ) == 1 )
|| ( x ( $profile , 'country-name' ) == 1 ))
$location = t ( 'Location:' );
$gender = (( x ( $profile , 'gender' ) == 1 ) ? t ( 'Gender:' ) : False );
$marital = (( x ( $profile , 'marital' ) == 1 ) ? t ( 'Status:' ) : False );
$homepage = (( x ( $profile , 'homepage' ) == 1 ) ? t ( 'Homepage:' ) : False );
$about = (( x ( $profile , 'about' ) == 1 ) ? t ( 'About:' ) : False );
2014-08-13 00:13:13 +02:00
2012-07-01 13:46:03 +02:00
$tpl = get_markup_template ( 'directory_item.tpl' );
2012-12-22 20:57:29 +01:00
if ( $a -> theme [ 'template_engine' ] === 'internal' ) {
$location_e = template_escape ( $location );
}
else {
$location_e = $location ;
}
2010-12-26 00:01:02 +01:00
$entry = replace_macros ( $tpl , array (
2010-07-09 12:10:28 +02:00
'$id' => $rr [ 'id' ],
2012-12-22 20:57:29 +01:00
'$profile_link' => $profile_link ,
2014-08-13 00:13:13 +02:00
'$photo' => proxy_url ( $a -> get_cached_avatar_image ( $rr [ $photo ])),
2012-12-22 20:57:29 +01:00
'$alt_text' => $rr [ 'name' ],
2010-07-09 12:10:28 +02:00
'$name' => $rr [ 'name' ],
2012-07-01 13:46:03 +02:00
'$details' => $pdesc . $details ,
2012-12-22 20:57:29 +01:00
'$page_type' => $page_type ,
2012-07-01 13:46:03 +02:00
'$profile' => $profile ,
2012-12-22 20:57:29 +01:00
'$location' => $location_e ,
2012-07-01 13:46:03 +02:00
'$gender' => $gender ,
'$pdesc' => $pdesc ,
'$marital' => $marital ,
'$homepage' => $homepage ,
'$about' => $about ,
2010-07-09 10:17:20 +02:00
));
2010-07-03 03:37:43 +02:00
2010-12-26 00:01:02 +01:00
$arr = array ( 'contact' => $rr , 'entry' => $entry );
call_hooks ( 'directory_item' , $arr );
2014-08-13 00:13:13 +02:00
2012-07-01 13:46:03 +02:00
unset ( $profile );
unset ( $location );
2010-12-26 00:01:02 +01:00
$o .= $entry ;
2010-07-03 03:37:43 +02:00
}
2010-12-26 00:01:02 +01:00
2010-07-09 12:10:28 +02:00
$o .= " <div class= \" directory-end \" ></div> \r \n " ;
2010-07-10 09:45:18 +02:00
$o .= paginate ( $a );
2010-07-03 03:37:43 +02:00
}
else
2011-05-23 11:39:57 +02:00
info ( t ( " No entries \x28 some entries may be hidden \x29 . " ) . EOL );
2010-07-09 12:10:28 +02:00
return $o ;
2011-05-23 11:39:57 +02:00
}