oc-server3/htdocs/viewprofile.php
following 37b5268a7e completed data license functions, picture fixes, public profile link
+ menu option "my profile/public profile"
- enlargit log pics
- short date format for some locales
- data license constants
* dont display license-disabled log pics
* delete log pics on declined license instead replacing
+ delete waypoint descriptions on declined license
* no cache desc replacement message if it was empty
+ license-content-disable-function for old-disabled users
+ script to process all old-deleted users due to incompatible license
+ settings for license admin functions and for license disclaimer
- fixed CC license link on english tos page
* update caches.last_modified with changes of additional waypoints
+ XML interface license disclaimer
2013-03-18 22:04:07 +01:00

168 lines
6.7 KiB
PHP

<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
*
* Display some status information about the server and Opencaching
***************************************************************************/
require('./lib2/web.inc.php');
require_once('./lib2/logic/user.class.php');
require_once('./lib2/logic/useroptions.class.php');
require_once('./lib2/logic/logpics.inc.php');
$tpl->name = 'viewprofile';
$tpl->menuitem = MNU_CACHES_USERPROFILE;
$userid = isset($_REQUEST['userid']) ? $_REQUEST['userid']+0 : 0;
$allpics = isset($_REQUEST['allpics']) ? $_REQUEST['allpics']+0 : 0;
if ($userid == 0)
{
$login->verify();
if ($login->userid != 0)
{
// 'show public profile' in my-profile menu
$userid = $login->userid;
$tpl->menuitem = MNU_MYPROFILE_PUBLIC;
}
}
$rs = sql("SELECT `user`.`username`,
`user`.`last_login`,
`user`.`pmr_flag`,
`user`.`date_created`,
`user`.`password`,
`user`.`email`,
`user`.`is_active_flag`,
`user`.`latitude`,
`user`.`longitude`,
`user`.`data_license`,
`countries`.`de` AS `country`,
`stat_user`.`hidden`,
`stat_user`.`found`,
`stat_user`.`notfound`,
`stat_user`.`note`,
`user`.`uuid`
FROM `user`
LEFT JOIN `stat_user` ON `user`.`user_id`=`stat_user`.`user_id`
LEFT JOIN `countries` ON `user`.`country`=`countries`.`short`
WHERE `user`.`user_id`='&1'", $userid);
$record = sql_fetch_array($rs);
sql_free_result($rs);
if ($record === false)
$tpl->error(ERROR_USER_NOT_EXISTS);
$rs = sql("SELECT IFNULL(`tt`.`text`, `p`.`name`) AS `name`, `u`.`option_value`, `u`.`option_id` AS `option_id`
FROM `profile_options` AS `p`
LEFT JOIN `user_options` AS `u` ON `p`.`id`=`u`.`option_id`
LEFT JOIN `sys_trans` AS `st` ON `st`.`id`=`p`.`trans_id` AND `st`.`text`=`p`.`name`
LEFT JOIN `sys_trans_text` AS `tt` ON `st`.`id`=`tt`.`trans_id` AND `tt`.`lang` = '&2'
WHERE `u`.`option_visible`=1
AND `p`.`internal_use`=0
AND `u`.`user_id`='&1'
ORDER BY `p`.`option_order`",
$userid,
$opt['template']['locale']);
$tpl->assign_rs('useroptions', $rs);
sql_free_result($rs);
$rs = sql("SELECT COUNT(*) AS `anzahl`, `t`.`id`, IFNULL(`tt`.`text`, `t`.`name`) AS `cachetype`
FROM `caches` AS `c`
LEFT JOIN `cache_type` AS `t` ON `t`.`id`=`c`.`type`
LEFT JOIN `sys_trans` AS `st` ON `st`.`id`=`t`.`trans_id` AND `t`.`name`=`st`.`text`
LEFT JOIN `sys_trans_text` AS `tt` ON `st`.`id`=`tt`.`trans_id` AND `tt`.`lang`='&2'
WHERE `c`.`user_id`='&1'
GROUP BY `t`.`id`
ORDER BY `anzahl` DESC",
$userid,
$opt['template']['locale']);
$tpl->assign_rs('userstatshidden', $rs);
sql_free_result($rs);
$rs = sql("SELECT COUNT(*) AS `anzahl`, `t`.`id`, IFNULL(`tt`.`text`, `t`.`name`) AS `cachetype`
FROM `cache_logs` AS `l`
LEFT JOIN `caches` AS `c` ON `l`.`cache_id`=`c`.`cache_id`
LEFT JOIN `cache_type` AS `t` ON `t`.`id`=`c`.`type`
LEFT JOIN `sys_trans` AS `st` ON `st`.`id`=`t`.`trans_id` AND `t`.`name`=`st`.`text`
LEFT JOIN `sys_trans_text` AS `tt` ON `st`.`id`=`tt`.`trans_id` AND `tt`.`lang`='&2'
WHERE `l`.`user_id`='&1' AND (`l`.`type`=1 OR `l`.`type`=7)
GROUP BY `t`.`id`
ORDER BY `anzahl` DESC",
$userid,
$opt['template']['locale']);
$tpl->assign_rs('userstatsfound', $rs);
sql_free_result($rs);
$useropt = new useroptions($userid);
$tpl->assign('show_statistics', ($useropt->getOptValue(USR_OPT_SHOWSTATS) == 1));
$tpl->assign('username', $record['username']);
$tpl->assign('userid', $userid);
$tpl->assign('uuid', $record['uuid']);
$tpl->assign('founds', $record['found'] <= 0 ? '0' : $record['found']);
$tpl->assign('notfound', $record['notfound'] <= 0 ? '0' : $record['notfound']);
$tpl->assign('note', $record['note'] <= 0 ? '0' : $record['note']);
$tpl->assign('hidden', $record['hidden'] <= 0 ? '0' : $record['hidden']);
$tpl->assign('recommended', sql_value("SELECT COUNT(*) FROM `cache_rating` WHERE `user_id`='&1'", 0, $userid));
$tpl->assign('maxrecommended', floor($record['found'] * $opt['logic']['rating']['percentageOfFounds'] / 100));
$user = new user($userid);
$picstat = ($useropt->getOptValue(USR_OPT_PICSTAT) == 1) && !$user->getLicenseDeclined();
$tpl->assign('show_picstat', $picstat);
if ($picstat)
{
// user has allowed picture stat and gallery view
$tpl->assign('allpics',$allpics);
if (!$allpics)
$tpl->assign('logpics', get_logpics(LOGPICS_FOR_USER_STAT, $userid));
else
{
set_paged_pics(LOGPICS_FOR_USER_GALLERY, $userid, 0, $tpl, "viewprofile.php?userid=" . $userid . "&allpics=1");
$tpl->name = 'viewprofile_pics';
// actually we dont need all the other stuff here ..
}
}
$tpl->assign('showcountry', (strlen(trim($record['country'])) > 0));
$tpl->assign('country', $record['country']);
$tpl->assign('registered', $record['date_created']);
/* set last_login to one of 5 categories
* 1 = this month or last month
* 2 = between one and 6 months
* 3 = between 6 and 12 months
* 4 = more than 12 months
* 5 = unknown, we need this, because we dont
* know the last_login of all accounts.
* Can be removed after one year.
* 6 = user account is not active
*/
if ($record['password'] == null || $record['email'] == null || $record['is_active_flag'] != 1)
$tpl->assign('lastlogin', 6);
else if ($record['last_login'] == null)
$tpl->assign('lastlogin', 5);
else
{
$record['last_login'] = strtotime($record['last_login']);
$record['last_login'] = mktime(date('G', $record['last_login']), date('i', $record['last_login']), date('s', $record['last_login']),
date('n', $record['last_login']), date(1, $record['last_login']), date('Y', $record['last_login']));
if ($record['last_login'] >= mktime(0, 0, 0, date("m")-1, 1, date("Y")))
$tpl->assign('lastlogin', 1);
else if ($record['last_login'] >= mktime(0, 0, 0, date("m")-6, 1, date("Y")))
$tpl->assign('lastlogin', 2);
else if ($record['last_login'] >= mktime(0, 0, 0, date("m")-12, 1, date("Y")))
$tpl->assign('lastlogin', 3);
else
$tpl->assign('lastlogin', 4);
}
$tpl->assign('license_actively_declined', $record['data_license'] == NEW_DATA_LICENSE_ACTIVELY_DECLINED);
$tpl->assign('license_passively_declined', $record['data_license'] == NEW_DATA_LICENSE_PASSIVELY_DECLINED);
$tpl->assign('pmr', $record['pmr_flag']);
$tpl->display();
?>