medoo->get( $this->table, ["parent","paragraph","chapter_len","next_chapter","prev_chapter"], ["book"=>$book,"paragraph"=>$par] ); $par = $parent["parent"]; } while ($parent["parent"] > -1); $this->_index(["book","paragraph","level","toc","next_chapter","prev_chapter","parent"], ["level[<]"=>8, "book"=>$book, "paragraph[>]"=>$parent["paragraph"], "paragraph[<]"=>$parent["paragraph"]+$parent["chapter_len"], "ORDER"=>[ "paragraph"=>"ASC" ] ]); echo json_encode($this->result, JSON_UNESCAPED_UNICODE); break; default: # code... break; } } public function show(){ $output = $this->medoo->get( $this->table, ["book","paragraph","level","toc","text"], ["book"=>$_GET["book"],"paragraph"=>$_GET["par"]] ); if($this->medoo->error){ $this->result["ok"]=false; $this->result["message"]=$this->medoo->error; }else{ $this->result["data"] = $output; } echo json_encode($this->result, JSON_UNESCAPED_UNICODE); } public function getTitle($book,$para) { if (isset($book) && isset($para)) { if($this->redis!==false){ $title = $this->redis->hGet("para_title://pali","{$book}-{$para}"); if($title!==FALSE){ return $title; } } $title=""; $query = "SELECT * from "._TABLE_PALI_TEXT_." where book = ? and paragraph = ?"; $stmt = $this->dbh->prepare($query); $stmt->execute(array($book,$para)); $result = $stmt->fetch(PDO::FETCH_ASSOC); if ($result) { if($result["level"]>0 && $result["level"]<8){ $title= $result["toc"]; } else{ $query = "SELECT * from "._TABLE_PALI_TEXT_." where book = ? and paragraph = ?"; $stmt = $this->dbh->prepare($query); $stmt->execute(array($book,$result["parent"])); $result = $stmt->fetch(PDO::FETCH_ASSOC); if ($result) { $title= $result["toc"]; } else{ $title= ""; } } } else { $title= ""; } if($this->redis){ $this->redis->hSet("para_title://pali","{$book}-{$para}",$title); } return $title; } else { $title= ""; } } } ?>