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
|
<?php
// $Id$
function node_help() {
global $mod;
if ($mod == "node") {
foreach (module_list() as $name) {
if (module_hook($name, "status") && $name != "node") {
print "<h3>". ucfirst($name) ." type</h3>";
print module_invoke($name, "help");
}
}
}
}
function node_access($op, $node = 0) {
/*
** Convert the node to an object if necessary:
*/
if (is_array($node)) {
$node = node_object($node);
}
/*
** Construct a function:
*/
$function = $node->type ."_access";
if (function_exists($function)) {
return $function($op, $node);
}
else {
return 0;
}
}
function node_perm() {
return array("administer nodes", "access content", "post content");
}
function node_search($keys) {
global $user;
$result = db_query("SELECT n.nid, n.title, n.created, u.uid, u.name FROM node n LEFT JOIN users u ON n.uid = u.uid WHERE n.status = 1 AND (n.title LIKE '%$keys%' OR n.teaser LIKE '%$keys%' OR n.body LIKE '%$keys%') ORDER BY n.created DESC LIMIT 20");
while ($node = db_fetch_object($result)) {
$find[$i++] = array("title" => check_output($node->title), "link" => (user_access("administer nodes") ? "admin.php?mod=node&type=node&op=edit&id=$node->nid" : "node.php?id=$node->nid"), "user" => $node->name, "date" => $node->created);
}
return $find;
}
function node_conf_options() {
$output .= form_select(t("Default number of nodes to display"), "default_nodes_main", variable_get("default_nodes_main", 10), array(1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 10 => 10, 15 => 15, 20 => 20, 25 => 25, 30 => 30), t("The default maximum number of nodes to display on the main page."));
$output .= form_select(t("Minimum number of words in a node"), "minimum_node_size", variable_get("minimum_node_size", 0), array(0 => "0 words", 10 => "10 words", 25 => "25 words", 50 => "50 words", 75 => "75 words", 100 => "100 words", 125 => "125 words", 150 => "150 words", 175 => "175 words", 200 => "200 words"), t("The minimum number of words a node should have. This can be useful to stop test post."));
return $output;
}
function node_conf_filters() {
$output .= form_select(t("Enable HTML tags"), "filter_html", variable_get("filter_html", 0), array("Disabled", "Enabled"), t("Allow HTML and PHP tags in user-contributed content."));
$output .= form_textfield(t("Allowed HTML tags"), "allowed_html", variable_get("allowed_html", "<A><B><BLOCKQUOTE><DD><DL><DT><I><LI><OL><U><UL>"), 64, 128, t("If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped."));
$output .= "<hr />";
$output .= form_select(t("Enable link tags"), "filter_link", variable_get("filter_link", 0), array("Disabled", "Enabled"), t("Substitute special [[nodesubject|text]] tags. Your browser will display 'text', and when you click on it your browser will open the node with the subject 'nodesubject'. Please be aware that you'll need to copy the subject of the target node exactly in order to use this feature."));
$output .= "<hr />";
return $output;
}
function node_filter_html($text) {
$text = eregi_replace("([ \f\r\t\n\'\"])style=[^>]+", "\\1", $text);
$text = eregi_replace("([ \f\r\t\n\'\"])on[a-z]+=[^>]+", "\\1", $text);
$text = strip_tags($text, variable_get("allowed_html", ""));
return $text;
}
function node_filter_link($text) {
$src = array("/\[\[(([^\|]*?)(\|([^\|]*?))?)\]\]/e"); // [link|description]
$dst = array(format_tag('\\2', '\\4')); // [link|description]
return preg_replace($src, $dst, $text);
}
function node_filter($text) {
if (variable_get("filter_html", 0)) $text = node_filter_html($text);
if (variable_get("filter_link", 0)) $text = node_filter_link($text);
return $text;
}
function node_link($type, $node = 0) {
if ($type == "admin" && user_access("administer nodes")) {
$links[] = "<a href=\"admin.php?mod=node\">content management</a>";
}
if ($type == "page") {
$links[] = "<a href=\"module.php?mod=node&op=add\">submit</a>";
}
if ($type == "node") {
if ($node->links) {
$links = $node->links;
}
if ($node->teaser != $node->body) {
$links[] = "<a href=\"node.php?id=". $node->nid ."\">". t("read more") ."</a>";
}
if ($node->comment) {
$links[] = "<a href=\"node.php?id=". $node->nid ."\">". format_plural(node_get_comments($node->nid), "comment", "comments") ."</a>";
}
if (user_access("administer nodes")) {
$links[] = "<a href=\"admin.php?mod=node&op=edit&id=". $node->nid ."\">". t("edit") ."</a>";
}
}
return $links ? $links : array();
}
function node_admin_settings($edit = array()) {
global $op;
if ($op == t("Save configuration")) {
/*
** Save the configuration options:
*/
foreach ($edit as $name => $value) variable_set($name, $value);
}
if ($op == t("Reset to defaults")) {
/*
** Reset the configuration options to their default value:
*/
foreach ($edit as $name=>$value) variable_del($name);
}
$output .= node_conf_options();
$output .= form_submit(t("Save configuration"));
$output .= form_submit(t("Reset to defaults"));
return form($output);
}
function node_admin_edit($node) {
if (is_numeric($node)) {
$node = node_array(node_load(array("nid" => $node)));
}
/*
** Edit node:
*/
$output .= "<h3>". t("Edit node") ."</h3>";
$output .= node_form($node);
/*
** Edit comments:
*/
$output .= "<h3>". t("Edit comments") ."</h3>";
$result = db_query("SELECT c.cid, c.subject, u.uid, u.name FROM comments c LEFT JOIN users u ON u.uid = c.uid WHERE lid = '". $node["nid"] ."' ORDER BY c.timestamp");
while ($comment = db_fetch_object($result)) {
$output .= "<a href=\"admin.php?mod=comment&op=edit&id=$comment->cid\">$comment->subject</a> by ". format_name($comment) ."<br />";
}
return $output;
}
function node_admin_nodes() {
global $query;
$queries = array(array("ORDER BY n.created DESC", "new nodes"), array("ORDER BY n.changed DESC", "updated nodes"), array("WHERE n.status = 1 AND n.moderate = 0 ORDER BY n.nid DESC", "published nodes"), array("WHERE n.status = 0 AND n.moderate = 0 ORDER BY n.nid DESC", "non-published nodes"), array("WHERE n.status = 1 AND n.moderate = 1 ORDER BY n.nid DESC", "pending nodes"), array("WHERE n.status = 1 AND n.promote = 1 ORDER BY n.nid DESC", "promoted nodes"));
$result = db_query("SELECT n.*, u.name, u.uid FROM node n LEFT JOIN users u ON n.uid = u.uid ". $queries[$query ? $query : 0][0] ." LIMIT 50");
foreach ($queries as $key => $value) {
$links[] = "<a href=\"admin.php?mod=node&op=nodes&query=$key\">$value[1]</a>";
}
$output .= "<small>". implode(" :: ", $links) ."</small><hr />";
$output .= "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">\n";
$output .= " <tr><th>title</th><th>type</th><th>author</th><th>status</th><th colspan=\"2\">operations</th></tr>\n";
while ($node = db_fetch_object($result)) {
$output .= "<tr><td><a href=\"node.php?id=$node->nid\">". check_output($node->title) ."</a></td><td>$node->type</td><td nowrap=\"nowrap\">". format_name($node) ."</td><td>". ($node->status ? t("published") : t("not published")) ."</td><td nowrap=\"nowrap\"><a href=\"node.php?id=$node->nid\">view node</a></td><td nowrap=\"nowrap\"><a href=\"admin.php?mod=node&op=edit&id=$node->nid\">edit node</a></td></tr>";
}
$output .= "</table>";
return $output;
}
function node_admin() {
global $op, $id, $edit;
if (user_access("administer nodes")) {
/*
** Compile a list of the administrative links:
*/
$links[] = "<a href=\"admin.php?mod=node&op=nodes\">nodes</a>";
$links[] = "<a href=\"admin.php?mod=node&op=search\">search content</a>";
$links[] = "<a href=\"admin.php?mod=node&op=settings\">settings</a>";
$links[] = "<a href=\"admin.php?mod=node&op=help\">help</a>";
print "<small>". implode(" · ", $links) ."</small><hr />";
switch ($op) {
case "help":
print node_help();
break;
case "search":
print search_type("node", "admin.php?mod=node&op=search");
break;
case t("Save configuration"):
case t("Reset to defaults"):
case "settings":
print node_admin_settings($edit);
break;
case "edit":
print node_admin_edit($id);
break;
case t("Preview"):
print node_preview($edit);
break;
case t("Submit"):
print node_submit($edit);
print node_admin_nodes();
break;
case t("Delete"):
print node_remove($edit);
break;
default:
print node_admin_nodes();
}
}
else {
print message_access();
}
}
function node_block() {
global $theme;
$block[0][subject] = t("Syndicate");
$block[0][content] = "<div align=\"center\"><a href=\"module.php?mod=node&op=feed\"><img src=\"". $theme->image("xml.gif") ."\" width=\"36\" height=\"14\" border=\"0\" alt=\"XML\" /></a></div>\n";
$block[0][info] = "Syndicate";
return $block;
}
function node_feed() {
$result = db_query("SELECT nid, type FROM node WHERE promote = '1' AND status = '1' ORDER BY created DESC LIMIT 15");
while ($node = db_fetch_object($result)) {
$item = node_load(array("nid" => $node->nid, "type" => $node->type));
$link = path_uri() ."node.php?id=$item->nid";
$items .= format_rss_item($item->title, $link, $item->teaser);
}
$output .= "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n";
$output .= "<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC \"-//W3C//ENTITIES Latin 1 for XHTML//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent\">\n";
$output .= "<rss version=\"0.91\">\n";
$output .= format_rss_channel(variable_get("site_name", "drupal"), path_uri(), variable_get("site_slogan", ""), $items);
$output .= "</rss>\n";
header("Content-Type: text/xml");
print $output;
}
function node_validate($node, $error) {
global $user;
/*
** Convert the node to an object if necessary:
*/
$node = node_object($node);
/*
** Validate the title field:
*/
if (($node->nid || $node->body) && !$node->title) {
$error["title"] = "<div style=\"color: red;\">". t("You have to specify a valid title.") ."</div>";
}
if (user_access("administer nodes")) {
/*
** Setup default values if required:
*/
if (!$node->name) {
$node->name = $user->name;
}
if (!$node->created) {
$node->created = time();
}
if (!$node->date) {
$node->date = date("M j, Y g:i a", $node->created);
}
/*
** Validate the "authored by"-field:
*/
if ($account = user_load(array("name" => $node->name))) {
$node->uid = $account->uid;
}
else {
$error["name"] = "<div style=\"color: red;\">". sprintf(t("The name '%s' does not exist."), $node->name) ."</div>";
}
/*
** Validate the "authored on"-field:
*/
if (strtotime($node->date) > 1000) {
$node->created = strtotime($node->date);
}
else {
$error["date"] = "<div style=\"color: red;\">". t("You have to specifiy a valid date.") ."</div>";
}
/*
** Validate the "teaser"-field:
*/
if ($node->teaser && count(explode(" ", $node->teaser)) < variable_get("minimum_node_size", 0)) {
$error["teaser"] = "<div style=\"color: red;\">". t("Your teaser is too short.") ."</div>";
}
}
return $node;
}
function node_form($edit) {
$edit = node_validate($edit, &$error);
$output .= "<div style=\"margin-right: 40px; float: left;\">";
/*
** Add the default fields:
*/
$output .= form_textfield(t("Title"), "title", $edit->title, 60, 64, $error["title"]);
if ($edit->body && !$edit->teaser) {
$edit->teaser = node_teaser($edit->body);
}
if ($edit->teaser) {
$output .= form_textarea(t("Teaser"), "teaser", $edit->teaser, 60, 5, $error["teaser"]);
}
/*
** Add the node specific parts:
*/
$function = $edit->type ."_form";
if (function_exists($function)) {
$output .= $function($edit, &$error);
}
/*
** Add the hidden fields:
*/
if ($edit->nid) {
$output .= form_hidden("nid", $edit->nid);
}
if ($edit->uid) {
$output .= form_hidden("uid", $edit->uid);
}
if ($edit->created) {
$output .= form_hidden("created", $edit->created);
}
$output .= form_hidden("type", $edit->type);
/*
** Add the buttons:
*/
$output .= form_submit(t("Preview"));
if ($edit->title && $edit->type && !$error) {
$output .= form_submit(t("Submit"));
}
if ($edit->nid && node_access("delete", $edit)) {
$output .= form_submit(t("Delete"));
}
$output .= "</div>";
/*
** Add the admin specific parts:
*/
if (user_access("administer nodes")) {
$output .= "<div style=\"float: right;\">";
$output .= form_textfield(t("Authored by"), "name", $edit->name, 20, 25, $error["name"]);
$output .= form_textfield(t("Authored on"), "date", $edit->date, 20, 25, $error["date"]);
$output .= "<br />";
$output .= form_select(t("Current status"), "status", $edit->status, array("Disabled", "Enabled"));
$output .= form_select(t("User comments"), "comment", $edit->comment, array("Disabled", "Enabled"));
$output .= form_select(t("Node location"), "promote", $edit->promote, array("Default", "Front page"));
$output .= "</div>";
}
return form($output);
}
function node_add($type) {
global $user;
if ($type) {
$output = node_form(array("uid" => $user->uid, "type" => $type));
}
else {
$links = array();
foreach (module_list() as $name) {
if (($info = module_invoke($name, "node", "name")) && node_access("create", array("type" => $name))) {
$links[] = "<a href=\"module.php?mod=node&op=add&type=$name\">". t($info) ."</a>";
}
}
$output .= sprintf(t("Submit a %s."), implode(", ", $links));
}
return $output;
}
function node_edit($id) {
global $user;
$node = node_load(array("nid" => $id));
if (node_access("update", $node)) {
$output = node_form($node);
}
else {
$output = message_access();
}
return $output;
}
function node_preview($edit) {
/*
** Load the user's name when needed:
*/
if ($edit["name"]) {
$user = user_load(array("name" => $edit["name"]));
$edit["uid"] = $user->uid;
}
else if ($edit["uid"]) {
$user = user_load(array("uid" => $edit["uid"]));
$edit["name"] = $user->name;
}
/*
** Set the created time when needed:
*/
if (empty($edit["nid"])) {
$edit["created"] = time();
}
/*
** Display a preview of the node:
*/
node_view($edit);
return node_form($edit);
}
function node_submit($node) {
global $user;
/*
** Fixup the node when required:
*/
$node = node_validate($node);
if ($node->nid) {
/*
** Check whether the current user has the proper access rights to
** perform this operation:
*/
if (node_access("update", $node)) {
/*
** Compile a list of the node fields and their default values that users
** and administrators are allowed to save when updating a node.
*/
if (user_access("administer nodes")) {
$fields = array("nid", "uid", "body", "comment", "promote", "moderate", "status", "teaser", "title", "created", "type" => $node->type);
}
else {
$fields = array("nid", "uid" => $user->uid, "body", "teaser", "title", "type" => $node->type);
}
node_save($node, array_merge($fields, module_invoke($node->type, "save", $node)));
$output = t("The node has been updated.");
}
else {
watchdog("warning", "node: not authorized to update node");
$output = t("You are not authorized to update this node.");
}
}
else {
/*
** Check whether the current user has the proper access rights to
** perform this operation:
*/
if (node_access("create", $node)) {
/*
** Compile a list of the node fields and their default values that users
** and administrators are allowed to save when inserting a new node.
*/
if (user_access("administer nodes")) {
$fields = array("uid", "body", "comment" => 1, "promote", "moderate", "status" => 1, "teaser", "title", "type" => $node->type);
}
else {
$fields = array("uid" => $user->uid, "body", "comment" => 1, "teaser", "title", "type" => $node->type);
}
node_save($node, array_merge($fields, module_invoke($node->type, "save", $node)));
$output = t("Thanks for your submission.");
}
else {
watchdog("warning", "node: not authorized to create node");
$output = t("You are not authorized to create this node.");
}
}
return $output;
}
function node_remove($edit) {
$node = node_load(array("nid" => $edit["nid"]));
if (node_access("delete", $node)) {
if ($edit["confirm"]) {
node_delete($node);
$output = t("The node has been deleted.");
}
else {
$output .= form_item(t("Confirm removal of"), check_output($node->title));
$output .= form_hidden("nid", $node->nid);
$output .= form_hidden("confirm", 1);
$output .= form_submit(t("Delete"));
$output = form($output, "post", "admin.php?mod=node");
}
}
else {
watchdog("warning", "node: not authorized to remove node");
$output = t("You are not authorized to remove this node.");
}
return $output;
}
function node_page() {
global $op, $id, $user, $edit, $type, $theme, $meta, $date;
if ($op == "feed") {
node_feed();
return;
}
$theme->header();
switch ($op) {
case "add":
$theme->box(t("Node"), node_add($type));
break;
case "edit":
$theme->box(t("Node"), node_edit($id));
break;
case t("Preview"):
$theme->box(t("Node"), node_preview($edit));
break;
case t("Submit"):
$theme->box(t("Node"), node_submit($edit));
break;
case t("Delete"):
print node_remove($edit);
break;
default:
$result = db_query("SELECT nid, type FROM node WHERE ". ($meta ? "attributes LIKE '%". check_input($meta) ."%' AND " : "") ." promote = '1' AND status = '1' AND created <= '". ($date > 0 ? check_input($date) : time()) ."' ORDER BY created DESC LIMIT ". ($user->nodes ? $user->nodes : variable_get(default_nodes_main, 10)));
while ($node = db_fetch_object($result)) {
node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1);
}
}
$theme->footer();
}
?>
|