2001-04-02 15:54:37 +00:00
<?php
2001-10-20 18:57:09 +00:00
// $Id$
2001-04-02 15:54:37 +00:00
2001-06-06 20:26:12 +00:00
function node_help() {
global $mod;
if ($mod == "node") {
foreach (module_list() as $name) {
2002-03-26 21:33:23 +00:00
if (module_hook($name, "node") && $name != "node") {
2001-08-15 14:13:14 +00:00
print "<h3>". ucfirst($name) ." type</h3>";
2001-06-06 20:26:12 +00:00
print module_invoke($name, "help");
}
}
}
}
2002-06-01 21:57:29 +00:00
function node_system($field){
2002-06-08 16:17:29 +00:00
$system["description"] = t("The core that allows content to be submitted to the site.");
2002-06-01 21:57:29 +00:00
return $system[$field];
}
2001-12-08 11:12:26 +00:00
function node_teaser($body) {
$size = 400;
/*
** If we have a short body, return the entire body:
*/
if (strlen($body) < $size) {
return $body;
}
/*
** If we have a long body, try not to split paragraphs:
*/
if ($length = strpos($body, "\n", $size)) {
return substr($body, 0, $length + 1);
}
/*
** If we have a long body, try not to split sentences:
*/
return substr($body, 0, strpos($body, ". ", $size) + 1);
}
function node_invoke($node, $name, $arg = 0) {
if (is_array($node)) {
2002-03-05 20:15:17 +00:00
$function = $node["type"] ."_$name";
2001-12-08 11:12:26 +00:00
}
else if (is_object($node)) {
$function = $node->type ."_$name";
}
else if (is_string($node)) {
$function = $node ."_$name";
}
if (function_exists($function)) {
return ($arg ? $function($node, $arg) : $function($node));
}
}
function node_load($conditions) {
/*
** Turn the conditions into a query:
*/
foreach ($conditions as $key => $value) {
$cond[] = "n.". check_query($key) ." = '". check_query($value) ."'";
}
/*
** Retrieve the node:
*/
$node = db_fetch_object(db_query("SELECT n.*, u.uid, u.name FROM node n LEFT JOIN users u ON u.uid = n.uid WHERE ". implode(" AND ", $cond)));
/*
** Unserialize the revisions field:
*/
if ($node->revisions) {
$node->revisions = unserialize($node->revisions);
}
/*
** Call the node specific callback (if any) and piggy-back the
** results to the node or overwrite some values:
*/
if ($extra = module_invoke($node->type, "load", $node)) {
foreach ($extra as $key => $value) {
$node->$key = $value;
}
}
return $node;
}
function node_save($node, $filter) {
2002-01-31 14:03:17 +00:00
$fields = array("nid", "uid", "type", "title", "teaser", "body", "revisions", "score", "status", "comment", "promote", "static", "moderate", "created", "changed", "users", "votes");
2001-12-08 11:12:26 +00:00
foreach ($filter as $key => $value) {
/*
** Only save those fields specified by the filter. If the filter
** does not specify a default value, use the value of the $node's
** corresponding field instead.
*/
if (is_numeric($key)) {
if (isset($node->$value)) {
// The above check is mandatory.
$edit->$value = $node->$value;
}
}
else {
if (isset($value)) {
// The above check is mandatory.
$edit->$key = $value;
}
}
}
$node = $edit;
/*
** Serialize the revisions field:
*/
if ($node->revisions) {
$node->revisions = serialize($node->revisions);
}
/*
** Apply filters to some default node fields:
*/
if (empty($node->nid)) {
/*
** Insert a new node:
*/
2001-12-08 13:11:33 +00:00
// Set some required fields:
2001-12-08 11:12:26 +00:00
$node->created = time();
2001-12-08 13:11:33 +00:00
$node->changed = time();
2001-12-08 11:12:26 +00:00
$node->nid = db_result(db_query("SELECT MAX(nid) + 1 FROM node"));
2002-04-14 20:46:41 +00:00
$node->nid = empty($node->nid) ? 1 : $node->nid;
2001-12-08 11:12:26 +00:00
2001-12-08 13:11:33 +00:00
// Prepare the query:
2001-12-08 11:12:26 +00:00
foreach ($node as $key => $value) {
if (in_array($key, $fields)) {
$k[] = check_query($key);
$v[] = "'". check_query($value) ."'";
}
}
2001-12-08 13:11:33 +00:00
// Insert the node into the database:
2001-12-08 11:12:26 +00:00
db_query("INSERT INTO node (". implode(", ", $k) .") VALUES (". implode(", ", $v) .")");
2001-12-08 13:11:33 +00:00
// Call the node specific callback (if any):
2001-12-08 11:12:26 +00:00
module_invoke($node->type, "insert", $node);
}
else {
/*
** Update an existing node:
*/
2001-12-08 13:11:33 +00:00
// Set some required fields:
2001-12-08 11:12:26 +00:00
$node->changed = time();
2001-12-08 13:11:33 +00:00
// Prepare the query:
2001-12-08 11:12:26 +00:00
foreach ($node as $key => $value) {
if (in_array($key, $fields)) {
$q[] = check_query($key) ." = '". check_query($value) ."'";
}
}
2001-12-08 13:11:33 +00:00
// Update the node in the database:
2001-12-08 11:12:26 +00:00
db_query("UPDATE node SET ". implode(", ", $q) ." WHERE nid = '$node->nid'");
2001-12-08 13:11:33 +00:00
// Call the node specific callback (if any):
2001-12-08 11:12:26 +00:00
module_invoke($node->type, "update", $node);
}
/*
** Return the node ID:
*/
return $node->nid;
}
function node_view($node, $main = 0) {
global $theme;
2001-12-30 16:16:38 +00:00
$node = array2object($node);
2001-12-08 11:12:26 +00:00
/*
** The "view" hook can be implemented to overwrite the default function
** to display nodes.
*/
if (module_hook($node->type, "view")) {
node_invoke($node, "view", $main);
}
else {
/*
** Default behavior:
*/
$theme->node($node, $main);
}
}
2001-11-01 17:04:20 +00:00
function node_access($op, $node = 0) {
2001-11-03 18:38:30 +00:00
if (user_access("administer nodes")) {
return 1;
2001-11-01 17:04:20 +00:00
}
2001-11-03 18:38:30 +00:00
else {
2001-11-01 17:04:20 +00:00
2001-11-03 18:38:30 +00:00
/*
** Convert the node to an object if necessary:
*/
2001-11-01 17:04:20 +00:00
2001-12-30 16:16:38 +00:00
$node = array2object($node);
2001-11-01 17:04:20 +00:00
2001-11-03 18:38:30 +00:00
/*
** Construct a function:
*/
2001-12-06 17:33:05 +00:00
if ($node->type) {
$type = $node->type;
}
else {
$type = $node;
}
$function = $type ."_access";
2001-11-03 18:38:30 +00:00
if (function_exists($function)) {
return $function($op, $node);
}
else {
return 0;
}
2001-11-01 17:04:20 +00:00
}
}
2001-06-20 20:00:40 +00:00
function node_perm() {
2001-06-30 09:50:36 +00:00
return array("administer nodes", "access content", "post content");
2001-06-20 20:00:40 +00:00
}
2001-11-01 11:00:51 +00:00
function node_search($keys) {
2001-11-25 12:18:51 +00:00
global $PHP_SELF;
2001-11-01 11:00:51 +00:00
2002-03-05 20:15:17 +00:00
// Return the results of performing a search using the indexed search
// for this particular type of node.
//
// Pass an array to the "do_search" function which dictates what it
// will search through, and what it will search for
//
// "keys"'s value is the keywords entered by the user
//
// "type"'s value is used to identify the node type in the search
// index.
//
// "select"'s value is used to relate the data from the specific nodes
2002-03-26 21:33:23 +00:00
// table to the data that the search_index table has in it, and the the
2002-03-05 20:15:17 +00:00
// do_search functino will rank it.
//
2002-03-26 21:33:23 +00:00
// The select must always provide the following fields - lno, title,
2002-03-05 20:15:17 +00:00
// created, uid, name, count
//
2002-04-22 09:05:36 +00:00
$find = do_search(array("keys" => $keys, "type" => "node", "select" => "select s.lno as lno, n.title as title, n.created as created, u.uid as uid, u.name as name, s.count as count FROM search_index s, node n LEFT JOIN users u ON n.uid = u.uid WHERE s.lno = n.nid AND s.type = 'node' AND s.word like '%' AND n.status = 1"));
2002-03-26 21:33:23 +00:00
2001-11-01 11:00:51 +00:00
return $find;
}
2001-06-17 20:35:48 +00:00
function node_conf_options() {
2001-11-01 22:54:16 +00:00
$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."));
2001-06-17 20:35:48 +00:00
return $output;
}
2001-05-20 13:51:40 +00:00
function node_conf_filters() {
2001-09-26 20:50:12 +00:00
$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."));
2002-01-14 10:50:04 +00:00
$output .= form_textfield(t("Allowed HTML tags"), "allowed_html", variable_get("allowed_html", "<a> <b> <dd> <dl> <dt> <i> <li> <ol> <u> <ul>"), 64, 255, t("If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped."));
2001-08-15 14:13:14 +00:00
$output .= "<hr />";
2001-09-26 20:50:12 +00:00
$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."));
2001-08-15 14:13:14 +00:00
$output .= "<hr />";
2001-05-20 13:51:40 +00:00
return $output;
}
function node_filter_html($text) {
2002-05-03 20:35:34 +00:00
$text = eregi_replace("([ \f\r\t\n\'\"])style=[^>]+>", "\\1", $text);
$text = eregi_replace("([ \f\r\t\n\'\"])on[a-z]+=[^>]+>", "\\1", $text);
2001-05-20 13:51:40 +00:00
$text = strip_tags($text, variable_get("allowed_html", ""));
return $text;
}
function node_filter_link($text) {
2002-05-04 18:56:43 +00:00
$pat = '\[{2}([^\|]+)(\|([^\|]+)?)?\]{2}'; // [link|description]
2002-05-03 20:27:53 +00:00
$dst = str_replace('%5C1', '\\1', format_tag('\\1', '\\3')); // [link|description]
2002-05-04 18:56:43 +00:00
return ereg_replace($pat, $dst, $text);
2001-05-17 20:50:15 +00:00
}
2001-11-20 20:44:32 +00:00
function node_filter_line($text) {
2001-12-22 16:34:57 +00:00
2001-11-20 20:44:32 +00:00
/*
2001-12-22 16:34:57 +00:00
** This "line break filter" will try to get the line breaks right
** regardless of the user's input. Its goal aspires a consistent
** mark-up and use of line breaks and paragraphs.
*/
/*
** If HTML mark-up is being used, strip regular line breaks:
2001-11-20 20:44:32 +00:00
*/
if (strstr($text, "<br />") || strstr($text, "<p>")) {
2001-11-20 22:53:26 +00:00
$text = ereg_replace("[\r\n]", "", $text);
2001-11-20 20:44:32 +00:00
}
/*
** Replace '<br>', '<br />', '<p>' and '<p />' by '\n':
*/
2002-03-05 20:15:17 +00:00
$text = eregi_replace("<br />", "\n", $text);
2001-11-20 20:44:32 +00:00
$text = eregi_replace("<br />", "\n", $text);
$text = eregi_replace("<p>", "\n", $text);
2001-12-22 16:34:57 +00:00
$text = eregi_replace("<p />", "\n", $text);
2001-11-20 20:44:32 +00:00
/*
2001-12-22 16:34:57 +00:00
** Replace '\r\n' by '\n':
2001-11-20 20:44:32 +00:00
*/
$text = ereg_replace("\r\n", "\n", $text);
/*
** Replace some new line charachters:
*/
while (strpos($text, "\n\n\n")) {
$text = ereg_replace("\n\n\n", "\n\n", $text);
}
2001-11-20 22:51:06 +00:00
2001-12-22 16:34:57 +00:00
/*
** Replace some common "artifacts":
*/
$list = "blockquote|li|ol|ul|table|th|td|tr|pre";
$text = preg_replace(array("/\n\s*<([\/])($list)/", "/($list)>\s*\n/"), array("<$1$2", "$1>"), $text);
2001-11-20 20:44:32 +00:00
return trim($text);
}
2002-04-14 20:46:41 +00:00
function node_comment_mode($nid) {
2002-06-23 13:42:29 +00:00
static $comment_mode;
if (!isset($comment_mode[$nid])) {
$comment_mode[$nid] = db_result(db_query("SELECT comment FROM node WHERE nid = '%s'", $nid));
}
return $comment_mode[$nid];
2002-04-14 20:46:41 +00:00
}
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);
2001-11-20 20:44:32 +00:00
return node_filter_line($text);
2001-05-20 13:51:40 +00:00
}
2001-11-23 17:10:46 +00:00
function node_link($type, $node = 0, $main = 0) {
2001-06-29 22:08:57 +00:00
2001-07-14 12:12:41 +00:00
if ($type == "admin" && user_access("administer nodes")) {
2002-04-20 11:52:50 +00:00
$links[] = la(t("content management"), array("mod" => "node"));
2001-11-01 11:00:51 +00:00
}
2001-11-25 12:18:51 +00:00
if ($type == "page" && user_access("post content")) {
2002-05-12 15:40:57 +00:00
$links[] = lm(t("submit"), array("mod" => "node", "op" => "add"), "", array("title" => t("Submit or suggest new content.")));
2001-06-29 22:08:57 +00:00
}
2001-07-14 12:12:41 +00:00
if ($type == "node") {
2001-08-02 15:54:09 +00:00
if ($node->links) {
$links = $node->links;
}
2001-11-01 11:00:51 +00:00
2001-12-06 17:33:05 +00:00
if ($main == 1 && $node->teaser != $node->body) {
2002-05-12 15:40:57 +00:00
$links[] = l(t("read more"), array("id" => $node->nid), "node", "", array("title" => t("Read the rest of this posting.")));
2001-06-29 22:08:57 +00:00
}
2001-11-01 11:00:51 +00:00
if (user_access("administer nodes")) {
2002-05-12 15:40:57 +00:00
$links[] = la(t("administer"), array("mod" => "node", "op" => "edit", "id" => $node->nid), "", array("title" => t("Administer this node.")));
2001-11-01 11:00:51 +00:00
}
2001-06-29 22:08:57 +00:00
}
return $links ? $links : array();
}
2001-11-01 11:00:51 +00:00
function node_admin_settings($edit = array()) {
2001-06-17 18:31:25 +00:00
global $op;
2001-11-01 11:00:51 +00:00
if ($op == t("Save configuration")) {
/*
** Save the configuration options:
*/
2001-06-04 15:40:39 +00:00
2001-11-03 18:38:30 +00:00
foreach ($edit as $name => $value) {
variable_set($name, $value);
}
2001-04-02 15:54:37 +00:00
}
2001-11-01 11:00:51 +00:00
if ($op == t("Reset to defaults")) {
/*
** Reset the configuration options to their default value:
*/
2001-04-02 15:54:37 +00:00
2002-05-11 16:21:48 +00:00
foreach ($edit as $name => $value) {
2001-11-03 18:38:30 +00:00
variable_del($name);
}
2001-11-01 11:00:51 +00:00
}
2001-06-04 15:40:39 +00:00
2001-11-03 18:38:30 +00:00
$output .= "<h3>". t("Global node settings") ."</h3>";
2001-11-01 11:00:51 +00:00
$output .= node_conf_options();
2001-11-03 18:38:30 +00:00
foreach (module_list() as $name) {
if (module_hook($name, "conf_options") && module_hook($name, "node")) {
2001-11-07 18:14:46 +00:00
$output .= "<h3>". ucfirst(module_invoke($name, "node", "name") ." settings") ."</h3>";
2001-11-03 18:38:30 +00:00
$output .= module_invoke($name, "conf_options");
}
}
2001-11-01 11:00:51 +00:00
$output .= form_submit(t("Save configuration"));
$output .= form_submit(t("Reset to defaults"));
2001-06-04 15:40:39 +00:00
2001-11-01 11:00:51 +00:00
return form($output);
2001-06-17 18:31:25 +00:00
}
2001-11-01 11:00:51 +00:00
function node_admin_edit($node) {
2001-06-17 18:31:25 +00:00
2001-11-01 11:00:51 +00:00
if (is_numeric($node)) {
2001-11-03 18:38:30 +00:00
$node = node_load(array("nid" => $node));
2001-11-01 11:00:51 +00:00
}
2001-09-27 20:51:26 +00:00
2001-11-01 11:00:51 +00:00
/*
** Edit node:
*/
2001-09-25 17:10:44 +00:00
2001-11-07 18:14:46 +00:00
$output .= "<h3>". t("Edit") ." ". module_invoke($node->type, "node", "name") ."</h3>";
2001-09-27 20:51:26 +00:00
2001-11-01 11:00:51 +00:00
$output .= node_form($node);
2001-09-25 17:10:44 +00:00
2001-11-03 18:38:30 +00:00
/*
** Edit revisions:
*/
if ($node->revisions) {
$output .= "<h3>". t("Edit revisions") ."</h3>";
$output .= "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">";
$output .= " <tr><th>older revisions</th><th colspan=\"3\">operations</th></tr>";
foreach ($node->revisions as $key => $revision) {
2002-05-11 16:21:48 +00:00
$output .= " <tr><td>". t("revision #%r revised by %u on %d", array("%r" => $key, "%u" => format_name(user_load(array("uid" => $revision["uid"]))), "%d" => format_date($revision["timestamp"], "small"))) . ($revision["history"] ? "<br /><small>". $revision["history"] ."</small>" : "") ."</td><td>". l(t("view revision"), array("id" => $node->nid, "revision" => $key)) ."</td><td>". la(t("rollback revision"), array("mod" => "node", "op" => "rollback+revision", "id" => $node->nid, "revision" => $key)) ."</td><td>". la(t("delete revision"), array("mod" => "node", "op" => "delete+revision", "id" => $node->nid, "revision" => $key)) ."</td></tr>";
2001-11-03 18:38:30 +00:00
}
$output .= "</table>";
}
2001-11-01 11:00:51 +00:00
/*
2001-12-05 20:22:58 +00:00
** Display the node form extensions:
2001-11-01 11:00:51 +00:00
*/
2001-09-27 20:51:26 +00:00
2001-12-05 20:22:58 +00:00
foreach (module_list() as $name) {
$output .= module_invoke($name, "node_link", $node);
2001-06-04 15:40:39 +00:00
}
2001-11-01 11:00:51 +00:00
return $output;
2001-04-10 20:07:27 +00:00
}
2001-11-01 11:00:51 +00:00
function node_admin_nodes() {
global $query;
2001-06-02 22:12:35 +00:00
2001-11-01 11:00:51 +00:00
$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"));
2001-06-02 22:12:35 +00:00
2001-12-08 13:11:33 +00:00
$result = db_query("SELECT n.*, u.name, u.uid FROM node n LEFT JOIN users u ON n.uid = u.uid ". $queries[$query ? $query : 1][0] ." LIMIT 50");
2001-06-02 22:12:35 +00:00
2001-11-01 11:00:51 +00:00
foreach ($queries as $key => $value) {
2002-04-20 11:52:50 +00:00
$links[] = la($value[1], array("mod" => "node", "op" => "nodes", "query" => $key));
2001-06-04 15:40:39 +00:00
}
2001-11-01 11:00:51 +00:00
$output .= "<small>". implode(" :: ", $links) ."</small><hr />";
2001-10-09 21:01:47 +00:00
2001-11-01 11:00:51 +00:00
$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)) {
2002-06-08 16:17:29 +00:00
$output .= "<tr><td>". l(check_output($node->title), array("id" => $node->nid)) ."</td><td>". module_invoke($node->type, "node", "name") ."</td><td nowrap=\"nowrap\">". format_name($node) ."</td><td>". ($node->status ? t("published") : t("not published")) ."</td><td nowrap=\"nowrap\">". la(t("edit node"), array("mod" => "node", "op" => "edit", "id" => $node->nid)) ."</td><td nowrap=\"nowrap\">". la(t("delete node"), array("mod" => "node", "op" => "delete", "id" => $node->nid)) ."</td></tr>";
2001-10-09 21:01:47 +00:00
}
2001-11-01 11:00:51 +00:00
$output .= "</table>";
2001-10-09 21:01:47 +00:00
2001-06-17 18:31:25 +00:00
return $output;
2001-06-04 15:40:39 +00:00
}
2001-11-05 22:59:11 +00:00
/*
** Return the revision with the specified revision number.
*/
function node_revision_load($node, $revision) {
return $node->revisions[$revision]["node"];
}
/*
** Create and return a new revision of the given node.
*/
2001-11-03 18:38:30 +00:00
function node_revision_create($node) {
global $user;
2001-11-04 23:30:39 +00:00
/*
** 'revision' is the name of the field used to indicicate that we
** have to create a new revision of a node.
*/
2001-11-03 18:38:30 +00:00
if ($node->nid && $node->revision) {
2001-11-04 15:57:43 +00:00
$prev = node_load(array("nid" => $node->nid));
$node->revisions = $prev->revisions;
unset($prev->revisions);
$node->revisions[] = array("uid" => $user->uid, "timestamp" => time(), "node" => $prev, "history" => $node->history);
2001-11-03 18:38:30 +00:00
}
return $node;
}
2001-11-05 22:59:11 +00:00
/*
** Roll-back to the revision with the specified revision number.
*/
2001-11-03 18:38:30 +00:00
2001-11-05 22:59:11 +00:00
function node_revision_rollback($node, $revision) {
global $user;
2001-11-03 18:38:30 +00:00
/*
** Extract the specified revision:
*/
$rev = $node->revisions[$revision]["node"];
/*
** Inherit all the past revisions:
*/
$rev->revisions = $node->revisions;
/*
** Save the original/current node:
*/
$rev->revisions[] = array("uid" => $user->uid, "timestamp" => time(), "node" => $node);
/*
** Remove the specified revision:
*/
unset($rev->revisions[$revision]);
/*
** Save the node:
*/
foreach ($node as $key => $value) {
$filter[] = $key;
}
node_save($rev, $filter);
2001-11-24 10:02:15 +00:00
watchdog("special", "$node->type: rollbacked to revision #$revision of '$node->title'");
2001-11-03 18:38:30 +00:00
}
2001-11-05 22:59:11 +00:00
/*
** Delete the revision with specified revision number.
*/
function node_revision_delete($node, $revision) {
2001-11-03 18:38:30 +00:00
unset($node->revisions[$revision]);
2001-11-04 23:30:39 +00:00
2001-11-03 18:38:30 +00:00
node_save($node, array("nid", "revisions"));
2001-11-04 23:30:39 +00:00
2001-11-24 10:02:15 +00:00
watchdog("special", "$node->type: removed revision #$revision of '$node->title'");
2001-11-04 23:30:39 +00:00
}
2001-11-05 22:59:11 +00:00
/*
** Return a list of all the existing revision numbers.
*/
function node_revision_list($node) {
if (is_array($node->revisions)) {
return array_keys($node->revisions);
}
else {
return array();
}
2001-11-03 18:38:30 +00:00
}
2001-04-02 15:54:37 +00:00
function node_admin() {
2001-11-03 18:38:30 +00:00
global $op, $id, $revision, $edit;
2001-04-10 20:07:27 +00:00
2001-06-29 22:08:57 +00:00
if (user_access("administer nodes")) {
2001-06-20 20:00:40 +00:00
2001-11-01 11:00:51 +00:00
/*
** Compile a list of the administrative links:
*/
2001-06-04 15:40:39 +00:00
2002-04-20 11:52:50 +00:00
$links[] = la(t("nodes"), array("mod" => "node", "op" => "nodes"));
$links[] = la(t("search content"), array("mod" => "node", "op" => "search"));
$links[] = la(t("settings"), array("mod" => "node", "op" => "settings"));
$links[] = la(t("help"), array("mod" => "node", "op" => "help"));
2001-06-20 20:00:40 +00:00
2001-11-01 11:00:51 +00:00
print "<small>". implode(" · ", $links) ."</small><hr />";
2001-06-20 20:00:40 +00:00
switch ($op) {
case "help":
print node_help();
break;
case "search":
2002-04-20 11:52:50 +00:00
print search_type("node", drupal_url(array("mod" => "node", "op" => "search"), "admin"));
2001-06-20 20:00:40 +00:00
break;
2001-11-01 11:00:51 +00:00
case t("Save configuration"):
case t("Reset to defaults"):
case "settings":
print node_admin_settings($edit);
2001-06-20 20:00:40 +00:00
break;
case "edit":
2001-11-01 11:00:51 +00:00
print node_admin_edit($id);
2001-06-20 20:00:40 +00:00
break;
2001-11-07 18:14:46 +00:00
case "delete":
print node_delete(array("nid" => $id));
break;
2001-11-03 18:38:30 +00:00
case "rollback revision":
2001-11-05 22:59:11 +00:00
print node_revision_rollback(node_load(array("nid" => $id)), $revision);
print node_admin_edit($id);
2001-11-03 18:38:30 +00:00
break;
case "delete revision":
2001-11-05 22:59:11 +00:00
print node_revision_delete(node_load(array("nid" => $id)), $revision);
print node_admin_edit($id);
2001-11-03 18:38:30 +00:00
break;
2001-07-18 08:09:46 +00:00
case t("Preview"):
2001-11-01 11:00:51 +00:00
print node_preview($edit);
2001-06-20 20:00:40 +00:00
break;
2001-07-18 08:09:46 +00:00
case t("Submit"):
2001-11-01 11:00:51 +00:00
print node_submit($edit);
break;
case t("Delete"):
2001-11-03 18:38:30 +00:00
print node_delete($edit);
2001-11-01 11:00:51 +00:00
break;
2001-06-20 20:00:40 +00:00
default:
2001-11-01 11:00:51 +00:00
print node_admin_nodes();
2001-06-20 20:00:40 +00:00
}
}
else {
print message_access();
2001-04-02 15:54:37 +00:00
}
}
2001-07-15 16:56:44 +00:00
function node_block() {
global $theme;
$block[0][subject] = t("Syndicate");
2002-05-12 15:40:57 +00:00
$block[0][content] = "<div align=\"center\">". lm("<img src=\"". $theme->image("xml.gif") ."\" width=\"36\" height=\"14\" border=\"0\" alt=\"XML\" />", array("mod" => "node", "op" => "feed"), "", array("title" => t("Read the XML version of this page."))) ."</div>\n";
2001-07-15 16:56:44 +00:00
$block[0][info] = "Syndicate";
return $block;
}
2002-06-15 13:48:08 +00:00
function node_feed($nodes = 0, $channel = array()) {
/*
a generic function for generating rss feeds from a set of nodes.
$nodes should be an object as returned by db_query() which contains the nid field
$channel is an associative array containing title, link, and description keys
*/
2001-07-15 16:56:44 +00:00
2002-06-15 13:48:08 +00:00
if (!$nodes) {
$nodes = db_query("SELECT nid FROM node WHERE promote = '1' AND status = '1' ORDER BY created DESC LIMIT 15");
}
2001-07-15 16:56:44 +00:00
2002-06-15 13:48:08 +00:00
while ($node = db_fetch_object($nodes)) {
$item = node_load(array("nid" => $node->nid));
$link = path_uri(). drupal_url(array("id" => $item->nid), "node");
2001-11-01 11:00:51 +00:00
$items .= format_rss_item($item->title, $link, $item->teaser);
2001-07-15 16:56:44 +00:00
}
2002-06-15 13:48:08 +00:00
$output .= "<?xml version=\"1.0\" ". t("encoding=\"ISO-8859-1\""). "?>\n";
2001-11-28 22:00:45 +00:00
// $output .= "<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC \"-//W3C//ENTITIES Latin 1 for XHTML//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent\">\n";
2002-06-15 13:48:08 +00:00
if (!$channel["version"]) $channel["version"] = "0.91";
if (!$channel["title"]) $channel["title"] = variable_get("site_name", "drupal") ." - ". variable_get("site_slogan", "");
if (!$channel["link"]) $channel["link"] = path_uri();
if (!$channel["description"]) $channel["description"] = variable_get("site_mission", "");
if (!$channel["language"]) $channel["language"] = "en";
$output .= "<rss version=\"". $channel["version"] . "\">\n";
$output .= format_rss_channel($channel["title"], $channel["link"], $channel["description"], $items, $channel["language"]);
2001-07-15 16:56:44 +00:00
$output .= "</rss>\n";
2001-08-14 06:52:50 +00:00
header("Content-Type: text/xml");
2001-07-15 16:56:44 +00:00
print $output;
}
2001-11-26 18:27:34 +00:00
function node_validate($node, &$error) {
2001-11-01 11:00:51 +00:00
global $user;
/*
** Convert the node to an object if necessary:
*/
2001-12-30 16:16:38 +00:00
$node = array2object($node);
2001-11-01 11:00:51 +00:00
/*
** Validate the title field:
*/
2001-11-20 22:51:06 +00:00
if (isset($node->title) && !$node->title) {
2001-11-01 11:00:51 +00:00
$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:
*/
2001-11-01 22:54:16 +00:00
if (!$node->created) {
$node->created = time();
2001-11-01 11:00:51 +00:00
}
2001-11-01 22:54:16 +00:00
if (!$node->date) {
$node->date = date("M j, Y g:i a", $node->created);
2001-11-01 11:00:51 +00:00
}
/*
** Validate the "authored by"-field:
*/
2001-11-20 22:51:06 +00:00
if (empty($node->name)) {
/*
** The use of empty() is mandatory in the context of usernames
** as the empty string denotes the anonymous user. In case we
** are dealing with an anomymous user we set the user ID to 0.
*/
$node->uid = 0;
}
else if ($account = user_load(array("name" => $node->name))) {
2001-11-01 22:54:16 +00:00
$node->uid = $account->uid;
2001-11-01 11:00:51 +00:00
}
else {
2002-04-20 11:52:50 +00:00
$error["name"] = "<div style=\"color: red;\">". t("The name '%u' does not exist.", array ("%u" => $node->name)) ."</div>";
2001-11-01 11:00:51 +00:00
}
/*
** Validate the "authored on"-field:
*/
2001-11-01 22:54:16 +00:00
if (strtotime($node->date) > 1000) {
$node->created = strtotime($node->date);
2001-11-01 11:00:51 +00:00
}
else {
$error["date"] = "<div style=\"color: red;\">". t("You have to specifiy a valid date.") ."</div>";
}
2001-11-01 22:54:16 +00:00
2001-11-01 11:00:51 +00:00
}
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
/*
** Do node type specific validation checks.
*/
$function = $node->type ."_validate";
if (function_exists($function)) {
$node = $function($node, $error);
}
2001-11-01 22:54:16 +00:00
return $node;
2001-11-01 11:00:51 +00:00
}
2001-11-03 18:38:30 +00:00
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
function node_form($edit, $error = NULL) {
2001-11-01 11:00:51 +00:00
2001-12-01 15:20:48 +00:00
/*
** Save the referer. We record where the user came from such that we
** can redirect him after having completed the node forms.
*/
referer_save();
2001-11-03 18:38:30 +00:00
/*
** Validate the node:
*/
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
if (!$error) {
2002-06-13 09:19:17 +00:00
/* Only validate if we don't already know the errors. */
$edit = node_validate($edit, $error);
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
}
2001-11-01 11:00:51 +00:00
2001-12-06 17:33:05 +00:00
/*
** Generate a teaser when necessary:
*/
if ($edit->body && !$edit->teaser) {
$edit->teaser = node_teaser($edit->body);
}
2001-11-03 18:38:30 +00:00
/*
** Get the node specific bits:
*/
$function = $edit->type ."_form";
if (function_exists($function)) {
2002-03-05 20:15:17 +00:00
$form .= $function($edit, $help, $error, $param);
2001-11-03 18:38:30 +00:00
}
/*
** Add the help text:
*/
if ($help) {
$output .= "<p>$help</p>";
}
2001-11-05 22:59:11 +00:00
$output .= "<table border=\"0\" cellpadding=\"2\" cellspacing=\"2\">";
$output .= " <tr>";
$output .= " <td valign=\"top\">";
2001-11-01 11:00:51 +00:00
/*
** Add the default fields:
*/
$output .= form_textfield(t("Title"), "title", $edit->title, 60, 64, $error["title"]);
/*
2001-11-03 18:38:30 +00:00
** Add the node specific fields:
2001-11-01 11:00:51 +00:00
*/
2001-11-03 18:38:30 +00:00
$output .= $form;
2001-11-01 11:00:51 +00:00
/*
** Add the hidden fields:
*/
if ($edit->nid) {
$output .= form_hidden("nid", $edit->nid);
}
2001-11-20 22:51:06 +00:00
if (isset($edit->uid)) {
/*
** The use of isset() is mandatory in the context of user IDs as uid
** 0 denotes the anonymous user.
*/
2001-11-01 11:00:51 +00:00
$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"));
}
2001-11-01 17:04:20 +00:00
if ($edit->nid && node_access("delete", $edit)) {
2001-11-01 11:00:51 +00:00
$output .= form_submit(t("Delete"));
}
/*
** Add the admin specific parts:
*/
if (user_access("administer nodes")) {
2001-11-20 22:51:06 +00:00
$output .= "</td><td align=\"left\" valign=\"top\">";
2001-11-01 11:00:51 +00:00
$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 />";
2001-11-03 18:38:30 +00:00
$output .= form_select(t("Set public/published"), "status", $edit->status, array("Disabled", "Enabled"));
2002-06-08 16:17:29 +00:00
// TODO: move this to the queue.module
if (module_exist("queue")) {
$output .= form_select(t("Queue for moderation"), "moderate", $edit->moderate, array("Disabled", "Enabled"));
}
2001-11-03 18:38:30 +00:00
$output .= form_select(t("Promote to front page"), "promote", $edit->promote, array("Disabled", "Enabled"));
2002-01-31 14:03:17 +00:00
$output .= form_select(t("Static on front page"), "static", $edit->static, array("Disabled", "Enabled"));
2002-06-08 16:17:29 +00:00
// TODO: move this to the comment.module
if (module_exist("comment")) {
$output .= form_select(t("Allow users comments"), "comment", $edit->comment, array("Disabled", "Read only", "Read/Write"));
}
2001-11-03 18:38:30 +00:00
$output .= form_select(t("Create new revision"), "revision", $edit->revision, array("Disabled", "Enabled"));
2001-11-01 11:00:51 +00:00
}
2001-11-05 22:59:11 +00:00
$output .= " </td>";
$output .= " </tr>";
$output .= "</table>";
2002-03-05 20:15:17 +00:00
return form($output, ($param["method"] ? $param["method"] : "post"), $param["action"], $param["options"]);
2001-11-01 11:00:51 +00:00
}
function node_add($type) {
global $user;
2002-05-22 23:28:48 +00:00
if (!user_access("post content")) {
return message_access();
}
2001-12-05 20:22:58 +00:00
/*
2001-12-06 11:48:09 +00:00
** If a node type has been specified, validate it existence. If no
2001-12-05 20:22:58 +00:00
** (valid) node type has been provied, display a node type overview.
*/
2001-12-06 17:33:05 +00:00
if ($type && node_access("create", $type)) {
2002-05-23 14:14:48 +00:00
// Initialize settings
2002-06-08 16:17:29 +00:00
$output = node_form(array("uid" => $user->uid, "name" => $user->name, "type" => $type, "status" => 1, "promote" => !module_exist("queue"), "moderate" => module_exist("queue"), "comment" => module_exist("queue") ? 2 : 0));
2001-11-01 11:00:51 +00:00
}
else {
2001-11-01 17:04:20 +00:00
2001-11-20 22:51:06 +00:00
/*
** Compile a list with the different node types and their explanation:
*/
2001-11-07 18:14:46 +00:00
2001-11-01 17:04:20 +00:00
foreach (module_list() as $name) {
2001-11-07 18:14:46 +00:00
if (module_hook($name, "node") && node_access("create", array("type" => $name))) {
$output .= "<li>";
2002-05-12 15:40:57 +00:00
$output .= " ". lm(module_invoke($name, "node", "name"), array("mod" => "node", "op" => "add", "type" => $name), "", array("title" => t("Add a new %s.", array("%s" => module_invoke($name, "node", "name")))));
2001-11-07 18:14:46 +00:00
$output .= " <div style=\"margin-left: 20px;\">". module_invoke($name, "node", "description") ."</div>";
$output .= "</li>";
2001-11-01 17:04:20 +00:00
}
2001-11-01 11:00:51 +00:00
}
2001-11-07 18:14:46 +00:00
$output = t("Choose the appropriate item from the list:") ."<ul>$output</ul>";
2001-11-01 11:00:51 +00:00
}
return $output;
}
function node_edit($id) {
global $user;
2002-05-22 23:28:48 +00:00
if (!user_access("post content")) {
return message_access();
}
2001-11-01 11:00:51 +00:00
$node = node_load(array("nid" => $id));
2001-11-01 17:04:20 +00:00
if (node_access("update", $node)) {
$output = node_form($node);
}
else {
$output = message_access();
}
return $output;
2001-11-01 11:00:51 +00:00
}
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
function node_preview($node, $error = NULL) {
2001-12-08 13:11:33 +00:00
2002-05-22 23:28:48 +00:00
if (!user_access("post content")) {
return message_access();
}
2001-12-08 13:11:33 +00:00
/*
** Convert the array to an object:
*/
2001-12-30 16:16:38 +00:00
$node = array2object($node);
2001-11-01 11:00:51 +00:00
/*
** Load the user's name when needed:
*/
2001-12-08 13:11:33 +00:00
if (isset($node->name)) {
/*
** The use of isset() is mandatory in the context of user IDs as uid
** 0 denotes the anonymous user.
*/
if ($user = user_load(array("name" => $node->name))) {
$node->uid = $user->uid;
2001-11-20 22:51:06 +00:00
}
else {
2001-12-08 13:11:33 +00:00
$node->uid = 0; // anonymous user
2001-11-20 22:51:06 +00:00
}
2001-11-01 11:00:51 +00:00
}
2001-12-18 20:57:46 +00:00
else if ($node->uid) {
2001-12-08 13:11:33 +00:00
$user = user_load(array("uid" => $node->uid));
$node->name = $user->name;
2001-11-01 11:00:51 +00:00
}
/*
** Set the created time when needed:
*/
2001-12-08 13:11:33 +00:00
if (empty($node->nid)) {
$node->created = time();
2001-11-01 11:00:51 +00:00
}
2001-11-18 13:21:35 +00:00
/*
** Apply the required filters:
*/
2001-12-08 13:11:33 +00:00
if ($node->nid) {
2001-12-09 15:15:10 +00:00
$view = array_merge($node, module_invoke($node->type, "save", "update", $node));
2001-12-08 13:11:33 +00:00
}
else {
2001-12-09 15:15:10 +00:00
$view = array_merge($node, module_invoke($node->type, "save", "create", $node));
2001-11-18 13:21:35 +00:00
}
2001-11-01 11:00:51 +00:00
/*
** Display a preview of the node:
*/
2001-12-09 15:15:10 +00:00
node_view($view);
2001-11-01 11:00:51 +00:00
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
return node_form($node, $error);
2001-11-01 11:00:51 +00:00
}
2001-11-01 17:04:20 +00:00
function node_submit($node) {
2002-05-29 17:16:27 +00:00
global $user, $theme;
2002-05-30 20:26:08 +00:00
2002-05-29 17:16:27 +00:00
if (user_access("post content")) {
2001-11-01 11:00:51 +00:00
2001-11-25 12:18:51 +00:00
/*
** Fixup the node when required:
*/
2001-11-24 15:10:36 +00:00
2001-11-26 18:27:34 +00:00
$node = node_validate($node, $error);
2001-11-03 18:38:30 +00:00
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
/*
** If something went wrong, go back to the preview form:
*/
if ($error) {
return node_preview($node, $error);
}
2001-11-01 11:00:51 +00:00
/*
2001-11-25 12:18:51 +00:00
** Create a new revision when required:
2001-11-01 11:00:51 +00:00
*/
2001-11-25 12:18:51 +00:00
$node = node_revision_create($node);
if ($node->nid) {
2001-11-01 17:04:20 +00:00
/*
2001-11-25 12:18:51 +00:00
** Check whether the current user has the proper access rights to
** perform this operation:
2001-11-01 17:04:20 +00:00
*/
2001-11-25 12:18:51 +00:00
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")) {
2002-01-31 14:03:17 +00:00
$fields = array("nid", "uid", "body", "comment", "created", "promote", "static", "moderate", "revisions", "status", "teaser", "title", "type" => $node->type);
2001-11-25 12:18:51 +00:00
}
else {
2001-11-25 15:58:08 +00:00
$fields = array("nid", "uid" => ($user->uid ? $user->uid : 0), "body", "teaser", "title", "type" => $node->type);
2001-11-25 12:18:51 +00:00
}
2001-12-06 17:33:05 +00:00
$nid = node_save($node, array_merge($fields, module_invoke($node->type, "save", "update", $node)));
2001-11-25 12:18:51 +00:00
2002-04-14 20:46:41 +00:00
/*
** Update terms of the node
*/
2002-05-11 16:21:48 +00:00
if (function_exists("taxonomy_node_save")) {
taxonomy_node_save($nid, $node->taxonomy);
}
2002-04-14 20:46:41 +00:00
2001-11-25 12:18:51 +00:00
watchdog("special", "$node->type: updated '$node->title'");
$output = t("The node has been updated.");
2001-11-01 17:04:20 +00:00
}
else {
2001-11-25 12:18:51 +00:00
watchdog("warning", "$node->type: not authorized to update node");
$output = t("You are not authorized to update this node.");
2001-11-01 17:04:20 +00:00
}
2001-11-01 11:00:51 +00:00
}
else {
2001-11-25 12:18:51 +00:00
/*
** Check whether the current user has the proper access rights to
** perform this operation:
*/
2001-11-01 17:04:20 +00:00
2001-11-25 12:18:51 +00:00
if (node_access("create", $node)) {
2001-11-01 11:00:51 +00:00
2001-12-30 16:16:38 +00:00
/*
** Verify a user's submission rate and avoid duplicate nodes being
** inserted:
*/
throttle("node", variable_get("max_node_rate", 900));
2001-11-25 12:18:51 +00:00
/*
** Compile a list of the node fields and their default values that users
** and administrators are allowed to save when inserting a new node.
*/
2001-11-01 11:00:51 +00:00
2001-11-25 12:18:51 +00:00
if (user_access("administer nodes")) {
2002-04-14 20:46:41 +00:00
$fields = array("uid", "body", "comment" => 2, "promote", "moderate", "status" => 1, "teaser", "title", "type" => $node->type);
2001-11-25 12:18:51 +00:00
}
else {
2002-04-14 20:46:41 +00:00
$fields = array("uid" => ($user->uid ? $user->uid : 0), "body", "comment" => 2, "teaser", "title", "type" => $node->type);
2001-11-25 12:18:51 +00:00
}
2001-12-06 17:33:05 +00:00
$nid = node_save($node, array_merge($fields, module_invoke($node->type, "save", "create", $node)));
2001-11-01 11:00:51 +00:00
2002-04-14 20:46:41 +00:00
/*
** Insert terms of the node
*/
2002-05-11 16:21:48 +00:00
if (function_exists("taxonomy_node_save")) {
taxonomy_node_save($nid, $node->taxonomy);
}
2002-04-14 20:46:41 +00:00
2001-11-25 12:18:51 +00:00
watchdog("special", "$node->type: added '$node->title'");
$output = t("Thanks for your submission.");
2001-11-01 17:04:20 +00:00
}
else {
2001-11-25 12:18:51 +00:00
watchdog("warning", "$node->type: not authorized to create node");
$output = t("You are not authorized to create this node.");
2001-11-01 17:04:20 +00:00
}
}
2001-12-01 15:20:48 +00:00
2001-12-06 17:33:05 +00:00
/*
** Reload the node from the database:
*/
$node = node_load(array("nid" => $nid));
/*
** For usability's sake, make sure to present the user with some
** useful links as where to go next.
*/
2001-12-01 15:20:48 +00:00
if ($referer = referer_load()) {
2001-12-06 17:33:05 +00:00
$links[] = "<a href=\"$referer\">". t("return") ."</a>";
}
if ($nid && node_access("view", $node)) {
2002-04-20 11:52:50 +00:00
$links[] = l(t("view"), array("id" => $nid));
2001-12-06 17:33:05 +00:00
}
if ($nid && node_access("update", $node)) {
2002-04-20 11:52:50 +00:00
$links[] = lm(t("edit"), array("mod" => "node", "op" => "edit", "id" => $nid));
2001-12-01 15:20:48 +00:00
}
2001-12-06 17:33:05 +00:00
$output .= "<p>". $theme->links($links) ."</p>";
2001-11-01 11:00:51 +00:00
}
2001-11-25 12:18:51 +00:00
else {
$output = message_access();
}
2001-11-01 11:00:51 +00:00
return $output;
}
2001-11-03 18:38:30 +00:00
function node_delete($edit) {
2001-11-01 11:00:51 +00:00
2002-05-22 23:28:48 +00:00
if (!user_access("post content")) {
return message_access();
}
2001-11-01 17:04:20 +00:00
$node = node_load(array("nid" => $edit["nid"]));
if (node_access("delete", $node)) {
2001-11-03 18:38:30 +00:00
2001-11-01 17:04:20 +00:00
if ($edit["confirm"]) {
2001-11-01 11:00:51 +00:00
2001-11-03 18:38:30 +00:00
/*
** Delete the specified node and its comments:
*/
db_query("DELETE FROM node WHERE nid = '$node->nid'");
2001-12-30 16:16:38 +00:00
db_query("DELETE FROM comments WHERE nid = '$node->nid'");
2001-11-03 18:38:30 +00:00
2002-04-14 20:46:41 +00:00
/*
** Delete any taxonomy terms
*/
2002-05-11 16:21:48 +00:00
if (function_exists("taxonomy_node_delete")) {
taxonomy_node_delete($nid, $node->taxonomy);
}
2002-04-14 20:46:41 +00:00
2001-11-03 18:38:30 +00:00
/*
** Call the node specific callback (if any):
*/
2001-11-26 18:27:34 +00:00
module_invoke($node->type, "delete", $node);
2001-11-03 18:38:30 +00:00
2001-11-24 10:02:15 +00:00
watchdog("special", "$node->type: deleted '$node->title'");
2001-11-01 17:04:20 +00:00
$output = t("The node has been deleted.");
}
else {
2001-11-03 18:38:30 +00:00
$output .= form_item(t("Confirm deletion"), check_output($node->title));
2001-11-01 17:04:20 +00:00
$output .= form_hidden("nid", $node->nid);
$output .= form_hidden("confirm", 1);
$output .= form_submit(t("Delete"));
2001-11-24 10:02:15 +00:00
$output = form($output);
2001-11-01 17:04:20 +00:00
}
2001-11-01 11:00:51 +00:00
}
else {
2001-11-24 10:02:15 +00:00
watchdog("warning", "$node->type: not authorized to remove node");
2001-11-01 17:04:20 +00:00
$output = t("You are not authorized to remove this node.");
2001-11-01 11:00:51 +00:00
}
return $output;
}
2001-07-15 16:56:44 +00:00
function node_page() {
2002-04-14 20:46:41 +00:00
global $op, $id, $user, $edit, $type, $theme, $or, $and;
2001-07-15 16:56:44 +00:00
if ($op == "feed") {
node_feed();
2001-11-01 11:00:51 +00:00
return;
2001-07-15 16:56:44 +00:00
}
2001-11-01 11:00:51 +00:00
2001-11-18 16:25:37 +00:00
/*
** Try to find a good title:
*/
if ($type) {
$title = ucfirst(module_invoke($type, "node", "name"));
}
else if ($edit["type"]) {
$title = ucfirst(module_invoke($edit["type"], "node", "name"));
}
else {
$title = t("Submission form");
}
2001-11-01 11:00:51 +00:00
$theme->header();
switch ($op) {
case "add":
2001-11-18 16:25:37 +00:00
$theme->box($title, node_add($type));
2001-11-01 11:00:51 +00:00
break;
case "edit":
2001-11-18 16:25:37 +00:00
$theme->box($title, node_edit($id));
2001-11-01 11:00:51 +00:00
break;
case t("Preview"):
2001-11-18 16:25:37 +00:00
$theme->box($title, node_preview($edit));
2001-11-01 11:00:51 +00:00
break;
case t("Submit"):
2001-11-18 16:25:37 +00:00
$theme->box($title, node_submit($edit));
2001-11-01 11:00:51 +00:00
break;
2001-11-01 17:04:20 +00:00
case t("Delete"):
2001-11-24 10:02:15 +00:00
$theme->box($title, node_delete($edit));
2001-11-01 17:04:20 +00:00
break;
2001-11-01 11:00:51 +00:00
default:
2002-05-22 23:28:48 +00:00
if (user_access("access content")) {
// prepare query
if ($or) {
foreach ((explode(",", $or)) as $t) {
$terms[] = "'".check_query($t)."'";
}
2002-04-14 20:46:41 +00:00
}
2002-05-22 23:28:48 +00:00
else if ($and) {
foreach ((explode(",", $and)) as $t) {
$terms[] = "'".check_query($t)."'";
}
2002-04-14 20:46:41 +00:00
}
2002-05-22 23:28:48 +00:00
if ($or) {
// this is an OR of terms
2002-05-30 20:26:08 +00:00
$result = db_query("SELECT DISTINCT(n.nid), type FROM node n LEFT JOIN term_node r ON n.nid = r.nid WHERE tid IN (".implode(",", $terms).") AND ". ($id ? "nid = '$id' AND " : "") ."status = '1' ORDER BY static DESC, created DESC LIMIT ". ($user->nodes ? $user->nodes : variable_get("default_nodes_main", 10)));
2002-05-22 23:28:48 +00:00
}
else if ($and) {
// this is an AND
2002-05-30 20:26:08 +00:00
$result = db_query("SELECT n.nid, type, count(*) AS c FROM node n LEFT JOIN term_node r ON n.nid = r.nid WHERE tid IN (".implode(",", $terms).") AND ". ($id ? "nid = '$id' AND " : "") ."status = '1' GROUP BY n.nid HAVING c = ".count($terms)." ORDER BY static DESC, created DESC LIMIT ". ($user->nodes ? $user->nodes : variable_get("default_nodes_main", 10)));
2002-05-22 23:28:48 +00:00
}
else {
$result = db_query("SELECT nid, type FROM node WHERE ". ($id ? "nid = '$id'" : "promote = '1'") ." AND status = '1' ORDER BY static DESC, created DESC LIMIT ". ($user->nodes ? $user->nodes : variable_get("default_nodes_main", 10)));
}
2002-04-14 20:46:41 +00:00
2002-05-22 23:28:48 +00:00
while ($node = db_fetch_object($result)) {
node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1);
}
2001-09-25 22:13:34 +00:00
}
2002-04-14 20:46:41 +00:00
}
2001-11-01 11:00:51 +00:00
$theme->footer();
2001-07-15 16:56:44 +00:00
}
2001-11-01 11:00:51 +00:00
2002-03-05 20:15:17 +00:00
function node_update_index() {
// Return an array of values to dictate how to update the search index
// for this particular type of node.
//
2002-03-26 21:33:23 +00:00
// "last_update"'s value is used with variable_set to set the
2002-03-05 20:15:17 +00:00
// last time this node type had an index update run.
//
// "node_type"'s value is used to identify the node type in the search
// index.
//
// "select"'s value is used to select the node id and text fields from
2002-03-26 21:33:23 +00:00
// the table we are indexing. In this case, we also check against the
2002-03-05 20:15:17 +00:00
// last run date for the nodes update.
return array("last_update" => "node_cron_last",
2002-03-26 21:33:23 +00:00
"node_type" => "node",
"select" => "SELECT n.nid as lno, n.title as text1, n.body as text2 FROM node n WHERE n.status = 1 AND moderate = 0 and (created > " . variable_get("node_cron_last", 1) . " or changed > " . variable_get("node_cron_last", 1) . ")");
2002-03-05 20:15:17 +00:00
}
2002-05-22 23:28:48 +00:00
?>