123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- if (!defined('entry')) {
- define('entry', true);
- }
- /* ===========================
-
- Sorbet CMS - A PHP based tumblelog CMS forked from Gelato CMS
-
- Sorbet CMS is a free software licensed under the GPL 3.0
-
- =========================== */
- ?>
- <?php
- $isFeed = true;
-
- require('entry.php');
- global $user, $conf, $tumble;
- $f = new feeds();
-
- $theme = new themes;
-
- if (isset($_GET["action"]) && $_GET["action"] == "read") {
- if (isset($_GET["start"])) {
- $start = $_GET["start"];
- } else {
- $start = 0;
- }
- if (isset($_GET["total"])) {
- $total = $_GET["total"];
- } else {
- $total = 20;
- }
- if (isset($_GET["type"])) {
- $hasType = true;
- } else {
- $hasType = false;
- }
- if ($total > 50) {
- $total = 50;
- }
- $user = new user();
- $userData = $user->getUserByID(1);
- $username = ($userData["name"] == "") ? "sorbet" : $userData["name"];
-
- $theme->set("username", $username);
- $theme->set("conf", array(
- "offsetCity"=>$conf->offsetCity,
- "title"=>$conf->title,
- "description"=>$conf->description
- ));
-
- $feeds = array();
- $actual_feeds = $f->getFeedList();
- foreach ($actual_feeds as $feed) {
- $error_text = ($feed["error"]>0) ? "false" : "true";
- $feed['url'] = htmlspecialchars($feed['url']);
- $feed['type'] = util::type2Text($feed['type']);
- $feed['getNextUpdate'] = $f->getNextUpdate($feed['id_feed']);
- $feed['title'] = htmlspecialchars($feed['title']);
- $feed['error_text'] = $error_text;
- $feeds[] = $feed;
- }
-
- $theme->set("feeds", $feeds);
-
- if ($hasType) {
- $postType = type2Number($_GET["type"]);
- }
- $rs = $tumble->getPosts($total, $start);
-
- $totalRegistros = $db->contarRegistros();
- $theme->set("totalRegistros", $totalRegistros);
-
- if ($totalRegistros>0) {
- $theme->set("start", $start);
- $theme->set("total", $total);
-
- while ($post = $rs->fetch()) {
- $post['desc'] = util::trimString($post["description"]);
- $strEnd = ($conf->urlFriendly) ? "/" : "";
- $post['url'] = $conf->urlSorbet.($conf->urlFriendly ? "/post/" : "/index.php?post=").$post["id_post"].$strEnd;
- $post['formatedDate'] = gmdate("D, d M Y H:i:s", strtotime($post["date"]) + util::transform_offset($conf->offsetTime));
-
- $post["type"] = util::type2Text($post["type"]);
-
- switch ($post["type"]) {
- case "post":
- $post['tit'] = (empty($post["title"])) ? $post['desc'] : strip_tags($post["title"]);
- break;
- case "photo":
- $post['photoPath'] = str_replace("../", $conf->urlSorbet."/", $post["url"]);
- $post['tit'] = stripslashes(((empty($post["description"])) ? "Photo" : $post['desc']));
- break;
- case "quote":
- $post['title'] = strip_tags($post["title"]);
- break;
- case "url":
- $post['tit'] = (empty($post["title"])) ? $post["url"] : strip_tags($post["title"]);
- break;
- case "conversation":
- $lines = explode("\n", $post['desc']);
- $line = $lines[0];
- $post['tit'] = (empty($post["title"])) ? util::trimString($line) : $post["title"];
- $post['desc'] = $tumble->formatConversation($post['desc']);
- $post['descAPIFormat'] = $tumble->formatConversation($post['desc']);
- break;
- case "video":
- $post['tit'] = (empty($post["description"])) ? "Video" : $post['desc'];
- $post['desc'] = htmlspecialchars($tumble->getVideoPlayer($post["url"]));
- break;
- case "mp3":
- $post['tit'] = (empty($post["description"])) ? "Audio" : $post['desc'];
- $post['desc'] = htmlspecialchars($tumble->getMp3Player($post["url"]));
- break;
- }
- $posts[] = $post;
- }
- $theme->set("posts", $posts);
- }
- $theme->display(Absolute_Path.'admin/themes/admin/api.xml');
- }
- ?>
|