key1().time().DOMAIN_BASE); $this->dbFields = array( 'ping'=>0, // 0 = false, 1 = true 'authKey'=>$authKey, // Private key 'showAllAmount'=>15 // Amount of posts and pages for return ); } public function form() { $html = ''; $html .= '
'; $html .= ''; $html .= 'getDbField('ping')?'checked':'').'>'; $html .= ''; $html .= '
Enable this feature to share your posts and pages with Bludit.com.
'; $html .= '
'; $html .= '
'; $html .= '

Authorization Key: '.$this->getDbField('authKey').'

'; $html .= '
This key is private, do not share it with anyone.
'; $html .= '
'; $html .= '
'; $html .= '

Show all posts: '.DOMAIN_BASE.'api/show/all/posts/'.$this->getDbField('authKey').'

'; $html .= '
Get all posts from this site.
'; $html .= '
'; $html .= '
'; $html .= '

Show all pages: '.DOMAIN_BASE.'api/show/all/pages/'.$this->getDbField('authKey').'

'; $html .= '
Get all pages from this site.
'; $html .= '
'; $html .= '
'; $html .= '

Show post: '.DOMAIN_BASE.'api/show/post/{POST-NAME}

'; $html .= '
Get a particular post, change the {POST-NAME} with the post friendly url.
'; $html .= '
'; $html .= '
'; $html .= '

Show post: '.DOMAIN_BASE.'api/show/page/{PAGE-NAME}

'; $html .= '
Get a particular page, change the {PAGE-NAME} with the page friendly url.
'; $html .= '
'; return $html; } public function afterFormSave() { $this->ping(); } private function ping() { if($this->getDbField('ping')) { // Get the authentication key $authKey = $this->getDbField('authKey'); // Just a request HTTP with the website URL Log::set( file_get_contents('https://www.bludit.com/api.php?authKey='.$authKey) ); } } private function getPost($key) { // Generate the object Post $Post = buildPost($key); if(!$Post) { return json_encode(array( 'status'=>'0', 'bludit'=>'Bludit API plugin', 'message'=>'The post doesn\'t exist' )); } return $Post->json(); } private function getAllPosts() { $posts = buildPostsForPage(0, $this->getDbField('showAllAmount'), true, false); $tmp = array(); foreach($posts as $Post) { array_push($tmp, $Post->json( $returnsArray=true )); } return json_encode($tmp); } private function getPage($key) { // Generate the object Page $Page = buildPage($key); if(!$Page) { return json_encode(array( 'status'=>'0', 'bludit'=>'Bludit API plugin', 'message'=>'The page doesn\'t exist' )); } return $Page->json(); } private function getAllPages() { $pages = buildAllPages(); $tmp = array(); foreach($pages as $Page) { if($Page->published()) { array_push($tmp, $Page->json( $returnsArray=true )); } } return json_encode($tmp); } public function beforeRulesLoad() { global $Url; // The URI start with /api/ $startString = HTML_PATH_ROOT.'api/'; $URI = $Url->uri(); $length = mb_strlen($startString, CHARSET); if( mb_substr($URI, 0, $length)!=$startString ) { return false; } // Remove the first part of the URI $URI = ltrim($URI, HTML_PATH_ROOT.'api/'); // Parameters // ------------------------------------------------------------ // show post {post slug} // show page {page slug} // show all posts {AUTH KEY} // show all pages {AUTH KEY} // Get parameters $parameters = explode('/', $URI); for($i=0; $i<4; $i++) { if(empty($parameters[$i])) { return false; } else { // Sanizite $parameters[$i] = Sanitize::html($parameters[$i]); } } // Default JSON $json = json_encode(array( 'status'=>'0', 'bludit'=>'Bludit API plugin', 'message'=>'Check the parameters' )); if($parameters[0]==='show') { if($parameters[1]==='all') { // Authentication key from the URI $authKey = $parameters[3]; // Compare keys if( $authKey===$this->getDbField('authKey') ) { if($parameters[2] === 'posts') { $json = $this->getAllPosts(); } elseif($parameters[2] === 'pages') { $json = $this->getAllPages(); } } } elseif($parameters[1]==='post' || $parameters[1]==='page') { $key = $parameters[2]; if($parameters[1] === 'post') { $json = $this->getPost($key); } elseif($parameters[1] === 'page') { $json = $this->getPage($key); } } } // Print the JSON header('Content-Type: application/json'); exit($json); } }