A tumblelog CMS built on AJAX, PHP and MySQL.

index.php 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  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. $theme = new themes;
  16. // Our first approach to MVC... �our second? visit http://www.flavorphp.com
  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. $theme->set('id_post',$id_post);
  31. $theme->set('error','');
  32. if (isset($_GET["page"])) {
  33. $page_num = $_GET["page"];
  34. } else {
  35. if (isset($param_url[1]) && $param_url[1]=="page") {
  36. $page_num = (isset($param_url[2])) ? ((is_numeric($param_url[2])) ? $param_url[2] : NULL) : NULL;
  37. } else {
  38. $page_num = NULL;
  39. }
  40. }
  41. $gelato_includes = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n";
  42. $gelato_includes .= "\t<meta name=\"generator\" content=\"gelato ".codeName()." (".version().")\" />\n";
  43. $gelato_includes .= "\t<link rel=\"shortcut icon\" href=\"".$conf->urlGelato."/images/favicon.ico\" />\n";
  44. $gelato_includes .= "\t<link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"".$conf->urlGelato.($conf->urlFriendly?"/rss/":"/rss.php")."\"/>\n";
  45. $gelato_includes .= "\t<link rel=\"stylesheet\" type=\"text/css\" href=\"".$conf->urlGelato."/themes/".$conf->template."/style.css\"/>\n";
  46. $gelato_includes .= "\t<link rel=\"stylesheet\" type=\"text/css\" href=\"".$conf->urlGelato."/admin/css/lightbox.css\" />\n";
  47. $gelato_includes .= "\t<script language=\"javascript\" type=\"text/javascript\" src=\"".$conf->urlGelato."/admin/scripts/jquery.js\"></script>\n";
  48. $gelato_includes .= "\t<script language=\"javascript\" type=\"text/javascript\" src=\"".$conf->urlGelato."/admin/scripts/lightbox.js\"></script>";
  49. $page_title = $conf->title;
  50. $page_title_divisor = " &raquo; "; // it should be set in configuration
  51. $page_title_len = 50; // it should be set in configuration
  52. if ($id_post) {
  53. $register = $tumble->getPost($id_post);
  54. if (empty($register["title"])) {
  55. if (!empty($register["description"])) {
  56. $page_title_data = trimString($register["description"], $page_title_len);
  57. } else {
  58. $page_title_data = type2Text($register["type"]);
  59. }
  60. } else {
  61. $page_title_data = $register["title"];
  62. }
  63. if (!empty($page_title_data)) {
  64. $page_title .= $page_title_divisor.stripslashes($page_title_data);
  65. }
  66. }
  67. $theme->set('Gelato_includes',$gelato_includes);
  68. $theme->set('Title',$conf->title);
  69. $theme->set('Page_Title',$page_title);
  70. $theme->set('Description',$conf->description);
  71. $theme->set('URL_Tumble',$conf->urlGelato);
  72. $theme->set('Template_name',$conf->template);
  73. $theme->set('allowComments',$conf->allowComments);
  74. $theme->set('isAuthenticated',$user->isAuthenticated());
  75. if($user->isAuthenticated()){
  76. $theme->set('User',$_SESSION["user_login"]);
  77. $theme->set('URL_Tumble',$conf->urlGelato);
  78. }
  79. $rows = array();
  80. if(!$id_post){
  81. $limit=$conf->postLimit;
  82. if(isset($page_num) && is_numeric($page_num) && $page_num>0) { // Is defined the page and is numeric?
  83. $from = (($page_num-1) * $limit);
  84. } else {
  85. $from = 0;
  86. }
  87. $rs = $tumble->getPosts($limit, $from);
  88. if ($tumble->contarRegistros()>0) {
  89. $dateTmp = null;
  90. while($register = mysql_fetch_assoc($rs)) {
  91. $formatedDate = gmdate("M d", strtotime($register["date"])+transform_offset($conf->offsetTime));
  92. if ( $dateTmp != null && $formatedDate == $dateTmp ) { $formatedDate = ""; } else { $dateTmp = $formatedDate; }
  93. $permalink = $tumble->getPermalink($register["id_post"]);
  94. $conversation = $register["description"];
  95. $register["title"] = stripslashes($register["title"]);
  96. $register["description"] = stripslashes($register["description"]);
  97. $row['Date_Added'] = $formatedDate;
  98. $row['Permalink'] = $permalink;
  99. $row['postType'] = type2Text($register["type"]);
  100. switch ($register['type']){
  101. case "1":
  102. $row['Title'] = $register["title"];
  103. $row['Body'] = $register["description"];
  104. break;
  105. case "2":
  106. $fileName = "uploads/".getFileName($register["url"]);
  107. $x = @getimagesize($fileName);
  108. if ($x[0] > 500) {
  109. $photoPath = $conf->urlGelato."/classes/imgsize.php?w=500&img=".$register["url"];
  110. } else {
  111. $photoPath = str_replace("../", $conf->urlGelato."/", $register["url"]);
  112. }
  113. $effect = " href=\"".str_replace("../", $conf->urlGelato."/", $register["url"])."\" rel=\"lightbox\"";
  114. $row['PhotoURL'] = $photoPath;
  115. $row['PhotoAlt'] = strip_tags($register["description"]);
  116. $row['Caption'] = $register["description"];
  117. $row['Effect'] = $effect;
  118. break;
  119. case "3":
  120. $row['Quote'] = $register["description"];
  121. $row['Source'] = $register["title"];
  122. break;
  123. case "4":
  124. if($conf->shorten_links){
  125. $register["url"] = _file_get_contents("http://api.abbrr.com/api.php?out=link&url=".$register["url"]);
  126. }
  127. $register["title"] = ($register["title"]=="")? $register["url"] : $register["title"];
  128. $row['URL'] = $register["url"];
  129. $row['Name'] = $register["title"];
  130. $row['Description'] = $register["description"];
  131. break;
  132. case "5":
  133. $row['Title'] = $register["title"];
  134. $row['Conversation'] = $tumble->formatConversation($conversation);
  135. break;
  136. case "6":
  137. $row['Video'] = $tumble->getVideoPlayer($register["url"]);
  138. $row['Caption'] = $register["description"];
  139. break;
  140. case "7":
  141. $row['Mp3'] = $tumble->getMp3Player($register["url"]);
  142. $row['Caption'] = $register["description"];
  143. break;
  144. }
  145. $comment = new comments();
  146. $noComments = $comment->countComments($register["id_post"]);
  147. $user = new user();
  148. $username = $user->getUserByID($register["id_user"]);
  149. $row['User'] = $username["name"];
  150. $row['Comments_Number'] = $noComments;
  151. $rows[] = $row;
  152. }
  153. $theme->set('rows',$rows);
  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. $theme->set('pagination',$p->getPagination());
  164. } else {
  165. $theme->set('error','No posts in this tumblelog.');
  166. }
  167. } else {
  168. $register = $tumble->getPost($id_post);
  169. $formatedDate = gmdate("M d", strtotime($register["date"])+transform_offset($conf->offsetTime));
  170. $permalink = $tumble->getPermalink($register["id_post"]);
  171. $conversation = $register["description"];
  172. $register["description"] = $register["description"];
  173. $register["title"] = stripslashes($register["title"]);
  174. $register["description"] = stripslashes($register["description"]);
  175. $row['Date_Added'] = $formatedDate;
  176. $row['Permalink'] = $permalink;
  177. $row['postType'] = type2Text($register["type"]);
  178. switch ($register['type']) {
  179. case "1":
  180. $row['Title'] = $register["title"];
  181. $row['Body'] = $register["description"];
  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. $row['PhotoURL'] = $photoPath;
  193. $row['PhotoAlt'] = strip_tags($register["description"]);
  194. $row['Caption'] = $register["description"];
  195. $row['Effect'] = $effect;
  196. break;
  197. case "3":
  198. $row['Quote'] = $register["description"];
  199. $row['Source'] = $register["title"];
  200. break;
  201. case "4":
  202. if($conf->shorten_links){
  203. $register["url"] = _file_get_contents("http://api.abbrr.com/api.php?out=link&url=".$register["url"]);
  204. }
  205. $row['URL'] = $register["url"];
  206. $row['Name'] = $register["title"];
  207. $row['Description'] = $register["description"];
  208. break;
  209. case "5":
  210. $row['Title'] = $register["title"];
  211. $row['Conversation'] = $tumble->formatConversation($conversation);
  212. break;
  213. case "6":
  214. $row['Video'] = $tumble->getVideoPlayer($register["url"]);
  215. $row['Caption'] = $register["description"];
  216. break;
  217. case "7":
  218. $row['Mp3'] = $tumble->getMp3Player($register["url"]);
  219. $row['Caption'] = $register["description"];
  220. break;
  221. }
  222. $user = new user();
  223. $username = $user->getUserByID($register["id_user"]);
  224. $row["User"] = $username["name"];
  225. if (empty($register["title"])) {
  226. if (!empty($register["description"])) {
  227. $postTitle = trimString($register["description"]);
  228. } else {
  229. $postTitle = type2Text($register["type"]);
  230. }
  231. } else {
  232. $postTitle = $register["title"];
  233. }
  234. $row["Post_Title"] = $postTitle;
  235. $comment = new comments();
  236. $row["Comments_Number"] = $comment->countComments($register["id_post"]);
  237. if ($conf->allowComments) {
  238. $rsComments = $comment->getComments($register["id_post"]);
  239. $comments = array();
  240. while($rowComment = mysql_fetch_assoc($rsComments)) {
  241. $commentAuthor = ($rowComment["web"]=="") ? $rowComment["username"] : "<a href=\"".$rowComment["web"]."\" rel=\"external\">".$rowComment["username"]."</a>";
  242. $answers['Id_Comment'] = $rowComment["id_comment"];
  243. $answers['Comment_Author'] = $commentAuthor;
  244. $answers['Date'] = gmdate("d.m.y", strtotime($rowComment["comment_date"])+transform_offset($conf->offsetTime));
  245. $answers['Comment'] = nl2br($rowComment["content"]);
  246. $comments[] = $answers;
  247. }
  248. $theme->set('comments',$comments);
  249. $whois['User_Cookie'] = isset($_COOKIE['cookie_gel_user'])?$_COOKIE['cookie_gel_user']:'';
  250. $whois['Email_Cookie'] = isset($_COOKIE['cookie_gel_email'])?$_COOKIE['cookie_gel_email']:'';
  251. $whois['Web_Cookie'] = isset($_COOKIE['cookie_gel_web'])?$_COOKIE['cookie_gel_web']:'';
  252. $whois['Id_Post'] = $register["id_post"];
  253. $theme->set('Date_Added',gmmktime());
  254. $theme->set('Form_Action',$conf->urlGelato."/admin/comments.php");
  255. $theme->set('whois',$whois);
  256. }
  257. $rows[] = $row;
  258. $theme->set('rows',$rows);
  259. }
  260. $theme->set('URL_Tumble',$conf->urlGelato);
  261. $theme->display(Absolute_Path.'themes/'.$conf->template.'/index.htm');
  262. ?>