A tumblelog CMS built on AJAX, PHP and MySQL.

functions.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  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. if (beginsWith($videoUrl, "http://youtube.com/watch?v=") || beginsWith($videoUrl, "http://www.youtube.com/watch?v="))
  118. return true;
  119. else
  120. return false;
  121. }
  122. function isYahooVideo($videoUrl){
  123. if (beginsWith($videoUrl, "http://video.yahoo.com/watch/") || beginsWith($videoUrl, "http://www.video.yahoo.com/watch/"))
  124. return true;
  125. else
  126. return false;
  127. }
  128. function getYahooVideoCode($videoUrl){
  129. $params = explode("http://video.yahoo.com/watch/", $videoUrl);
  130. $params2 = explode("/",$params[1]);
  131. $values[0] = $params2[0];
  132. $values[1] = $params2[1];
  133. return $values;
  134. }
  135. function getYoutubeVideoUrl($videoUrl) {
  136. $params = explode("?v=", $videoUrl);
  137. $params2 = explode("&",$params[1]);
  138. return $params2[0];
  139. }
  140. function isDailymotionVideo($videoUrl) {
  141. if (beginsWith($videoUrl, "http://www.dailymotion.com/video/") || beginsWith($videoUrl, "http://dailymotion.com/video/"))
  142. return true;
  143. else
  144. return false;
  145. }
  146. function getDailymotionVideoUrl($videoUrl) {
  147. $params = explode("video/", $videoUrl);
  148. $params2 = explode("_",$params[1]);
  149. return $params2[0];
  150. }
  151. function isSlideSharePresentation($videoUrl) {
  152. if (beginsWith($videoUrl, "[slideshare id="))
  153. return true;
  154. else
  155. return false;
  156. }
  157. function getSlideSharePresentationCode($videoUrl) {
  158. $videoUrl = str_replace("[slideshare id=", "", $videoUrl);
  159. $videoUrl = str_replace("&doc=", " ", $videoUrl);
  160. $videoUrl = str_replace("&w=", " ", $videoUrl);
  161. return explode(" ",$videoUrl);
  162. }
  163. function isVideo($url) {
  164. if (isYoutubeVideo($url)) { return true; }
  165. elseif (isVimeoVideo($url)) { return true; }
  166. elseif (isDailymotionVideo($url)) { return true; }
  167. elseif (isYahooVideo($url)) { return true; }
  168. elseif (isSlideSharePresentation($url)) { return true; }
  169. else { return false; }
  170. }
  171. function sendMail($to, $title, $body, $from) {
  172. $rp = trim($from);
  173. $org = "gelato CMS";
  174. $mailer = "gelato CMS Mailer";
  175. $head = '';
  176. $head .= "Content-Type: text/html \r\n";
  177. $head .= "Date: ". date('r'). " \r\n";
  178. $head .= "Return-Path: $rp \r\n";
  179. $head .= "From: $from \r\n";
  180. $head .= "Sender: $from \r\n";
  181. $head .= "Reply-To: $from \r\n";
  182. $head .= "Organization: $org \r\n";
  183. $head .= "X-Sender: $from \r\n";
  184. $head .= "X-Priority: 3 \r\n";
  185. $head .= "X-Mailer: $mailer \r\n";
  186. $body = str_replace("\r\n", "\n", $body);
  187. $body = str_replace("\n", "\r\n", $body);
  188. return @mail($to, $title, $body, $head);
  189. }
  190. function getThemes() {
  191. $themes_dir = "themes";
  192. $dirs = array();
  193. $path = getcwd();
  194. $dir = (substr(PHP_OS, 0, 3) == 'WIN') ? $path."\\".$themes_dir : $path."/".$themes_dir;
  195. $dir = str_replace("admin\\", "", $dir);
  196. $dir = str_replace("admin/", "", $dir);
  197. $handle = opendir($dir);
  198. $i=0;
  199. while($filename = readdir($handle)) {
  200. if($filename != "." && $filename != "..") {
  201. $dirs[$i]=trim($filename);
  202. $i++;
  203. }
  204. }
  205. closedir($handle);
  206. return $dirs;
  207. }
  208. function sanitizeName($name) {
  209. $name = preg_replace('/[\'"]/', '', $name);
  210. $name = preg_replace('/[^a-zA-Z0-9]+/', '-', $name);
  211. $name = trim($name, '-');
  212. $name = strtolower($name);
  213. //HACK: We need to rework the regular expression to allow the dot
  214. $ext = substr($name, strlen($name)-3, strlen($name));
  215. $body = substr($name, 0, strlen($name)-4);
  216. $name = $body.".".$ext;
  217. return $name;
  218. }
  219. function _file_get_contents($path) {
  220. // Modified function from:
  221. // http://work.dokoku.net/Anieto2k/_file_get_contents.phps
  222. // http://www.anieto2k.com/2007/02/09/file_get_contents-y-dreamhost/
  223. if (!preg_match('/^http/i', $path)) {
  224. if ($fp = fopen($path, 'r')) {
  225. return fread($fp, 1024);
  226. } else {
  227. return false;
  228. }
  229. } else {
  230. if (extension_loaded('curl') && version_compare(get_curl_version(), '7.10.5', '>=')) {
  231. $ch = curl_init();
  232. $timeout = 5;
  233. curl_setopt ($ch, CURLOPT_URL, $path);
  234. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  235. curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  236. $file_contents = curl_exec($ch);
  237. curl_close($ch);
  238. if (is_string($file_contents)) {
  239. return $file_contents;
  240. } else {
  241. return false;
  242. }
  243. } else {
  244. $data = parse_url($path);
  245. if (!$data['host'] || $data['scheme'] != "http") {
  246. return false;
  247. }
  248. $f = @fsockopen($data['host'], ($data['port']) ? $data['port'] : 80, $e1, $e2, 3);
  249. if (!$f) {
  250. return false;
  251. }
  252. $q = "GET " . $data['path'] . (isset($data['query'])?'?'.$data['query']:'') . " HTTP/1.1\r\n";
  253. $q .= "Host: " . $data['host'] . "\r\n";
  254. $q .= "Connection: close\r\n";
  255. $q .= "Referer: http://www.gelatocms.com/\r\n\r\n";
  256. $recv = "";
  257. fwrite($f, $q);
  258. while (!feof($f)) {
  259. $recv .= fread($f, 1024);
  260. }
  261. $request = $q;
  262. $response = substr($recv, 0, strpos($recv, "\r\n\r\n"));
  263. $body = substr($recv, strpos($recv, "\r\n\r\n") + 4);
  264. if (preg_match('/http\/1\\.[0|1] ([0-9]{3})/i', $response, $res)) {
  265. if ($res[1][0] != "2") {
  266. return false;
  267. }
  268. } else {
  269. return false;
  270. }
  271. if (preg_match('/transfer-encoding:\s*chunked/i', $response)) {
  272. $tmp_body = $body;
  273. $new = "";
  274. $exit = false;
  275. while (!$exit) {
  276. if (preg_match('/^([0-9a-f]+).*?\r\n/i', $tmp_body, $res)) {
  277. $len = hexdec($res[1]);
  278. if ($len == "0") {
  279. $exit = true;
  280. break;
  281. }
  282. $new .= substr($tmp_body, strlen($res[0]), $len);
  283. $tmp_body = substr($tmp_body, strlen($res[0]) + $len + strlen("\r\n"));
  284. } else {
  285. $exit = true;
  286. }
  287. }
  288. $body = $new;
  289. }
  290. return $body;
  291. }
  292. }
  293. }
  294. function get_curl_version() {
  295. $curl = 0;
  296. if (is_array(curl_version())) {
  297. $curl = curl_version();
  298. $curl = $curl['version'];
  299. } else {
  300. $curl = curl_version();
  301. $curl = explode(' ', $curl);
  302. $curl = explode('/', $curl[0]);
  303. $curl = $curl[1];
  304. }
  305. return $curl;
  306. }
  307. function transform_offset($offset){
  308. $sp = strpos($offset , ".")? explode("." , $offset) : false;
  309. if(is_array($sp)){
  310. $minutes = strval($sp[1]);
  311. $off_h = $sp[0]*3600;
  312. $off_m = (($minutes*60)/100)*60;
  313. $off = $off_h+$off_m;
  314. } else {
  315. $off = ($offset*3600);
  316. }
  317. return $off;
  318. }
  319. function getLangs() {
  320. $langs_dir = "languages";
  321. $dirs = array();
  322. $path = getcwd();
  323. $dir = (substr(PHP_OS, 0, 3) == 'WIN') ? $path."\\".$langs_dir : $path."/".$langs_dir;
  324. $dir = str_replace("admin\\", "", $dir);
  325. $dir = str_replace("admin/", "", $dir);
  326. $i=0;
  327. $cls_lang_dir = @ dir($dir);
  328. while (($directory = $cls_lang_dir->read()) !== false) {
  329. if($directory != "." && $directory != "..") {
  330. $dir2 = (substr(PHP_OS, 0, 3) == 'WIN') ? $path."\\".$langs_dir."\\".$directory : $path."/".$langs_dir."/".$directory;
  331. $dir2 = str_replace("admin\\", "", $dir2);
  332. $dir2 = str_replace("admin/", "", $dir2);
  333. if(is_dir($dir2)){
  334. $cls_lang_dir2 = @ dir($dir2);
  335. while (($directory2 = $cls_lang_dir2->read()) !== false) {
  336. if($directory2 != "." && $directory2 != "..") {
  337. if (preg_match('|^\.+$|', $directory2)){
  338. continue;
  339. }
  340. if (preg_match('|\.mo$|', $directory2)){
  341. if(!in_array($directory2,$dirs)){
  342. $dirs[$i]=trim($directory);
  343. $i++;
  344. }
  345. }
  346. }
  347. }
  348. }
  349. }
  350. }
  351. $dirs = array_unique($dirs);
  352. return $dirs;
  353. }
  354. function removeBadTags($source,$secure=false) {
  355. if($secure){
  356. $validTags ='<abbr><acronym><em><i><strong><b><span>';
  357. } else {
  358. $validTags ='<p><ol><ul><li><a><abbr><acronym><blockquote><code><pre><em><i><strong><b><br><span><div><img>';
  359. }
  360. $source = strip_tags($source, $validTags);
  361. return preg_replace('/<(.*?)>/ie', "'<'.removeBadAtributes('\\1').'>'", $source);
  362. }
  363. function removeBadAtributes($sourceTag) {
  364. $badAtributes = 'javascript:|onclick|ondblclick|onmousedown|onmouseup|onmouseover|onmousemove|onmouseout|onkeypress|onkeydown|onkeyup';
  365. $sourceTag = stripslashes($sourceTag);
  366. $sourceTag = preg_replace("/$badAtributes/i", "niceTry", $sourceTag);
  367. return $sourceTag;
  368. }
  369. function type2Text($number) {
  370. $tmpStr = "";
  371. switch ($number) {
  372. case "1":
  373. $tmpStr = "post";
  374. break;
  375. case "2":
  376. $tmpStr = "photo";
  377. break;
  378. case "3":
  379. $tmpStr = "quote";
  380. break;
  381. case "4":
  382. $tmpStr = "url";
  383. break;
  384. case "5":
  385. $tmpStr = "conversation";
  386. break;
  387. case "6":
  388. $tmpStr = "video";
  389. break;
  390. case "7":
  391. $tmpStr = "mp3";
  392. break;
  393. }
  394. return $tmpStr;
  395. }
  396. function type2Number($string) {
  397. $tmpStr = "";
  398. switch ($string) {
  399. case "post":
  400. $tmpStr = "1";
  401. break;
  402. case "photo":
  403. $tmpStr = "2";
  404. break;
  405. case "quote":
  406. $tmpStr = "3";
  407. break;
  408. case "url":
  409. $tmpStr = "4";
  410. break;
  411. case "conversation":
  412. $tmpStr = "5";
  413. break;
  414. case "video":
  415. $tmpStr = "6";
  416. break;
  417. case "mp3":
  418. $tmpStr = "7";
  419. break;
  420. }
  421. return $tmpStr;
  422. }
  423. ?>