magic_showip.php
2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: magic_showip.php 29373 2012-04-09 07:55:30Z chenmengshu $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class magic_showip {
var $version = '1.0';
var $name = 'showip_name';
var $description = 'showip_desc';
var $price = '10';
var $weight = '10';
var $useevent = 1;
var $targetgroupperm = true;
var $copyright = '<a href="http://www.comsenz.com" target="_blank">Comsenz Inc.</a>';
var $magic = array();
var $parameters = array();
function getsetting(&$magic) {
}
function setsetting(&$magicnew, &$parameters) {
}
function usesubmit() {
global $_G;
if(empty($_GET['username'])) {
showmessage(lang('magic/showip', 'showip_info_nonexistence'));
}
$member = getuserinfo($_GET['username']);
$this->_check($member['groupid']);
$memberstatus = C::t('common_member_status')->fetch($member['uid']);
$ip = $memberstatus['lastip'];
unset($memberstatus);
usemagic($this->magic['magicid'], $this->magic['num']);
updatemagiclog($this->magic['magicid'], '2', '1', '0', 0, 'uid', $member['uid']);
if($member['uid'] != $_G['uid']) {
notification_add($member['uid'], 'magic', lang('magic/showip', 'showip_notification'), array('magicname' => $this->magic['name']), 1);
}
showmessage(lang('magic/showip', 'showip_ip_message'), '', array('username' => $_GET['username'], 'ip' => $ip), array('alert' => 'info', 'showdialog' => 1));
}
function show() {
global $_G;
$user = !empty($_GET['id']) ? dhtmlspecialchars($_GET['id']) : '';
if($user) {
$member = getuserinfo($user);
$this->_check($member['groupid']);
}
magicshowtype('top');
magicshowsetting(lang('magic/showip', 'showip_targetuser'), 'username', $user, 'text');
magicshowtype('bottom');
}
function buy() {
global $_G;
if(!empty($_GET['id'])) {
$member = getuserinfo($_GET['id']);
if($_G['group']['allowviewip']) {
$_GET['username'] = $member['username'];
$this->usesubmit();
} else {
$this->_check($member['groupid']);
}
}
}
function _check($groupid) {
if(!checkmagicperm($this->parameters['targetgroups'], $groupid)) {
showmessage(lang('magic/showip', 'showip_info_noperm'));
}
}
}
?>