-
Notifications
You must be signed in to change notification settings - Fork 0
/
userAccount.php
748 lines (613 loc) · 13.5 KB
/
userAccount.php
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
<?php
session_start();
$UserId=$_SESSION['UserId'];
$pwd=$_REQUEST['pwd'];
if(!isset($_SESSION['UserId']))
header("location:index.php");
//start theme
$themeName=$_REQUEST['themeName'];
if($themeName)
{
file_put_contents("userProfile/$UserId/theme",$themeName);
}
touch("userProfile/$UserId/theme");
$rData=file_get_contents("userProfile/$UserId/theme");
date_default_timezone_set("Asia/Kolkata");
//end theme
?>
<html>
<head>
<meta charset="utf-8">
<title>User Account</title>
<link href="userAccount.css" rel="stylesheet" type="text/css">
</head>
<body background="themes/<?php echo $rData; ?>">
<div id="wrapper"><!-- page starts-->
<div id="header"><!--header starts-->
Welcome: <?php echo $_SESSION['UserId']; ?>
Password:<?php echo $_SESSION['Password'];?>
<a href="logout.php" id="logout">Logout</a>
<a href="userAccount.php?event=setting" id="setting">Setting</a>
</div><!--header ends-->
<table id="tab" border="1"><!--Mid Page starts-->
<tr>
<td id="functionbox"><!--function box starts-->
<ul>
<li><a href="userAccount.php?event=compose">Compose</a></li>
<li><a href="userAccount.php?event=inbox">Inbox</a></li>
<li><a href="userAccount.php?event=sent">Sent</a></li>
<li><a href="userAccount.php?event=outbox">Outbox</a></li>
<li><a href="userAccount.php?event=trash">Trash</a></li>
</ul>
<!--function label header starts-->
<div id="labelFun">
Labels
</div>
<!--function label header ends-->
<?php
//create a label
$newLabel=$_REQUEST['newLabel'];
if($_REQUEST['createLabel'])
{
if(!$_REQUEST['newLabel'])
{
$labelMsg1= "Plz enter Label name";
}
else
{
if(file_exists("userProfile/$UserId/labels/$newLabel"))
{
$labelMsg1="Label Already in Use";
}
else
{
mkdir("userProfile/$UserId/labels/$newLabel");
$labelMsg1="Label has been created sucessfully";
}
}
}
//create label ends---
//see all label--
$res=scandir("userProfile/$UserId/labels");
array_shift($res);
array_shift($res);
foreach($res as $k=>$v)
{
echo "<a href='userAccount.php?Clabel=$v'>$v</a>";
}
//see all label ends--
?>
<!--function chatRoom header starts-->
<div id="labelFun">
Chat Room
</div>
<!--function ChatRoom header ends-->
<?php
//sending frnd request starts
$frndId=$_REQUEST['frndId'];
if($_REQUEST['FrndReq'])
{
if($frndId=="")
{
echo "FrndId must fill!";
}
else
{
if(file_exists("userProfile/$frndId"))
{
$subject="Friend req..by $UserId";
$msg="<p><a href='userAccount.php?acpt=$UserId'>Click here to accept</a></p><p><a href='userAccount.php?rjct=$UserId'>Click here to reject</a></p>";
file_put_contents("userProfile/$frndId/inbox/$subject",$msg);
echo "Friend Request Send.";
}
else
{
echo "Invalid Id req..";
}
}
}
//sending frnd request ends--
?>
<!--form for send frnd request to anyone-->
<form>
<input type="text" name="frndId"></br>
<input type="submit" name="FrndReq" value="Add Friend">
</form>
<!--form ends-->
<?php
//accept frndReq
$acpt=$_REQUEST['acpt'];
if($acpt)
{
if(file_exists("userProfile/$UserId/chatRoom/$acpt"))
{
echo "already in frndList";
}
else
{
mkdir("userProfile/$UserId/chatRoom/$acpt");
mkdir("userProfile/$acpt/chatRoom/$UserId");
}
}
//reject frndReq
$rjct=$_REQUEST['rjct'];
if($rjct)
{
$subject="Rejected by $UserId";
$msg="Rejected by $UserId";
file_put_contents("userProfile/$rjct/inbox/$subject",$msg);
}
?>
<?php
// see frndList
$FrndList=scandir("userProfile/$UserId/chatRoom");
array_shift($FrndList);
array_shift($FrndList);
foreach($FrndList as $k=>$v)
{
echo "<a href='userAccount.php?aUser=$v'>$v</a>";
}
?>
</td><!--function box ends-->
<td id="contentbox"><!--content box starts-->
<?php
//start label msg printing
echo $labelMsg1;
//end label msg printing
//start event tracking
if($_REQUEST['event']==setting)
{
include ("setting.php");
}
if($_REQUEST['event']==compose)
{
include("compose.php");
}
if($_REQUEST['event']==inbox)
{
include("inbox.php");
}
if($_REQUEST['event']==sent)
{
include("sent.php");
}
if($_REQUEST['event']==outbox)
{
include("outbox.php");
}
if($_REQUEST['event']==trash)
{
include("trash.php");
}
if($_REQUEST['event']==changePassword)
{
include("change_pwd.php");
}
if($_REQUEST['event']==change_theme)
{
include("change_theme.php");
}
if($_REQUEST['event']==manage_label)
{
include("mngLabels.php");
}
//end event tracking
//change password starts---
$UserId=$_SESSION['UserId'];
$CurrPwd=$_REQUEST['CurrPwd'];
$NewPwd=$_REQUEST['NewPwd'];
$ConPwd=$_REQUEST['ConPwd'];
if($_REQUEST['chngPwd'])
{
if($CurrPwd=="" or $NewPwd=="" or
$ConPwd=="")
{
$errorMsg="Fill All Require Fields";
include("change_pwd.php");
}
else
{
if(file_exists("userProfile/$UserId/$CurrPwd"))
{
if($NewPwd==$ConPwd)
{
rename("userProfile/$UserId/$CurrPwd","userProfile/$UserId/$ConPwd");
echo "your password has been changed.";
}
else
{
$errorMsg="New Password and Confirm password are differ.";
include("change_pwd.php");
}
}
else
{
$errorMsg= "Current Password did not match";
include("change_pwd.php");
}
}
}
//pasword change ends--
//compose mail start...
$UserId=$_SESSION['UserId'];
$toUser=$_REQUEST['toUser'];
$subject=$_REQUEST['subject'];
$message=$_REQUEST['message'];
//for sending a mail
if($_REQUEST['send'])
{
if($toUser=="" or $subject=="" or
$message=="")
{
$errorMsg= "Fill All Require Fields";
include("compose.php");
}
else
{
//if toUser exist
if(file_exists("userProfile/$toUser"))
{
$subjectLine="$UserId $subject";
file_put_contents("userProfile/$toUser/inbox/$subjectLine",$message);
echo "Your Mail Has Been Sent sucessfully";
//send msg to the ID account(sent)
$subjectLine="$toUser $subject";
file_put_contents("userProfile/$UserId/sent/$subjectLine",$message);
}
//if toUser not exists
//send msg to the ID account(inbox) with msgFailed noti...
else
{
$subjectLine="$toUser $subject msg failed!";
file_put_contents("userProfile/$UserId/inbox/$subjectLine",$message);
echo "Your Mail Has Been Sent sucessfully";
//send msg to the ID account(sent)
$subjectLine="$toUser $subject";
file_put_contents("userProfile/$UserId/sent/$subjectLine",$message);
}
}
}
//for saving a mail (draft)
$subjectLine="Me $subject";
if($_REQUEST['save'])
{
if($toUser=="")
{
$errorMsg="Fill Reciever (To) Fields";
include("compose.php");
}
else
{
file_put_contents(
"userProfile/$UserId/draft/$subjectLine",$message);
echo"Your Mail Has Been saved In Draft Sucessfully";
}
}
//compose mail ends...
?>
<?php
//start access mail
//inbox
$aim=$_REQUEST['aim'];
if($aim)
{
echo "<h3>$aim</h3>";
include("userProfile/$UserId/inbox/$aim");
}
//draft
$adm=$_REQUEST['adm'];
if($adm)
{
echo "<h3>$adm</h3>";
include("userProfile/$UserId/draft/$adm");
}
//sent
$asm=$_REQUEST['asm'];
if($asm)
{
echo "<h3>$asm</h3>";
include("userProfile/$UserId/sent/$asm");
}
//trash
$atm=$_REQUEST['atm'];
if($atm)
{
echo "<h3>$atm</h3>";
include("userProfile/$UserId/trash/$atm");
}
//label
$LabelName=$_REQUEST['LabelName'];
$alm=$_REQUEST['alm'];
if($alm)
{
echo "<h3>$alm</h3>";
include("userProfile/$UserId/labels/$LabelName/$alm");
}
//end access mail
//delete a mail from inbox ang send it to trash
if($_POST['inbDel'])
{
if(!$_POST['mim'])
{
echo "Select Atleast One Message!";
include("inbox.php");
}
else
{
$c=0;
foreach($_POST['mim'] as $mail )
{
//for moving a file in trash box.
$fnmS="userProfile/$UserId/inbox/$mail";
$fnmT="userProfile/$UserId/trash/$mail";
copy($fnmS,$fnmT);
//now delete this file from sentbox.
unlink($fnmS);
$c=$c+1;
}
echo "$c conversation has been moved to the Trash";
include("inbox.php");
}
}
//delete a mail from sentbox ang send it to trash
if($_POST['sentDel'])
{
if(!$_POST['msm'])
{
echo "Select Atleast One Message!";
include("sent.php");
}
else
{
$c=0;
foreach($_POST['msm'] as $mail )
{
//for moving a file in trash box.
$fnmS="userProfile/$UserId/sent/$mail";
$fnmT="userProfile/$UserId/trash/$mail";
copy($fnmS,$fnmT);
//now delete this file from sentbox.
unlink($fnmS);
$c=$c+1;
}
echo "$c conversation has been moved to the Trash";
include("sent.php");
}
}
//delete a mail from outbox(Draft) ang send it to trash
if($_POST['outDel'])
{
if(!$_POST['mom'])
{
echo "Select Atleast One Message!";
include("outbox.php");
}
else
{ $c=0;
foreach($_POST['mom'] as $mail )
{
//for moving a file in trash box.
$fnmS="userProfile/$UserId/draft/$mail";
$fnmT="userProfile/$UserId/trash/$mail";
copy($fnmS,$fnmT);
//now delete this file from outbox.
unlink($fnmS);
$c=$c+1;
}
echo "$c conversation has been moved to the Trash";
include("outbox.php");
}
}
//delete a mail from trash
if($_POST['trashDel'])
{
if(!$_POST['mtm'])
{
echo "Select Atleast One Message!";
include("trash.php");
}
else
{ $c=0;
foreach($_POST['mtm'] as $mail )
{
//path of a file
$fnmS="userProfile/$UserId/trash/$mail";
//now delete this file from trash.
unlink($fnmS);
$c=$c+1;
}
echo "$c conversation has been deleted permanently";
include("trash.php");
}
}
//delete a mail from labelBox ang send it to trash
$LabName=$_REQUEST['LabName'];
if($_POST['LabDel'])
{
if(!$_POST['mlm'])
{
echo "Select Atleast One Message!";
}
else
{
$c=0;
foreach($_POST['mlm'] as $mail )
{
//for moving a file in trash box.
$fnmS="userProfile/$UserId/labels/$LabName/$mail";
$fnmT="userProfile/$UserId/trash/$mail";
copy($fnmS,$fnmT);
//now delete this file from labelbox.
unlink($fnmS);
$c=$c+1;
}
echo "$c conversation has been moved to the Trash";
}
}
/*rename label
if($_POST['renameL'])
{
if(!$_POST['labelRename'])
{
echo "Plz enter a Label Name!";
}
else
{
echo $_POST['labelRename']."<br>";
foreach(($_POST['renameL']) as $k=>$v)
{
echo "userProfile/$UserId/labels[$k]"; //rename("userProfile/$UserId/labels[$k]");
}
}
}
//remove a label
if($_REQUEST['labelRemove'])
{
$labelName=$_REQUEST['labelRemove'];
//echo $labelName;
$res=scandir("userProfile/$UserId/labels/$labelName");
array_shift($res);
array_shift($res);
}
*/
?>
<?php
//start movelabel mail
//from inbox to selected label starts
$mim=$_REQUEST['mim'];
$selLabel=$_REQUEST['selLabel'];
$moveLabelInb=$_REQUEST['moveLabelInb'];
if($moveLabelInb)
{
if(!$mim)
{
echo "select Atleast One Message";
include("inbox.php");
}
else
{
$i=0;
foreach($mim as $mail )
{
rename("userProfile/$UserId/inbox/$mail","userProfile/$UserId/labels/$selLabel/$mail");
$i++;
}//for each ends
echo "$i msg moved from inbox!";
include("inbox.php");
}//if ($mim) ends
}
//from inbox to selected label ends--
//from sent to selected label starts
$msm=$_REQUEST['msm'];
$selLabel=$_REQUEST['selLabel'];
$moveLabelSen=$_REQUEST['moveLabelSen'];
if($moveLabelSen)
{
if(!$msm)
{
echo "select Atleast One Message";
include("sent.php");
}
else
{
$i=0;
foreach($msm as $mail )
{
rename("userProfile/$UserId/sent/$mail","userProfile/$UserId/labels/$selLabel/$mail");
$i++;
}//for each ends
echo "$i msg moved from sent!";
include("sent.php");
}//if ($msm) ends
}
//from sent to selected label ends--
//from outbox to selected label starts
$mom=$_REQUEST['mom'];
$selLabel=$_REQUEST['selLabel'];
$moveLabelOut=$_REQUEST['moveLabelOut'];
if($moveLabelOut)
{
if(!$mom)
{
echo "select Atleast One Message";
include("outbox.php");
}
else
{
$i=0;
foreach($mom as $mail )
{
rename("userProfile/$UserId/draft/$mail","userProfile/$UserId/labels/$selLabel/$mail");
$i++;
}//for each ends
echo "$i msg moved from outbox!";
include("outbox.php");
}//if ($mom) ends
}
//from outbox to selected label ends--
//from trash to selected label starts
$mtm=$_REQUEST['mtm'];
$selLabel=$_REQUEST['selLabel'];
$moveLabelTra=$_REQUEST['moveLabelTra'];
if($moveLabelTra)
{
if(!$mtm)
{
echo "select Atleast One Message";
include("trash.php");
}
else
{
$i=0;
foreach($mtm as $mail )
{
rename("userProfile/$UserId/trash/$mail","userProfile/$UserId/labels/$selLabel/$mail");
$i++;
}//for each ends
echo "$i msg moved from trash!";
include("trash.php");
}//if ($mtm) ends
}
//from trash to selected label ends--
//from labelBox to selected label starts
$mlm=$_REQUEST['mlm'];
$selLabel=$_REQUEST['selLabel'];
$moveLabelLab=$_REQUEST['moveLabelLab'];
$LabName=$_REQUEST['LabName'];
if($moveLabelLab)
{
if(!$mlm)
{
echo "select Atleast One Message";
}
else
{
$i=0;
foreach($mlm as $mail )
{
rename("userProfile/$UserId/labels/$LabName/$mail","userProfile/$UserId/labels/$selLabel/$mail");
$i++;
}//for each ends
echo "$i msg moved from ".$LabName;
}//if ($mlm) ends
}
//from labelBox to selected label ends--
?>
<?php
//label mail box
$Clabel=$_REQUEST['Clabel'];
if($Clabel)
{
include("LabelBox.php");
}
?>
</td><!--content box ends-->
<!--ad box starts-->
<td id="advertise">
<iframe src="test.php" width="100%" height="100%" scrolling="no"></iframe>
</td>
<!--ad box ends-->
</tr>
</table><!--mid page ends-->
</body>
</html>