index_do.php
15.2 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<?php
/**
* @version $Id: index_do.php 1 8:24 2010年7月9日Z tianya $
* @package DedeCMS.Member
* @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
* @license http://help.dedecms.com/usersguide/license.html
* @link http://www.dedecms.com
*/
require_once(dirname(__FILE__)."/config.php");
if(empty($dopost)) $dopost = '';
if(empty($fmdo)) $fmdo = '';
/*********************
function check_email()
*******************/
if($fmdo=='sendMail')
{
if(!CheckEmail($cfg_ml->fields['email']) )
{
ShowMsg('你的邮箱格式有错误!', '-1');
exit();
}
if($cfg_ml->fields['spacesta'] != -10)
{
ShowMsg('你的帐号不在邮件验证状态,本操作无效!', '-1');
exit();
}
$userhash = md5($cfg_cookie_encode.'--'.$cfg_ml->fields['mid'].'--'.$cfg_ml->fields['email']);
$url = $cfg_basehost.(empty($cfg_cmspath) ? '/' : $cfg_cmspath)."/member/index_do.php?fmdo=checkMail&mid={$cfg_ml->fields['mid']}&userhash={$userhash}&do=1";
$url = preg_replace("#http:\/\/#i", '', $url);
$url = 'http://'.preg_replace("#\/\/#i", '/', $url);
$mailtitle = "{$cfg_webname}--会员邮件验证通知";
$mailbody = '';
$mailbody .= "尊敬的用户[{$cfg_ml->fields['uname']}],您好:\r\n";
$mailbody .= "欢迎注册成为[{$cfg_webname}]的会员。\r\n";
$mailbody .= "要通过注册,还必须进行最后一步操作,请点击或复制下面链接到地址栏访问这地址:\r\n\r\n";
$mailbody .= "{$url}\r\n\r\n";
$mailbody .= "Power by http://www.dedecms.com 织梦内容管理系统!\r\n";
$headers = "From: ".$cfg_adminemail."\r\nReply-To: ".$cfg_adminemail;
if($cfg_sendmail_bysmtp == 'Y' && !empty($cfg_smtp_server))
{
$mailtype = 'TXT';
require_once(DEDEINC.'/mail.class.php');
$smtp = new smtp($cfg_smtp_server,$cfg_smtp_port,true,$cfg_smtp_usermail,$cfg_smtp_password);
$smtp->debug = false;
$smtp->sendmail($cfg_ml->fields['email'],$cfg_webname ,$cfg_smtp_usermail, $mailtitle, $mailbody, $mailtype);
}
else
{
@mail($cfg_ml->fields['email'], $mailtitle, $mailbody, $headers);
}
ShowMsg('成功发送邮件,请稍后登录你的邮箱进行接收!', '/member');
exit();
}
else if($fmdo=='checkMail')
{
$mid = intval($mid);
if(empty($mid))
{
ShowMsg('你的效验串不合法!', '-1');
exit();
}
$row = $dsql->GetOne("SELECT * FROM `#@__member` WHERE mid='{$mid}' ");
$needUserhash = md5($cfg_cookie_encode.'--'.$mid.'--'.$row['email']);
if($needUserhash != $userhash)
{
ShowMsg('你的效验串不合法!', '-1');
exit();
}
if($row['spacesta'] != -10)
{
ShowMsg('你的帐号不在邮件验证状态,本操作无效!', '-1');
exit();
}
$dsql->ExecuteNoneQuery("UPDATE `#@__member` SET spacesta=0 WHERE mid='{$mid}' ");
// 清除会员缓存
$cfg_ml->DelCache($mid);
ShowMsg('操作成功,请重新登录系统!', 'login.php');
exit();
}
/*********************
function Case_user()
*******************/
else if($fmdo=='user')
{
//检查用户名是否存在
if($dopost=="checkuser")
{
AjaxHead();
$msg = '';
$uid = trim($uid);
if($cktype==0)
{
$msgtitle='用户笔名';
}
else
{
#api{{
if(defined('UC_API') && @include_once DEDEROOT.'/uc_client/client.php')
{
$ucresult = uc_user_checkname($uid);
if($ucresult > 0)
{
echo "<font color='#4E7504'><b>√用户名可用</b></font>";
}
elseif($ucresult == -1)
{
echo "<font color='red'><b>×用户名不合法</b></font>";
}
elseif($ucresult == -2)
{
echo "<font color='red'><b>×包含要允许注册的词语</b></font>";
}
elseif($ucresult == -3)
{
echo "<font color='red'><b>×用户名已经存在</b></font>";
}
exit();
}
#/aip}}
$msgtitle='用户名';
}
if($cktype!=0 || $cfg_mb_wnameone=='N') {
$msg = CheckUserID($uid, $msgtitle);
}
else {
$msg = CheckUserID($uid, $msgtitle, false);
}
if($msg=='ok')
{
$msg = "<font color='#4E7504'><b>√{$msgtitle}可以使用</b></font>";
}
else
{
$msg = "<font color='red'><b>×{$msg}</b></font>";
}
echo $msg;
exit();
}
//检查email是否存在
else if($dopost=="checkmail")
{
AjaxHead();
#api{{
if(defined('UC_API') && @include_once DEDEROOT.'/uc_client/client.php')
{
$ucresult = uc_user_checkemail($email);
if($ucresult > 0) {
echo "<font color='#4E7504'><b>√可以使用</b></font>";
} elseif($ucresult == -4) {
echo "<font color='red'><b>×Email 格式有误!</b></font>";
} elseif($ucresult == -5) {
echo "<font color='red'><b>×Email 不允许注册!</b></font>";
} elseif($ucresult == -6) {
echo "<font color='red'><b>×该 Email 已经被注册!</b></font>";
}
exit();
}
#/aip}}
if($cfg_md_mailtest=='N')
{
$msg = "<font color='#4E7504'><b>√可以使用</b></font>";
}
else
{
if(!CheckEmail($email))
{
$msg = "<font color='#4E7504'><b>×Email格式有误</b></font>";
}
else
{
$row = $dsql->GetOne("SELECT mid FROM `#@__member` WHERE email LIKE '$email' LIMIT 1");
if(!is_array($row)) {
$msg = "<font color='#4E7504'><b>√可以使用</b></font>";
}
else {
$msg = "<font color='red'><b>×Email已经被另一个帐号占用!</b></font>";
}
}
}
echo $msg;
exit();
}
//引入注册页面
else if($dopost=="regnew")
{
$step = empty($step)? 1 : intval(preg_replace("/[^\d]/",'', $step));
require_once(dirname(__FILE__)."/reg_new.php");
exit();
}
/***************************
//积分换金币
function money2s() { }
***************************/
else if($dopost=="money2s")
{
CheckRank(0,0);
if($cfg_money_scores==0)
{
ShowMsg('系统禁用了积分与金币兑换功能!', '-1');
exit();
}
$money = empty($money) ? "" : abs(intval($money));
if(empty($money))
{
ShowMsg('您没指定要兑换多少金币!', '-1');
exit();
}
$needscores = $money * $cfg_money_scores;
if($cfg_ml->fields['scores'] < $needscores )
{
ShowMsg('您积分不足,不能换取这么多的金币!', '-1');
exit();
}
$litmitscores = $cfg_ml->fields['scores'] - $needscores;
//保存记录
$mtime = time();
$inquery = "INSERT INTO `#@__member_operation`(`buyid` , `pname` , `product` , `money` , `mtime` , `pid` , `mid` , `sta` ,`oldinfo`)
VALUES ('ScoresToMoney', '积分换金币操作', 'stc' , '0' , '$mtime' , '0' , '{$cfg_ml->M_ID}' , '0' , '用 {$needscores} 积分兑了换金币:{$money} 个'); ";
$dsql->ExecuteNoneQuery($inquery);
//修改积分与金币值
$dsql->ExecuteNoneQuery("UPDATE `#@__member` SET `scores`=$litmitscores, money= money + $money WHERE mid='".$cfg_ml->M_ID."' ");
// 清除会员缓存
$cfg_ml->DelCache($cfg_ml->M_ID);
ShowMsg('成功兑换指定量的金币!', 'operation.php');
exit();
}
}
/*********************
function login()
*******************/
else if($fmdo=='login')
{
//用户登录
if($dopost=="login")
{
if(!isset($vdcode))
{
$vdcode = '';
}
$svali = GetCkVdValue();
if(preg_match("/2/",$safe_gdopen)){
if(strtolower($vdcode)!=$svali || $svali=='')
{
ResetVdValue();
ShowMsg('验证码错误!', 'index.php');
exit();
}
}
if(CheckUserID($userid,'',false)!='ok')
{
ResetVdValue();
ShowMsg("你输入的用户名 {$userid} 不合法!","index.php");
exit();
}
if($pwd=='')
{
ResetVdValue();
ShowMsg("密码不能为空!","-1",0,2000);
exit();
}
//检查帐号
$rs = $cfg_ml->CheckUser($userid,$pwd);
#api{{
if(defined('UC_API') && @include_once DEDEROOT.'/uc_client/client.php')
{
//检查帐号
list($uid, $username, $password, $email) = uc_user_login($userid, $pwd);
if($uid > 0) {
$password = md5($password);
//当UC存在用户,而CMS不存在时,就注册一个
if(!$rs) {
//会员的默认金币
$row = $dsql->GetOne("SELECT `money`,`scores` FROM `#@__arcrank` WHERE `rank`='10' ");
$scores = is_array($row) ? $row['scores'] : 0;
$money = is_array($row) ? $row['money'] : 0;
$logintime = $jointime = time();
$loginip = $joinip = GetIP();
$res = $dsql->ExecuteNoneQuery("INSERT INTO #@__member SET `mtype`='个人',`userid`='$username',`pwd`='$password',`uname`='$username',`sex`='男' ,`rank`='10',`money`='$money', `email`='$email', `scores`='$scores', `matt`='0', `face`='',`safequestion`='0',`safeanswer`='', `jointime`='$jointime',`joinip`='$joinip',`logintime`='$logintime',`loginip`='$loginip';");
if($res) {
$mid = $dsql->GetLastID();
$data = array
(
0 => "INSERT INTO `#@__member_person` SET `mid`='$mid', `onlynet`='1', `sex`='男', `uname`='$username', `qq`='', `msn`='', `tel`='', `mobile`='', `place`='', `oldplace`='0' ,
`birthday`='1980-01-01', `star`='1', `income`='0', `education`='0', `height`='160', `bodytype`='0', `blood`='0', `vocation`='0', `smoke`='0', `marital`='0', `house`='0',
`drink`='0', `datingtype`='0', `language`='', `nature`='', `lovemsg`='', `address`='',`uptime`='0';",
1 => "INSERT INTO `#@__member_tj` SET `mid`='$mid',`article`='0',`album`='0',`archives`='0',`homecount`='0',`pagecount`='0',`feedback`='0',`friend`='0',`stow`='0';",
2 => "INSERT INTO `#@__member_space` SET `mid`='$mid',`pagesize`='10',`matt`='0',`spacename`='{$uname}的空间',`spacelogo`='',`spacestyle`='person', `sign`='',`spacenews`='';",
3 => "INSERT INTO `#@__member_flink` SET `mid`='$mid', `title`='织梦内容管理系统', `url`='http://www.dedecms.com';"
);
foreach($data as $val) $dsql->ExecuteNoneQuery($val);
}
}
$rs = 1;
$row = $dsql->GetOne("SELECT `mid`, `pwd` FROM #@__member WHERE `userid`='$username'");
if(isset($row['mid']))
{
$cfg_ml->PutLoginInfo($row['mid']);
if($password!=$row['pwd']) $dsql->ExecuteNoneQuery("UPDATE #@__member SET `pwd`='$password' WHERE mid='$row[mid]'");
}
//生成同步登录的代码
$ucsynlogin = uc_user_synlogin($uid);
} else if($uid == -1) {
//当UC不存在该用而CMS存在,就注册一个.
if($rs) {
$row = $dsql->GetOne("SELECT `email` FROM #@__member WHERE userid='$userid'");
$uid = uc_user_register($userid, $pwd, $row['email']);
if($uid > 0) $ucsynlogin = uc_user_synlogin($uid);
} else {
$rs = -1;
}
} else {
$rs = -1;
}
}
#/aip}}
if($rs==0)
{
ResetVdValue();
ShowMsg("用户名不存在!", "index.php", 0, 2000);
exit();
}
else if($rs==-1) {
ResetVdValue();
ShowMsg("密码错误!", "index.php", 0, 2000);
exit();
}
else if($rs==-2) {
ResetVdValue();
ShowMsg("管理员帐号不允许从前台登录!", "index.php", 0, 2000);
exit();
}
else
{
// 清除会员缓存
$cfg_ml->DelCache($cfg_ml->M_ID);
if(empty($gourl) || preg_match("#action|_do#i", $gourl))
{
ShowMsg("成功登录,5秒钟后转向系统主页...","index.php",0,2000);
}
else
{
$gourl = str_replace('^','&',$gourl);
ShowMsg("成功登录,现在转向指定页面...",$gourl,0,2000);
}
exit();
}
}
//退出登录
else if($dopost=="exit")
{
$cfg_ml->ExitCookie();
#api{{
if(defined('UC_API') && @include_once DEDEROOT.'/uc_client/client.php')
{
$ucsynlogin = uc_user_synlogout();
}
#/aip}}
ShowMsg("成功退出登录!","index.php",0,2000);
exit();
}
}
/*********************
function moodmsg()
*******************/
else if($fmdo=='moodmsg')
{
//用户登录
if($dopost=="sendmsg")
{
if(!empty($content))
{
$ip = GetIP();
$dtime = time();
$ischeck = ($cfg_mb_msgischeck == 'Y')? 0 : 1;
if($cfg_soft_lang == 'gb2312')
{
$content = utf82gb(nl2br($content));
}
$content = cn_substrR(HtmlReplace($content,1),360);
//对表情进行解析
$content = addslashes(preg_replace("/\[face:(\d{1,2})\]/is","<img src='".$cfg_memberurl."/templets/images/smiley/\\1.gif' style='cursor: pointer; position: relative;'>",$content));
$content = RemoveXSS($content);
$inquery = "INSERT INTO `#@__member_msg`(`mid`,`userid`,`ip`,`ischeck`,`dtime`, `msg`)
VALUES ('{$cfg_ml->M_ID}','{$cfg_ml->M_LoginID}','$ip','$ischeck','$dtime', '$content'); ";
$rs = $dsql->ExecuteNoneQuery($inquery);
if(!$rs)
{
$output['type'] = 'error';
$output['data'] = '更新失败,请重试.';
exit();
}
$output['type'] = 'success';
if($cfg_soft_lang == 'gb2312')
{
$content = utf82gb(nl2br($content));
}
$output['data'] = stripslashes($content);
exit(json_encode($output));
}
}
}
else
{
ShowMsg("本页面禁止返回!","index.php");
}