2001-04-02 15:54:37 +00:00
<?php
2001-05-05 13:57:29 +00:00
class Node {
function Node($node) {
global $user;
$this->userid = $node[userid] ? $node[userid] : $user->userid;
$this->title = $node[title];
$this->timestamp = $node[timestamp] ? $node[timestamp] : time();
$this->cid = $node[cid];
$this->tid = $node[tid];
}
}
2001-04-02 15:54:37 +00:00
2001-05-20 13:51:40 +00:00
function node_conf_filters() {
$output .= form_select(t("Strip HTML tags"), "filter_html", variable_get("filter_html", 0), array("Disabled", "Enabled"), t("Strip HTML and PHP tags."));
$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("Strip link tags"), "filter_link", variable_get("filter_link", 0), array("Disabled", "Enabled"), t("Substitute special [[link]] tags."));
$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) {
2001-05-17 20:50:15 +00:00
$src = array("/\[\[(([^\|]*?)(\|([^\|]*?))?)\]\]/e"); // [link|description]
$dst = array(format_tag('\\2', '\\4')); // [link|description]
return preg_replace($src, $dst, $text);
}
2001-05-20 13:51:40 +00:00
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;
}
2001-04-10 20:07:27 +00:00
function node_overview($query = array()) {
2001-05-02 20:52:19 +00:00
global $user;
2001-04-02 15:54:37 +00:00
2001-04-16 18:21:22 +00:00
$result = db_query("SELECT n.*, u.userid, c.name AS category FROM node n LEFT JOIN users u ON n.author = u.id LEFT JOIN category c ON n.cid = c.cid $query[1] LIMIT 50");
2001-04-02 15:54:37 +00:00
2001-04-10 20:07:27 +00:00
$output .= status($query[0]);
2001-04-02 15:54:37 +00:00
$output .= "<TABLE BORDER=\"1\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n";
2001-05-02 20:52:19 +00:00
$output .= " <TR><TH>title</TH><TH>category</TH><TH>status</TH><TH>author</TH><TH>date</TH><TH COLSPAN=\"2\">operations</TH></TR>\n";
2001-04-02 15:54:37 +00:00
while ($node = db_fetch_object($result)) {
2001-06-02 22:12:35 +00:00
$output .= " <TR><TD><A HREF=\"node.php?id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">". check_output($node->category ? $node->category : $node->type) ."</TD><TD>". node_status($node->status) ."</TD><TD>". format_username($node->userid) ."</TD><TD>". format_date($node->timestamp, "small") ."</TD><TD>". (user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=edit&id=$node->nid\">edit node</A>" : "edit node") ."</TD><TD>". (user_access($user, $node->type) ? "<A HREF=\"admin.php?mod=$node->type&op=edit&id=$node->nid\">edit $node->type</A>" : "edit $node->type") ."</TD></TR>\n";
2001-04-02 15:54:37 +00:00
}
$output .= "</TABLE>\n";
return $output;
}
function node_admin_view($id) {
2001-05-20 16:47:50 +00:00
$node = node_get_object(array("nid" => $id));
2001-04-02 15:54:37 +00:00
2001-05-10 19:47:35 +00:00
$form .= form_item("Title", check_output($node->title));
$form .= form_item("Author", format_username($node->userid));
2001-06-02 22:12:35 +00:00
$form .= form_item("Status", node_status($node->status));
2001-05-10 19:47:35 +00:00
$form .= form_item("Comment", node_comment_status($node->comment));
$form .= form_item("Promote", node_promote_status($node->promote));
$form .= form_item("Moderate", check_output($node->moderate));
$form .= form_item("Date", format_date($node->timestamp));
$form .= form_submit("Edit node");
$form .= form_submit("Delete node");
2001-04-02 15:54:37 +00:00
2001-05-10 19:47:35 +00:00
return form("admin.php?mod=node&id=$node->nid", $form);
2001-04-02 15:54:37 +00:00
}
function node_admin_edit($id) {
2001-04-29 12:39:55 +00:00
global $user;
2001-04-02 15:54:37 +00:00
2001-05-20 16:47:50 +00:00
$node = node_get_object(array("nid" => $id));
2001-04-02 15:54:37 +00:00
2001-05-10 19:47:35 +00:00
$form .= form_item("Title", check_output($node->title));
$form .= form_select("Author", "author", $node->author, array($node->author => $node->userid, $user->id => $user->userid));
2001-06-02 22:12:35 +00:00
$form .= form_select("Status", "status", $node->status, node_status($node->type));
2001-05-10 19:47:35 +00:00
$form .= form_select("Comment", "comment", $node->comment, node_comment_status());
$form .= form_select("Promote", "promote", $node->promote, node_promote_status());
$form .= form_textfield("Moderate", "moderate", $node->moderate, 35, 255, t("Provide a comma-seperated list of the moderators their usernames."));
$form .= form_select("Date", "timestamp", $node->timestamp, array($node->timestamp => format_date($node->timestamp) ." (original)", time() => format_date(time()) ." (current)"));
$form .= form_hidden("nid", $node->nid);
$form .= form_submit("Save node");
2001-06-02 22:12:35 +00:00
$form .= form_submit("View node");
2001-04-02 15:54:37 +00:00
2001-05-10 19:47:35 +00:00
return form("admin.php?mod=node&id=$node->nid", $form);
2001-04-02 15:54:37 +00:00
}
function node_delete($id) {
2001-04-07 15:02:28 +00:00
return (node_del("nid", $id) ? "node has been deleted." : "failed to delete node: node must be dumped first.");
2001-04-02 15:54:37 +00:00
}
2001-04-10 20:07:27 +00:00
function node_query($type = "") {
global $status;
2001-04-11 19:44:24 +00:00
$queries = array(array("recent nodes", "ORDER BY n.timestamp DESC"), array("posted nodes", "WHERE n.status = '$status[posted]' ORDER BY n.timestamp DESC"), array("queued nodes", "WHERE n.status = '$status[queued]' ORDER BY n.timestamp DESC"), array("dumped nodes", "WHERE n.status = '$status[dumped]' ORDER BY n.timestamp DESC"));
2001-04-10 20:07:27 +00:00
return ($queries[$type] ? $queries[$type] : $queries);
}
2001-04-11 19:44:24 +00:00
function node_listing($queries) {
global $mod;
foreach ($queries as $key=>$array) {
$output .= "<LI><A HREF=\"admin.php?mod=$mod&type=$key\">$array[0]</A></LI>\n";
2001-04-10 20:07:27 +00:00
}
return "<OL>$output</OL>\n";
}
2001-06-02 22:12:35 +00:00
function node_setting() {
global $REQUEST_URI;
$threshold_post = array(1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 10 => 10, 11 => 11, 12 => 12, 13 => 13, 14 => 14, 15 => 15, 20 => 20, 25 => 25, 30 => 30, 35 => 35, 40 => 40, 45 => 45, 50 => 50, 60 => 60, 70 => 70, 80 => 80, 90 => 90, 100 => 100);
$threshold_dump = array(-1 => -1, -2 => -2, -3 => -3, -4 => -4, -5 => -5, -6 => -6, -7 => -7, -8 => -8, -9 => -9, -10 => -10, -11 => -11, -12 => -12, -13 => -13, -14 => -14, -15 => -15, -20 => -20, -25 => -25, -30 => -30);
$threshold_expire = array(1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 10 => 10, 11 => 11, 12 => 12, 13 => 13, 14 => 14, 15 => 15, 20 => 20, 25 => 25, 30 => 30, 35 => 35, 40 => 40, 45 => 45, 50 => 50, 60 => 60, 70 => 70, 80 => 80, 90 => 90, 100 => 100);
foreach (module_list() as $name) {
if (module_hook($name, "user")) {
$form .= "<H3>Default settings for $name nodes</H3>";
$form .= form_select(t("Comment"), $name ."_comment", variable_get($name ."_comment", 0), node_comment_status(), t("By default, allow or dissallow users to post comments in this category."));
$form .= form_select(t("Promote"), $name ."_promote", variable_get($name ."_promote", 0), node_promote_status(), t("By default, promote new submissions in this category to the front page."));
$form .= form_select(t("Status"), $name ."_status", variable_get($name ."_status", node_status("queued")), node_status($name), t("What to do with new submissions in this category?"));
$form .= form_select(t("Post threshold"), $name ."_post", variable_get($name ."_post", 4), $threshold_post, t("If new submissions are subject to moderation, select a post threshold."));
$form .= form_select(t("Dump threshold"), $name ."_dump", variable_get($name ."_dump", -2), $threshold_dump, t("If new submissions are subject to moderation, select a dump threshold."));
$form .= form_select(t("Expiration threshold"), $name ."_expire", variable_get($name ."_expire", 8), $threshold_expire, t("If new submissions are subject to moderation, select a expiration threshold."));
$form .= form_textfield("Moderate", $name ."_moderate", variable_get($name ."_moderate", ""), 35, 255, t("Provide a comma-seperated list of the moderators' usernames."));
}
}
$form .= form_submit("Save settings");
$form .= form_submit("Reset to defaults");
return form($REQUEST_URI, $form);
}
2001-04-02 15:54:37 +00:00
function node_admin() {
2001-04-10 20:07:27 +00:00
global $op, $id, $edit, $type;
2001-06-02 22:12:35 +00:00
print "<SMALL><A HREF=\"admin.php?mod=node&op=default\">node settings</A> | <A HREF=\"admin.php?mod=node&op=listing\">node listings</A> | <A HREF=\"admin.php?mod=node\">overview</A></SMALL><HR>\n";
2001-04-02 15:54:37 +00:00
$id = check_input($edit[nid] ? $edit[nid] : $id);
2001-04-10 20:07:27 +00:00
$type = ($type ? $type : 0);
2001-04-02 15:54:37 +00:00
switch ($op) {
case "Edit node":
case "edit":
print node_admin_edit($id);
break;
2001-06-02 22:12:35 +00:00
case "default":
print node_setting();
break;
2001-04-02 15:54:37 +00:00
case "Delete node":
print status(node_delete($id));
print node_overview();
break;
2001-04-10 20:07:27 +00:00
case "listing":
2001-04-11 19:44:24 +00:00
print node_listing(node_query());
2001-04-10 20:07:27 +00:00
break;
2001-06-03 09:32:14 +00:00
case "Save settings":
2001-06-02 22:12:35 +00:00
print status(conf_save($edit));
print node_default();
break;
case "Reset to defaults":
print status(conf_default($edit));
print node_default();
break;
2001-04-02 15:54:37 +00:00
case "Save node":
2001-06-02 22:12:35 +00:00
node_save($edit, array(author, comment, moderate, promote, status, timestamp));
2001-04-07 15:02:28 +00:00
print node_admin_view($id);
2001-04-02 15:54:37 +00:00
break;
case "View node":
case "view":
print node_admin_view($id);
break;
default:
2001-04-10 20:07:27 +00:00
print node_overview(node_query($type));
2001-04-02 15:54:37 +00:00
}
}
?>