A tumblelog CMS built on AJAX, PHP and MySQL.

functions.php 12KB

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