A tumblelog CMS built on AJAX, PHP and MySQL.

functions.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. <?php
  2. if(!defined('entry') || !entry) die('Not a valid page');
  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. function version() {
  13. return "1.0";
  14. }
  15. function codeName() {
  16. return "vaniglia RC1";
  17. }
  18. function beginsWith($str, $sub) {
  19. return (strpos($str, $sub) === 0);
  20. }
  21. function endsWith($str, $sub) {
  22. return (substr($str, strlen($str) - strlen($sub)) == $sub);
  23. }
  24. function getFileName($fileUrl) {
  25. $path = explode('/', $fileUrl);
  26. return $path[count($path)-1];
  27. }
  28. function isMP3($fileUrl) {
  29. if (endsWith($fileUrl, ".mp3")) {
  30. return true;
  31. } else {
  32. return false;
  33. }
  34. }
  35. function getMP3File($remoteFileName) {
  36. if (isMP3($remoteFileName)) {
  37. if (getFile($remoteFileName)) {
  38. return true;
  39. } else {
  40. return false;
  41. }
  42. } elseif (isGoEar($remoteFileName)) {
  43. return true;
  44. } elseif (isOdeo($remoteFileName)) {
  45. return true;
  46. } else {
  47. return false;
  48. }
  49. }
  50. function getGoEarCode($songUrl) {
  51. $pos = strpos($songUrl, "?v=");
  52. $lon = strlen($songUrl);
  53. $str = substr($songUrl, $pos + 3, $lon);
  54. return $str;
  55. }
  56. function isGoEar($songUrl) {
  57. if (beginsWith($songUrl, "http://www.goear.com/listen.php?v=") || beginsWith($songUrl, "http://goear.com/listen.php?v="))
  58. return true;
  59. else
  60. return false;
  61. }
  62. function isOdeo($songUrl){
  63. if (beginsWith($songUrl, "http://odeo.com/audio/") || beginsWith($songUrl, "http://www.odeo.com/audio/"))
  64. return true;
  65. else
  66. return false;
  67. }
  68. function getOdeoCode($songUrl) {
  69. $params = explode("audio/", $songUrl);
  70. $params2 = explode("/",$params[1]);
  71. return $params2[0];
  72. }
  73. function isImageFile($photoUrl) {
  74. if (endsWith($photoUrl, ".jpg")) { return true; }
  75. elseif (endsWith($photoUrl, ".gif")) { return true; }
  76. elseif (endsWith($photoUrl, ".png")) { return true; }
  77. else { return false; }
  78. }
  79. function getPhotoFile($remoteFileName) {
  80. if (isImageFile($remoteFileName)) {
  81. if (getFile($remoteFileName)) {
  82. return true;
  83. } else {
  84. return false;
  85. }
  86. } else {
  87. return false;
  88. }
  89. }
  90. function getFile($remoteFileName) {
  91. $fileName = "../uploads/".sanitizeName(getFileName($remoteFileName));
  92. $str = _file_get_contents($remoteFileName);
  93. if (!$handle = fopen($fileName, 'w')) {
  94. //die("no se abrio de escritura");
  95. return false;
  96. }
  97. if (fwrite($handle, $str) === FALSE) {
  98. //die("no se escribio");
  99. return false;
  100. }
  101. fclose($handle);
  102. return true;
  103. }
  104. function isVimeoVideo($videoUrl) {
  105. if (beginsWith($videoUrl, "http://vimeo.com/") || beginsWith($videoUrl, "http://www.vimeo.com/"))
  106. return true;
  107. else
  108. return false;
  109. }
  110. function getVimeoVideoUrl($videoUrl) {
  111. if(substr_count($videoUrl,"clip:")==1)
  112. return array_pop(explode("clip:",$videoUrl));
  113. else
  114. return array_pop(explode("/",$videoUrl));
  115. }
  116. function isYoutubeVideo($videoUrl) {
  117. $url = explode("?", $videoUrl);
  118. if((beginsWith($url[0], "http://") && endsWith($url[0], ".youtube.com/watch")) || beginsWith($url[0], "http://youtube.com/watch"))
  119. return true;
  120. else
  121. return false;
  122. }
  123. function isYahooVideo($videoUrl){
  124. if (beginsWith($videoUrl, "http://video.yahoo.com/watch/") || beginsWith($videoUrl, "http://www.video.yahoo.com/watch/"))
  125. return true;
  126. else
  127. return false;
  128. }
  129. function getYahooVideoCode($videoUrl){
  130. $params = explode("http://video.yahoo.com/watch/", $videoUrl);
  131. $params2 = explode("/",$params[1]);
  132. $values[0] = $params2[0];
  133. $values[1] = $params2[1];
  134. return $values;
  135. }
  136. function getYoutubeVideoUrl($videoUrl) {
  137. $params = explode("?v=", $videoUrl);
  138. $params2 = explode("&",$params[1]);
  139. return $params2[0];
  140. }
  141. function isGoogleVideoUrl($videoUrl){
  142. if (beginsWith($videoUrl, "http://video.google.com/videoplay?")){
  143. return true;
  144. } else {
  145. return false;
  146. }
  147. }
  148. function getGoogleVideoCode($videoUrl){
  149. $params = explode("?docid=", $videoUrl);
  150. $params2 = explode("&",$params[1]);
  151. return $params2[0];
  152. }
  153. function isDailymotionVideo($videoUrl) {
  154. if (beginsWith($videoUrl, "http://www.dailymotion.com/video/") || beginsWith($videoUrl, "http://dailymotion.com/video/"))
  155. return true;
  156. else
  157. return false;
  158. }
  159. function getDailymotionVideoUrl($videoUrl) {
  160. $params = explode("video/", $videoUrl);
  161. $params2 = explode("_",$params[1]);
  162. return $params2[0];
  163. }
  164. function isSlideSharePresentation($videoUrl) {
  165. if (beginsWith($videoUrl, "[slideshare id="))
  166. return true;
  167. else
  168. return false;
  169. }
  170. function getSlideSharePresentationCode($videoUrl) {
  171. $videoUrl = str_replace("[slideshare id=", "", $videoUrl);
  172. $videoUrl = str_replace("&doc=", " ", $videoUrl);
  173. $videoUrl = str_replace("&w=", " ", $videoUrl);
  174. return explode(" ",$videoUrl);
  175. }
  176. function isVideo($url) {
  177. if (isYoutubeVideo($url)) { return true; }
  178. elseif (isVimeoVideo($url)) { return true; }
  179. elseif (isDailymotionVideo($url)) { return true; }
  180. elseif (isYahooVideo($url)) { return true; }
  181. elseif (isSlideSharePresentation($url)) { return true; }
  182. elseif (isGoogleVideoUrl($url)) { return true; }
  183. else { return false; }
  184. }
  185. function sendMail($to, $title, $body, $from) {
  186. $rp = trim($from);
  187. $org = "gelato CMS";
  188. $mailer = "gelato CMS Mailer";
  189. $head = '';
  190. $head .= "Content-Type: text/html \r\n";
  191. $head .= "Date: ". date('r'). " \r\n";
  192. $head .= "Return-Path: $rp \r\n";
  193. $head .= "From: $from \r\n";
  194. $head .= "Sender: $from \r\n";
  195. $head .= "Reply-To: $from \r\n";
  196. $head .= "Organization: $org \r\n";
  197. $head .= "X-Sender: $from \r\n";
  198. $head .= "X-Priority: 3 \r\n";
  199. $head .= "X-Mailer: $mailer \r\n";
  200. $body = str_replace("\r\n", "\n", $body);
  201. $body = str_replace("\n", "\r\n", $body);
  202. return @mail($to, $title, $body, $head);
  203. }
  204. function getThemes() {
  205. $themes_dir = "themes";
  206. $dirs = array();
  207. $path = getcwd();
  208. $dir = (substr(PHP_OS, 0, 3) == 'WIN') ? $path."\\".$themes_dir : $path."/".$themes_dir;
  209. $dir = str_replace("admin\\", "", $dir);
  210. $dir = str_replace("admin/", "", $dir);
  211. $handle = opendir($dir);
  212. $i=0;
  213. while($filename = readdir($handle)) {
  214. if($filename != "." && $filename != ".." && $filename != ".svn") {
  215. $dirs[$i]=trim($filename);
  216. $i++;
  217. }
  218. }
  219. closedir($handle);
  220. return $dirs;
  221. }
  222. function sanitizeName($name) {
  223. $name = preg_replace('/[\'"]/', '', $name);
  224. $name = preg_replace('/[^a-zA-Z0-9]+/', '-', $name);
  225. $name = trim($name, '-');
  226. $name = strtolower($name);
  227. //HACK: We need to rework the regular expression to allow the dot
  228. $ext = substr($name, strlen($name)-3, strlen($name));
  229. $body = substr($name, 0, strlen($name)-4);
  230. $name = $body.".".$ext;
  231. return $name;
  232. }
  233. function _file_get_contents($path) {
  234. // Modified function from:
  235. // http://work.dokoku.net/Anieto2k/_file_get_contents.phps
  236. // http://www.anieto2k.com/2007/02/09/file_get_contents-y-dreamhost/
  237. if (!preg_match('/^http/i', $path)) {
  238. if ($fp = fopen($path, 'r')) {
  239. return fread($fp, 1024);
  240. } else {
  241. return false;
  242. }
  243. } else {
  244. if (extension_loaded('curl') && version_compare(get_curl_version(), '7.10.5', '>=')) {
  245. $ch = curl_init();
  246. $timeout = 5;
  247. curl_setopt ($ch, CURLOPT_URL, $path);
  248. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  249. curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  250. $file_contents = curl_exec($ch);
  251. curl_close($ch);
  252. if (is_string($file_contents)) {
  253. return $file_contents;
  254. } else {
  255. return false;
  256. }
  257. } else {
  258. $data = parse_url($path);
  259. if (!$data['host'] || $data['scheme'] != "http") {
  260. return false;
  261. }
  262. $f = @fsockopen($data['host'], ($data['port']) ? $data['port'] : 80, $e1, $e2, 3);
  263. if (!$f) {
  264. return false;
  265. }
  266. $q = "GET " . $data['path'] . (isset($data['query'])?'?'.$data['query']:'') . " HTTP/1.1\r\n";
  267. $q .= "Host: " . $data['host'] . "\r\n";
  268. $q .= "Connection: close\r\n";
  269. $q .= "Referer: http://www.gelatocms.com/\r\n\r\n";
  270. $recv = "";
  271. fwrite($f, $q);
  272. while (!feof($f)) {
  273. $recv .= fread($f, 1024);
  274. }
  275. $request = $q;
  276. $response = substr($recv, 0, strpos($recv, "\r\n\r\n"));
  277. $body = substr($recv, strpos($recv, "\r\n\r\n") + 4);
  278. if (preg_match('/http\/1\\.[0|1] ([0-9]{3})/i', $response, $res)) {
  279. if ($res[1][0] != "2") {
  280. return false;
  281. }
  282. } else {
  283. return false;
  284. }
  285. if (preg_match('/transfer-encoding:\s*chunked/i', $response)) {
  286. $tmp_body = $body;
  287. $new = "";
  288. $exit = false;
  289. while (!$exit) {
  290. if (preg_match('/^([0-9a-f]+).*?\r\n/i', $tmp_body, $res)) {
  291. $len = hexdec($res[1]);
  292. if ($len == "0") {
  293. $exit = true;
  294. break;
  295. }
  296. $new .= substr($tmp_body, strlen($res[0]), $len);
  297. $tmp_body = substr($tmp_body, strlen($res[0]) + $len + strlen("\r\n"));
  298. } else {
  299. $exit = true;
  300. }
  301. }
  302. $body = $new;
  303. }
  304. return $body;
  305. }
  306. }
  307. }
  308. function get_curl_version() {
  309. $curl = 0;
  310. if (is_array(curl_version())) {
  311. $curl = curl_version();
  312. $curl = $curl['version'];
  313. } else {
  314. $curl = curl_version();
  315. $curl = explode(' ', $curl);
  316. $curl = explode('/', $curl[0]);
  317. $curl = $curl[1];
  318. }
  319. return $curl;
  320. }
  321. function transform_offset($offset){
  322. $sp = strpos($offset , ".")? explode("." , $offset) : false;
  323. if(is_array($sp)){
  324. $minutes = strval($sp[1]);
  325. $off_h = $sp[0]*3600;
  326. $off_m = (($minutes*60)/100)*60;
  327. $off = $off_h+$off_m;
  328. } else {
  329. $off = ($offset*3600);
  330. }
  331. return $off;
  332. }
  333. function getLangs() {
  334. $langs_dir = "languages";
  335. $dirs = array();
  336. $path = getcwd();
  337. $dir = (substr(PHP_OS, 0, 3) == 'WIN') ? $path."\\".$langs_dir : $path."/".$langs_dir;
  338. $dir = str_replace("admin\\", "", $dir);
  339. $dir = str_replace("admin/", "", $dir);
  340. $i=0;
  341. $cls_lang_dir = @ dir($dir);
  342. while (($directory = $cls_lang_dir->read()) !== false) {
  343. if($directory != "." && $directory != "..") {
  344. $dir2 = (substr(PHP_OS, 0, 3) == 'WIN') ? $path."\\".$langs_dir."\\".$directory : $path."/".$langs_dir."/".$directory;
  345. $dir2 = str_replace("admin\\", "", $dir2);
  346. $dir2 = str_replace("admin/", "", $dir2);
  347. if(is_dir($dir2)){
  348. $cls_lang_dir2 = @ dir($dir2);
  349. while (($directory2 = $cls_lang_dir2->read()) !== false) {
  350. if($directory2 != "." && $directory2 != "..") {
  351. if (preg_match('|^\.+$|', $directory2)){
  352. continue;
  353. }
  354. if (preg_match('|\.mo$|', $directory2)){
  355. if(!in_array($directory2,$dirs)){
  356. $dirs[$i]=trim($directory);
  357. $i++;
  358. }
  359. }
  360. }
  361. }
  362. }
  363. }
  364. }
  365. $dirs = array_unique($dirs);
  366. return $dirs;
  367. }
  368. function removeBadTags($source,$secure=false) {
  369. if($secure){
  370. $validTags ='<blockquote><code><em><i><strong><b><a>';
  371. } else {
  372. $validTags ='<p><ol><ul><li><a><abbr><acronym><blockquote><code><pre><em><i><strong><b><del><br><span><div><img>';
  373. }
  374. $source = strip_tags($source, $validTags);
  375. return preg_replace('/<(.*?)>/ie', "'<'.removeBadAtributes('\\1').'>'", $source);
  376. }
  377. function removeBadAtributes($sourceTag) {
  378. $badAtributes = 'javascript:|onclick|ondblclick|onmousedown|onmouseup|onmouseover|onmousemove|onmouseout|onkeypress|onkeydown|onkeyup';
  379. $sourceTag = stripslashes($sourceTag);
  380. $sourceTag = preg_replace("/$badAtributes/i", "niceTry", $sourceTag);
  381. return $sourceTag;
  382. }
  383. function type2Text($number) {
  384. $tmpStr = "";
  385. switch ($number) {
  386. case "1":
  387. $tmpStr = "post";
  388. break;
  389. case "2":
  390. $tmpStr = "photo";
  391. break;
  392. case "3":
  393. $tmpStr = "quote";
  394. break;
  395. case "4":
  396. $tmpStr = "url";
  397. break;
  398. case "5":
  399. $tmpStr = "conversation";
  400. break;
  401. case "6":
  402. $tmpStr = "video";
  403. break;
  404. case "7":
  405. $tmpStr = "mp3";
  406. break;
  407. }
  408. return $tmpStr;
  409. }
  410. function type2Number($string) {
  411. $tmpStr = "";
  412. switch ($string) {
  413. case "post":
  414. $tmpStr = "1";
  415. break;
  416. case "photo":
  417. $tmpStr = "2";
  418. break;
  419. case "quote":
  420. $tmpStr = "3";
  421. break;
  422. case "url":
  423. $tmpStr = "4";
  424. break;
  425. case "conversation":
  426. $tmpStr = "5";
  427. break;
  428. case "video":
  429. $tmpStr = "6";
  430. break;
  431. case "mp3":
  432. $tmpStr = "7";
  433. break;
  434. }
  435. return $tmpStr;
  436. }
  437. function trimString($string, $len = "") {
  438. if($len>strlen($string) or $len<1)
  439. return $string;
  440. $string = strip_tags($string);
  441. $len = (empty($len)) ? "50" : $len ;
  442. return ( strpos($string, " ", $len) ) ? substr_replace($string, "...", $len) : $string ;
  443. }
  444. ?>