A tumblelog CMS built on AJAX, PHP and MySQL.

index.php 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php
  2. if(!defined('entry'))define('entry', true);
  3. /* ===========================
  4. gelato CMS - A PHP based tumblelog CMS
  5. development version
  6. http://www.gelatocms.com/
  7. gelato CMS is a free software licensed under the GPL 2.0
  8. Copyright (C) 2007 by Pedro Santana <pecesama at gmail dot com>
  9. =========================== */
  10. ?>
  11. <?php
  12. // Received a valid request, better start setting globals we'll need throughout the app in entry.php
  13. require_once('entry.php');
  14. global $user, $tumble, $conf;
  15. $template = new plantillas($conf->template);
  16. // My approach to MVC
  17. if(isset($_SERVER['PATH_INFO'])) $param_url = explode("/",$_SERVER['PATH_INFO']);
  18. if (isset($_GET["post"])) {
  19. $id_post = $_GET["post"];
  20. if (!is_numeric($id_post) || $id_post < 1 ){
  21. header("Location: index.php");
  22. }
  23. } else {
  24. if (isset($param_url[1]) && $param_url[1]=="post") {
  25. $id_post = (isset($param_url[2])) ? ((is_numeric($param_url[2])) ? $param_url[2] : NULL) : NULL;
  26. } else {
  27. $id_post = NULL;
  28. }
  29. }
  30. if (isset($_GET["page"])) {
  31. $page_num = $_GET["page"];
  32. } else {
  33. if (isset($param_url[1]) && $param_url[1]=="page") {
  34. $page_num = (isset($param_url[2])) ? ((is_numeric($param_url[2])) ? $param_url[2] : NULL) : NULL;
  35. } else {
  36. $page_num = NULL;
  37. }
  38. }
  39. $gelato_includes = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n";
  40. $gelato_includes .= "\t<meta name=\"generator\" content=\"gelato ".codeName()." (".version().")\" />\n";
  41. $gelato_includes .= "\t<link rel=\"shortcut icon\" href=\"".$conf->urlGelato."/images/favicon.ico\" />\n";
  42. $gelato_includes .= "\t<link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"".$conf->urlGelato.($conf->urlFriendly?"/rss/":"/rss.php")."\"/>\n";
  43. $gelato_includes .= "\t<link rel=\"stylesheet\" type=\"text/css\" href=\"".$conf->urlGelato."/themes/".$conf->template."/style.css\"/>\n";
  44. $gelato_includes .= "\t<link rel=\"stylesheet\" type=\"text/css\" href=\"".$conf->urlGelato."/admin/css/lightbox.css\" />\n";
  45. $gelato_includes .= "\t<script language=\"javascript\" type=\"text/javascript\" src=\"".$conf->urlGelato."/admin/scripts/jquery.js\"></script>\n";
  46. $gelato_includes .= "\t<script language=\"javascript\" type=\"text/javascript\" src=\"".$conf->urlGelato."/admin/scripts/lightbox.js\"></script>";
  47. $page_title = $conf->title;
  48. $page_title_divisor = " &raquo; "; // it should be set in configuration
  49. $page_title_len = 50; // it should be set in configuration
  50. if ($id_post) {
  51. $register = $tumble->getPost($id_post);
  52. $textile = new Textile();
  53. if (empty($register["title"])) {
  54. if (!empty($register["description"])) {
  55. if (strlen($register["description"]) > $page_title_len) {
  56. $page_title_data = substr($register["description"], 0, $page_title_len)."...";
  57. }
  58. }
  59. } else {
  60. $page_title_data = $register["title"];
  61. }
  62. $page_title_data = strip_tags($textile->TextileThis($page_title_data));
  63. if (!empty($page_title_data)) {
  64. $page_title .= $page_title_divisor.stripslashes($page_title_data);
  65. }
  66. }
  67. $input = array("{Gelato_includes}","{Title}", "{Page_Title}", "{Description}", "{URL_Tumble}", "{Template_name}");
  68. $output = array($gelato_includes, $conf->title, $page_title, $conf->description, $conf->urlGelato, $conf->template);
  69. $template->cargarPlantilla($input, $output, "template_header");
  70. $template->mostrarPlantilla();
  71. if ($user->isAuthenticated()) {
  72. $input = array("{User}", "{URL_Tumble}");
  73. $output = array($_SESSION["user_login"], $conf->urlGelato);
  74. $template->cargarPlantilla($input, $output, "template_isadmin");
  75. $template->mostrarPlantilla();
  76. }
  77. if (!$id_post) {
  78. $limit=$conf->postLimit;
  79. if(isset($page_num) && is_numeric($page_num) && $page_num>0) { // Is defined the page and is numeric?
  80. $from = (($page_num-1) * $limit);
  81. } else {
  82. $from = 0;
  83. }
  84. $rs = $tumble->getPosts($limit, $from);
  85. if ($tumble->contarRegistros()>0) {
  86. $dateTmp = null;
  87. while($register = mysql_fetch_array($rs)) {
  88. $formatedDate = gmdate("M d", strtotime($register["date"])+transform_offset($conf->offsetTime));
  89. if ( $dateTmp != null && $formatedDate == $dateTmp ) { $formatedDate = ""; } else { $dateTmp = $formatedDate; }
  90. $strEnd=($conf->urlFriendly) ? "/" : "";
  91. $permalink = $conf->urlGelato.($conf->urlFriendly?"/post/":"/index.php?post=").$register["id_post"].$strEnd;
  92. $conversation = $register["description"];
  93. $register["description"] = $register["description"];
  94. $register["title"] = stripslashes($register["title"]);
  95. $register["description"] = stripslashes($register["description"]);
  96. $comment = new comments();
  97. switch ($tumble->getType($register["id_post"])) {
  98. case "1":
  99. $input = array("{Date_Added}", "{Permalink}", "{Title}", "{Body}", "{URL_Tumble}", "{Comments_Number}");
  100. $output = array($formatedDate, $permalink, $register["title"], $register["description"], $conf->urlGelato, $comment->countComments($register["id_post"]));
  101. $template->cargarPlantilla($input, $output, "template_regular_post");
  102. $template->mostrarPlantilla();
  103. break;
  104. case "2":
  105. $fileName = "uploads/".getFileName($register["url"]);
  106. $x = @getimagesize($fileName);
  107. if ($x[0] > 500) {
  108. $photoPath = $conf->urlGelato."/classes/imgsize.php?w=500&img=".$register["url"];
  109. } else {
  110. $photoPath = str_replace("../", $conf->urlGelato."/", $register["url"]);
  111. }
  112. $effect = " href=\"".str_replace("../", $conf->urlGelato."/", $register["url"])."\" rel=\"lightbox\"";
  113. $input = array("{Date_Added}", "{Permalink}", "{PhotoURL}", "{PhotoAlt}", "{Caption}", "{Effect}", "{URL_Tumble}");
  114. $output = array($formatedDate, $permalink, $photoPath, strip_tags($register["description"]), $register["description"], $effect, $conf->urlGelato);
  115. $template->cargarPlantilla($input, $output, "template_photo");
  116. $template->mostrarPlantilla();
  117. break;
  118. case "3":
  119. $input = array("{Date_Added}", "{Permalink}", "{Quote}", "{Source}", "{URL_Tumble}");
  120. $output = array($formatedDate, $permalink, $register["description"], $register["title"], $conf->urlGelato);
  121. $template->cargarPlantilla($input, $output, "template_quote");
  122. $template->mostrarPlantilla();
  123. break;
  124. case "4":
  125. if($conf->shorten_links){
  126. $register["url"] = _file_get_contents("http://api.abbrr.com/api.php?out=link&url=".$register["url"]);
  127. }
  128. $register["title"] = ($register["title"]=="")? $register["url"] : $register["title"];
  129. $input = array("{Date_Added}", "{Permalink}", "{URL}", "{Name}", "{Description}", "{URL_Tumble}");
  130. $output = array($formatedDate, $permalink, $register["url"], $register["title"], $register["description"], $conf->urlGelato);
  131. $template->cargarPlantilla($input, $output, "template_url");
  132. $template->mostrarPlantilla();
  133. break;
  134. case "5":
  135. $input = array("{Date_Added}", "{Permalink}", "{Title}", "{Conversation}", "{URL_Tumble}");
  136. $output = array($formatedDate, $permalink, $register["title"], $tumble->formatConversation($conversation), $conf->urlGelato);
  137. $template->cargarPlantilla($input, $output, "template_conversation");
  138. $template->mostrarPlantilla();
  139. break;
  140. case "6":
  141. $input = array("{Date_Added}", "{Permalink}", "{Video}", "{Caption}", "{URL_Tumble}");
  142. $output = array($formatedDate, $permalink, $tumble->getVideoPlayer($register["url"]), $register["description"], $conf->urlGelato);
  143. $template->cargarPlantilla($input, $output, "template_video");
  144. $template->mostrarPlantilla();
  145. break;
  146. case "7":
  147. $input = array("{Date_Added}", "{Permalink}", "{Mp3}", "{Caption}", "{URL_Tumble}");
  148. $output = array($formatedDate, $permalink, $tumble->getMp3Player($register["url"]), $register["description"], $conf->urlGelato);
  149. $template->cargarPlantilla($input, $output, "template_mp3");
  150. $template->mostrarPlantilla();
  151. break;
  152. }
  153. }
  154. $p = new pagination;
  155. $p->Items($tumble->getPostsNumber());
  156. $p->limit($limit);
  157. if($conf->urlFriendly){
  158. $p->urlFriendly('[...]');
  159. $p->target($conf->urlGelato."/page/[...]");
  160. }else
  161. $p->target($conf->urlGelato);
  162. $p->currentPage(isset($page_num) ? $page_num : 1);
  163. $p->show();
  164. } else {
  165. $template->renderizaEtiqueta("No posts in this tumblelog.", "div","error");
  166. }
  167. } else {
  168. $register = $tumble->getPost($id_post);
  169. $formatedDate = gmdate("M d", strtotime($register["date"])+transform_offset($conf->offsetTime));
  170. $strEnd=($conf->urlFriendly) ? "/" : "";
  171. $permalink = $conf->urlGelato.($conf->urlFriendly?"/post/":"/index.php?post=").$register["id_post"].$strEnd;
  172. $conversation = $register["description"];
  173. $register["description"] = $register["description"];
  174. $register["title"] = stripslashes($register["title"]);
  175. $register["description"] = stripslashes($register["description"]);
  176. switch ($tumble->getType($register["id_post"])) {
  177. case "1":
  178. $input = array("{Date_Added}", "{Permalink}", "{Title}", "{Body}", "{URL_Tumble}");
  179. $output = array($formatedDate, $permalink, $register["title"], $register["description"], $conf->urlGelato);
  180. $template->cargarPlantilla($input, $output, "template_regular_post");
  181. $template->mostrarPlantilla();
  182. break;
  183. case "2":
  184. $fileName = "uploads/".getFileName($register["url"]);
  185. $x = @getimagesize($fileName);
  186. if ($x[0] > 500) {
  187. $photoPath = $conf->urlGelato."/classes/imgsize.php?w=500&img=".$register["url"];
  188. } else {
  189. $photoPath = str_replace("../", $conf->urlGelato."/", $register["url"]);
  190. }
  191. $effect = " href=\"".str_replace("../", $conf->urlGelato."/", $register["url"])."\" rel=\"lightbox\"";
  192. $input = array("{Date_Added}", "{Permalink}", "{PhotoURL}", "{PhotoAlt}", "{Caption}", "{Effect}", "{URL_Tumble}");
  193. $output = array($formatedDate, $permalink, $photoPath, strip_tags($register["description"]), $register["description"], $effect, $conf->urlGelato);
  194. $template->cargarPlantilla($input, $output, "template_photo");
  195. $template->mostrarPlantilla();
  196. break;
  197. case "3":
  198. $input = array("{Date_Added}", "{Permalink}", "{Quote}", "{Source}", "{URL_Tumble}");
  199. $output = array($formatedDate, $permalink, $register["description"], $register["title"], $conf->urlGelato);
  200. $template->cargarPlantilla($input, $output, "template_quote");
  201. $template->mostrarPlantilla();
  202. break;
  203. case "4":
  204. if($conf->shorten_links){
  205. $register["url"] = _file_get_contents("http://api.abbrr.com/api.php?out=link&url=".$register["url"]);
  206. }
  207. $register["title"] = ($register["title"]=="")? $register["url"] : $register["title"];
  208. $input = array("{Date_Added}", "{Permalink}", "{URL}", "{Name}", "{Description}", "{URL_Tumble}");
  209. $output = array($formatedDate, $permalink, $register["url"], $register["title"], $register["description"], $conf->urlGelato);
  210. $template->cargarPlantilla($input, $output, "template_url");
  211. $template->mostrarPlantilla();
  212. break;
  213. case "5":
  214. $input = array("{Date_Added}", "{Permalink}", "{Title}", "{Conversation}", "{URL_Tumble}");
  215. $output = array($formatedDate, $permalink, $register["title"], $tumble->formatConversation($conversation), $conf->urlGelato);
  216. $template->cargarPlantilla($input, $output, "template_conversation");
  217. $template->mostrarPlantilla();
  218. break;
  219. case "6":
  220. $input = array("{Date_Added}", "{Permalink}", "{Video}", "{Caption}", "{URL_Tumble}");
  221. $output = array($formatedDate, $permalink, $tumble->getVideoPlayer($register["url"]), $register["description"], $conf->urlGelato);
  222. $template->cargarPlantilla($input, $output, "template_video");
  223. $template->mostrarPlantilla();
  224. break;
  225. case "7":
  226. $input = array("{Date_Added}", "{Permalink}", "{Mp3}", "{Caption}", "{URL_Tumble}");
  227. $output = array($formatedDate, $permalink, $tumble->getMp3Player($register["url"]), $register["description"], $conf->urlGelato);
  228. $template->cargarPlantilla($input, $output, "template_mp3");
  229. $template->mostrarPlantilla();
  230. break;
  231. }
  232. if ($conf->allowComments) {
  233. $comment = new comments();
  234. $rsComments = $comment->getComments($register["id_post"]);
  235. $textile = new Textile();
  236. if (empty($register["title"])) {
  237. if (!empty($register["description"])) {
  238. if (strlen($register["description"]) > 30) {
  239. $postTitle = substr($register["description"], 0, 30)."...";
  240. }
  241. }
  242. } else {
  243. $postTitle = $register["title"];
  244. }
  245. $postTitle = strip_tags($textile->TextileThis($postTitle));
  246. $input = array("{Comments_Number}", "{Post_Title}");
  247. $output = array($comment->countComments($register["id_post"]), $postTitle);
  248. $template->precargarPlantillaConBloque($input, $output, "template_comments", "comments");
  249. while($rowComment = mysql_fetch_assoc($rsComments)) {
  250. $commentAuthor = ($rowComment["web"]=="") ? $rowComment["username"] : "<a href=\"".$rowComment["web"]."\" rel=\"external\">".$rowComment["username"]."</a>";
  251. $input = array("{Id_Comment}", "{Comment_Author}", "{Date}", "{Comment}");
  252. $output = array($rowComment["id_comment"], $commentAuthor, gmdate("d.m.y", strtotime($rowComment["comment_date"])+transform_offset($conf->offsetTime)), $rowComment["content"]);
  253. $template->cargarPlantillaConBloque($input, $output, "template_comments", "comments");
  254. }
  255. $template->mostrarPlantillaConBloque();
  256. $input = array("{User_Cookie}", "{Email_Cookie}", "{Web_Cookie}", "{Id_Post}", "{Form_Action}", "{Date_Added}");
  257. $output = array(isset($_COOKIE['cookie_gel_user'])?$_COOKIE['cookie_gel_user']:'', isset($_COOKIE['cookie_gel_email'])?$_COOKIE['cookie_gel_email']:'', isset($_COOKIE['cookie_gel_web'])?$_COOKIE['cookie_gel_web']:'', $register["id_post"], $conf->urlGelato."/admin/comments.php", gmmktime());
  258. $template->cargarPlantilla($input, $output, "template_comment_post");
  259. $template->mostrarPlantilla();
  260. }
  261. }
  262. $input = array("{URL_Tumble}");
  263. $output = array($conf->urlGelato);
  264. $template->cargarPlantilla($input, $output, "template_footer");
  265. $template->mostrarPlantilla();
  266. ?>