-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathannouncement.php
206 lines (202 loc) · 9.04 KB
/
announcement.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
<?php
require 'lib/function.php';
require 'lib/layout.php';
if(!$f) $f=0;
if(@mysql_num_rows(mysql_query("SELECT user FROM forummods WHERE forum=$f and user=$loguserid"))) $ismod=1;
$canpost=($isadmin or ($ismod && $f>0));
if($_GET[action]=='edit' or $_POST[action]=='editannc'){
$annc=mysql_fetch_array(mysql_query("SELECT * FROM announcements WHERE id=$id"));
if($annc[forum]>0 && $ismod) $canpost=true;
}
$smilies=readsmilies();
if(!$action){
loadtlayout();
$ppp=($log?$loguser[postsperpage]:20);
$min=$ppp*$page;
if ($loguser['id'] && $f == 0) {
mysql_query("UPDATE `users` SET `lastannouncement` = (SELECT MAX(`id`) FROM `announcements` WHERE `forum` = 0) WHERE `id` = '". $loguser['id'] ."'");
}
$anncs=mysql_query("SELECT a.*,u.*,a.title atitle,u.id uid FROM announcements a,users u WHERE forum=$f AND a.user=u.id ORDER BY a.id DESC LIMIT $min,$ppp");
$annctotal=@mysql_result(mysql_query("SELECT count(*) FROM announcements WHERE forum=$f"),0,0);
$pagelinks=$smallfont.'Pages:';
for($i=0;$i<($annctotal/$ppp);$i++){
if($i==$page) $pagelinks.=' '.($i+1);
else $pagelinks.=" <a href=announcement.php?f=$f&page=$i>".($i+1).'</a>';
}
$annclist="$tccellh width=150>User</td>$tccellh colspan=2>Announcement<tr>";
while($annc=mysql_fetch_array($anncs)){
if($annccount) $annclist.='<tr>';
$annccount++;
$bg=$bg%2+1;
$edit=' ';
if($isadmin or ($ismod && $f)){
$edit="<a href=announcement.php?id=$annc[0]&action=edit>Edit</a> | <a href=announcement.php?id=$annc[0]&action=delete&f=$f>Delete</a>";
if($isadmin) $ip=" | IP: $annc[3]";
}
if($loguser[viewsig]==2){
$annc[headtext]=$annc[postheader];
$annc[signtext]=$annc[signature];
}
$annc[text]="<center><b>$annc[atitle]</b></center><hr>$annc[text]";
$annclist.=threadpost($annc,$bg);
}
}
if($canpost){
if($_GET[action]=='delete'){
mysql_query("DELETE FROM announcements WHERE id=$id");
$annclist.="
$tccell1>Announcement deleted.
<br>".redirect("announcement.php?f=$f",'return to the announcements',0);
}
if($_GET[action]=='new'){
$annclist="
<FORM ACTION=announcement.php NAME=REPLIER METHOD=POST>
$tccellh width=150> </td>$tccellh> <tr>
$tccell1><b>Announcement title:</b></td>$tccell2l>$inpt=subject SIZE=70 MAXLENGTH=100><tr>
$tccell1><b>Announcement:</b></td> $tccell2l>$txta=message ROWS=20 COLS=$numcols></TEXTAREA><tr>
$tccell1> </td> $tccell2l>$inph=action VALUE=postannc>$inph=f VALUE=$f>
$inps=submit VALUE=\"Post announcement\">
$inps=preview VALUE=\"Preview announcement\"></td></FORM>
";
}
if($_GET[action]=='edit'){
if(!$annc[headid]) $head=$annc[headtext];
else $head=mysql_result(mysql_query("SELECT text FROM postlayouts WHERE id=$annc[headid]"),0,0);
if(!$annc[signid]) $sign=$annc[signtext];
else $sign=mysql_result(mysql_query("SELECT text FROM postlayouts WHERE id=$annc[signid]"),0,0);
sbr(1,$annc[text]);
sbr(1,$head);
sbr(1,$sign);
$annclist="
<FORM ACTION=announcement.php NAME=REPLIER METHOD=POST>
$tccellh width=150> </td>$tccellh> <tr>
$tccell1><b>Announcement title:</b></td>$tccell2l>$inpt=subject VALUE=\"$annc[title]\" SIZE=70 MAXLENGTH=100><tr>
$tccell1><b>Header:</b></td> $tccell2l>$txta=head ROWS=8 COLS=$numcols>$head</TEXTAREA><tr>
$tccell1><b>Announcement:</b></td> $tccell2l>$txta=message ROWS=12 COLS=$numcols>$annc[text]</TEXTAREA><tr>
$tccell1><b>Signature:</b></td> $tccell2l>$txta=sign ROWS=8 COLS=$numcols>$sign</TEXTAREA><tr>
$tccell1> </td> $tccell2l>
$inph=action VALUE=editannc>
$inph=f VALUE=$annc[forum]>
$inph=id VALUE=$id>
$inph=edited VALUE=\"$annc[edited]\">
$inps=submit VALUE=\"Edit announcement\">
$inps=preview VALUE=\"Preview announcement\"></td></FORM>
";
}
if($_POST[action]=='postannc'){
$userid = $loguserid;
$user = $loguser;
if($userid!=-1){
$sign=$user[signature];
$head=$user[postheader];
if($user[postbg]) $head="<div style=background:url($user[postbg]);height=100%>$head";
$numposts=$user[posts];
$numdays=(ctime()-$user[regdate])/86400;
$message=doreplace($message,$numposts,$numdays,$user['name']);
$rsign=doreplace($sign,$numposts,$numdays,$user['name']);
$rhead=doreplace($head,$numposts,$numdays,$user['name']);
squot(0,$subject);
$currenttime=ctime();
if($submit){
if(!$f) $f=0;
$headid=getpostlayoutid($head);
$signid=getpostlayoutid($sign);
mysql_query("INSERT INTO `announcements` (`user`, `date`, `ip`, `title`, `forum`, `text`, `headid`, `signid`, `tagval`) VALUES ('$userid', '$currenttime', '$userip', '$subject', '$f', '$message', '$headid', '$signid', '$tagval')");
$annclist="
$tccell1>Thank you, $user[name], for posting your announcement.<br>
".redirect("announcement.php?f=$f","the announcements",0)."</table></table>";
}else{
loadtlayout();
$ppost=$user;
$ppost[uid]=$userid;
$ppost[date]=$currenttime;
$ppost[headtext]=$rhead;
$ppost[signtext]=$rsign;
$ppost[text]="<center><b>". stripslashes($subject) ."</b></center><hr>". stripslashes($message);
if($isadmin) $ip=$userip;
$annclist="
<body onload=window.document.REPLIER.message.focus()>
$tccellh>Announcement preview
$tblend$tblstart
".threadpost($ppost,1)."
$tblend<br>$tblstart
<FORM ACTION=announcement.php NAME=REPLIER METHOD=POST>
$tccellh width=150> </td>$tccellh> <tr>
$tccell1><b>Announcement title:</td>$tccell2l>$inpt=subject SIZE=70 MAXLENGTH=100 VALUE=\"". stripslashes($subject) ."\"><tr>
$tccell1><b>Announcement:</td> $tccell2l>$txta=message ROWS=10 COLS=$numcols>". stripslashes($message) ."</TEXTAREA><tr>
$tccell1> </td>$tccell2l>
$inps=submit VALUE=\"Submit announcement\">
$inps=preview VALUE=\"Preview announcement\">
$inph=action VALUE=postannc>
$inph=f VALUE=$f>
</td></FORM>
";
}
}else
$annclist="
$tccell1>Couldn't enter the announcement. You haven't entered the right username or password.
".redirect('announcement.php','return to the announcements',0);
}
if($_POST[action]=='editannc'){
print $tblstart;
$numposts=$loguser[posts];
$numdays=(ctime()-$loguser[regdate])/86400;
$message=doreplace($message,$numposts,$numdays,$loguser[name]);
$namecolor = getnamecolor($loguser['sex'], $loguser['powerlevel']);
$edited ="<a href=profile.php?id=$loguser[id]><font $namecolor>$loguser[name]</font></a>";
if($submit){
$headid=@mysql_result(mysql_query("SELECT id FROM postlayouts WHERE text='$head' LIMIT 1"),0,'id');
$signid=@mysql_result(mysql_query("SELECT id FROM postlayouts WHERE text='$sign' LIMIT 1"),0,'id');
if($headid) $head=''; else $headid=0;
if($signid) $sign=''; else $signid=0;
mysql_query("UPDATE announcements SET title='$subject', text='$message', headtext='$head', signtext='$sign', edited='$edited', editdate='".ctime()."',headid=$headid,signid=$signid WHERE id=$id");
$annclist="
$tccell1>Thank you, ".$loguser[name].", for editing the announcement.<br>
".redirect("announcement.php?f=$f","go to the announcements",0);
}else{
loadtlayout();
$annc=mysql_fetch_array(mysql_query("SELECT * FROM announcements WHERE id=$id"));
$ppost=mysql_fetch_array(mysql_query("SELECT * FROM users WHERE id=$annc[user]"));
$subject = stripslashes($subject);
$message = stripslashes($message);
$head = stripslashes($head);
$sign = stripslashes($sign);
$ppost['uid']=$annc[user];
$ppost['date']=$annc[date];
$ppost['tagval']=$annc[tagval];
$ppost['headtext']=$head;
$ppost['signtext']=$sign;
$ppost['text']="<center><b>$subject</b></center><hr>$message";
$ppost['edited'] = $edited;
$ppost['editdate'] = ctime();
if($isadmin) $ip=$annc['ip'];
$annclist="
<body onload=window.document.REPLIER.message.focus()>
$tccellh>Announcement preview
$tblend$tblstart
".threadpost($ppost,1)."
$tblend<br>$tblstart
<FORM ACTION=announcement.php NAME=REPLIER METHOD=POST>
$tccellh width=150> </td>$tccellh> <tr>
$tccell1><b>Announcement title:</b></td>$tccell2l>$inpt=subject VALUE=\"$subject\" SIZE=70 MAXLENGTH=100><tr>
$tccell1><b>Header:</td> $tccell2l>$txta=head ROWS=4 COLS=$numcols>$head</TEXTAREA><tr>
$tccell1><b>Announcement:</td> $tccell2l>$txta=message ROWS=6 COLS=$numcols>$message</TEXTAREA><tr>
$tccell1><b>Signature:</td> $tccell2l>$txta=sign ROWS=4 COLS=$numcols>$sign</TEXTAREA><tr>
$tccell1> </td>$tccell2l>
$inps=submit VALUE=\"Edit announcement\">
$inps=preview VALUE=\"Preview announcement\">
$inph=action VALUE=editannc>
$inph=id VALUE=$id>
$inph=f VALUE=$f>
</td></FORM>
";
}
}
$postnew="<a href=announcement.php?action=new&f=$f>Post new announcement</a>";
}
print "$header
<table width=100%><td align=left>$fonttag<a href=index.php>$boardname</a> - Announcements</td><td align=right>$smallfont$postnew</table>
$pagelinks$tblstart$annclist$tblend$pagelinks$footer
";
printtimedif($startingtime);
?>