From fb9df0c269f36703909b8b259abbdbed29881ecd Mon Sep 17 00:00:00 2001
From: tcit Para 1 Para 2 Para 1 Para 2 The story begins...Contents
";
- $toc .= "
";
-
- return $toc;
- }
- /**
- * Get the images (an array containing the jpeg data). Array entry 0 will
- * correspond to image record 0.
- * @return array
- */
- public function getImages(){
- return $this->images;
- }
-
- /**
- * Get the metadata in the form of a hashtable (for example, title or author).
- * @return array
- */
- public function getMetaData(){
- return $this->metadata;
- }
-
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/OnlineArticle.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/OnlineArticle.php
deleted file mode 100644
index ec3182fe..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/OnlineArticle.php
+++ /dev/null
@@ -1,116 +0,0 @@
-init();
- if(!isset($this->metadata["title"])){
- $this->metadata["title"] = CharacterEntities::convert(strip_tags($r->getTitle()->innerHTML));
- }
- if(!isset($this->metadata["author"])){
- $parts = parse_url($url);
- $this->metadata["author"] = $parts["host"];
- }
-
- $article = $r->getContent()->innerHTML;
- if(substr($article, 0, 5) == "".$article."";
- }else{
- $article = "".$article."";
- }
- $doc = new DOMDocument();
- @$doc->loadHTML($article) or die($article);
- $doc->normalizeDocument();
-
- $this->images = $this->handleImages($doc, $url);
- $this->text = $doc->saveHTML();
- }
-
- /**
- * Get the text data to be integrated in the MOBI file
- * @return string
- */
- public function getTextData(){
- return $this->text;
- }
- /**
- * Get the images (an array containing the jpeg data). Array entry 0 will
- * correspond to image record 0.
- * @return array
- */
- public function getImages(){
- return $this->images;
- }
- /**
- * Get the metadata in the form of a hashtable (for example, title or author).
- * @return array
- */
- public function getMetaData(){
- return $this->metadata;
- }
- /**
- *
- * @param DOMElement $dom
- * @return array
- */
- private function handleImages($dom, $url){
- $images = array();
-
- $parts = parse_url($url);
-
- $savedImages = array();
-
- $imgElements = $dom->getElementsByTagName('img');
- foreach($imgElements as $img) {
- $src = $img->getAttribute("src");
-
- $is_root = false;
- if(substr($src, 0, 1) == "/"){
- $is_root = true;
- }
-
- $parsed = parse_url($src);
-
- if(!isset($parsed["host"])){
- if($is_root){
- $src = http_build_url($url, $parsed, HTTP_URL_REPLACE);
- }else{
- $src = http_build_url($url, $parsed, HTTP_URL_JOIN_PATH);
- }
- }
- $img->setAttribute("src", "");
- if(isset($savedImages[$src])){
- $img->setAttribute("recindex", $savedImages[$src]);
- }else{
- $image = ImageHandler::DownloadImage($src);
-
- if($image !== false){
- $images[$this->imgCounter] = new FileRecord(new Record($image));
-
- $img->setAttribute("recindex", $this->imgCounter);
- $savedImages[$src] = $this->imgCounter;
- $this->imgCounter++;
- }
- }
- }
-
- return $images;
- }
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/PEOFRecord.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/PEOFRecord.php
deleted file mode 100644
index a2b0fee8..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/PEOFRecord.php
+++ /dev/null
@@ -1,49 +0,0 @@
-elements = new FileElement(array(
-
- "offset44"=>new FileInt(0xe98e0d0a)
- ));
- }
- public function getByteLength(){
- return $this->getLength();
- }
-
- public function getLength(){
- return $this->elements->getByteLength();
- }
-
- public function get(){
- return $this;
- }
-
- public function set($elements){
- throw new Exception("Unallowed set");
- }
-
- public function serialize() {
- return $this->elements->serialize();
- }
-
- public function unserialize($data) {
- $this->elements->unserialize($data);
- }
-
- public function __toString(){
- $output = "PalmDoc Record (".$this->getByteLength()." bytes):\n";
- $output .= $this->elements;
- return $output;
- }
-
-}
\ No newline at end of file
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/PFCISRecord.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/PFCISRecord.php
deleted file mode 100644
index 9e72cc1c..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/PFCISRecord.php
+++ /dev/null
@@ -1,59 +0,0 @@
-elements = new FileElement(array(
- "offset0"=>new FileString("FCIS", 4), //FCIS
- "offset4"=>new FileInt(0x014),
- "offset8"=>new FileInt(0x10),
- "offset12"=>new FileInt(0x01),
- "offset16"=>new FileInt(),
- "offset20"=>new FileInt($leng),
- "offset24"=>new FileInt(),
- "offset28"=>new FileInt(0x20),
- "offset32"=>new FileInt(0x08),
- "offset36"=>new FileShort(0x01),
- "offset38"=>new FileShort(0x01),
- "offset40"=>new FileInt()
- ));
- }
- public function getByteLength(){
- return $this->getLength();
- }
-
- public function getLength(){
- return $this->elements->getByteLength();
- }
-
- public function get(){
- return $this;
- }
-
- public function set($elements){
- throw new Exception("Unallowed set");
- }
-
- public function serialize() {
- return $this->elements->serialize();
- }
-
- public function unserialize($data) {
- $this->elements->unserialize($data);
- }
-
- public function __toString(){
- $output = "PalmDoc Record (".$this->getByteLength()." bytes):\n";
- $output .= $this->elements;
- return $output;
- }
-
-}
\ No newline at end of file
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/PFLISRecord.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/PFLISRecord.php
deleted file mode 100644
index dbd8ecf5..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/PFLISRecord.php
+++ /dev/null
@@ -1,58 +0,0 @@
-elements = new FileElement(array(
- "offsetL0"=>new FileString("FLIS", 4), //FLIS
- "offsetL4"=>new FileInt(0x08),
- "offsetL8"=>new FileShort(0x41),
- "offsetL10"=>new FileString(6),
- "offsetL16"=>new FileInt(0xFFFFFFFF),
- "offsetL20"=>new FileShort(0x01),
- "offsetL22"=>new FileShort(0x03),
- "offsetL24"=>new FileInt(0x03),
- "offsetL28"=>new FileInt(0x01),
- "offsetL32"=>new FileInt(0xFFFFFFFF)
-
- ));
- }
- public function getByteLength(){
- return $this->getLength();
- }
-
- public function getLength(){
- return $this->elements->getByteLength();
- }
-
- public function get(){
- return $this;
- }
-
- public function set($elements){
- throw new Exception("Unallowed set");
- }
-
- public function serialize() {
- return $this->elements->serialize();
- }
-
- public function unserialize($data) {
- $this->elements->unserialize($data);
- }
-
- public function __toString(){
- $output = "PalmDoc Record (".$this->getByteLength()." bytes):\n";
- $output .= $this->elements;
- return $output;
- }
-
-}
\ No newline at end of file
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/PalmRecord.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/PalmRecord.php
deleted file mode 100644
index 29dc978a..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/PalmRecord.php
+++ /dev/null
@@ -1,154 +0,0 @@
-elements = new FileElement(array(
- "compression"=>new FileShort(),
- "unused"=>new FileShort(),
- "textLength"=>new FileInt(),
- "recordCount"=>new FileShort(),
- "recordSize"=>new FileShort(),
- "encryptionType"=>new FileShort(),
- "unused2"=>new FileShort(),
- //MOBI Header
- "mobiIdentifier"=>new FileString("MOBI", 4),
- "mobiHeaderLength"=>new FileInt(),
- "mobiType"=>new FileInt(),
- "textEncoding"=>new FileInt(),
- "uniqueID"=>new FileInt(),
- "fileVersion"=>new FileInt(),
- "reserved"=>new FileString(40),
- "firstNonBookIndex"=>new FileInt(),
- "fullNameOffset"=>new FileInt(),
- "fullNameLength"=>new FileInt(),
- "locale"=>new FileInt(),
- "inputLanguage"=>new FileInt(),
- "outputLanguage"=>new FileInt(),
- "minimumVersion"=>new FileInt(),
- "firstImageIndex"=>new FileInt(),
- "huffmanRecordOffset"=>new FileInt(),
- "huffmanRecordCount"=>new FileInt(),
- "unused3"=>new FileString(8),
- "exthFlags"=>new FileInt(0x50),
- "unknown"=>new FileString(32),
- "drmOffset"=>new FileInt(0xFFFFFFFF),
- "drmCount"=>new FileInt(0xFFFFFFFF),
- "drmSize"=>new FileInt(),
- "drmFlags"=>new FileInt(),
- "mobiFiller"=>new FileString(12),
- "offset192"=>new FileShort(0x01),
- "offset194"=>new FileShort(),
- "offset196"=>new FileInt(0x01),
- "offset200"=>new FileInt(),
- "offset204"=>new FileInt(0x01),
- "offset208"=>new FileInt(),
- "offset212"=>new FileInt(0x01),
- "offset216"=>new FileString(8),
- "offset224"=>new FileInt(0xFFFFFFFF),
- "offset228"=>new FileInt(),
- "offset232"=>new FileString(8),
- "offset240"=>new FileInt(0x01),
- "offset244"=>new FileInt(0xFFFFFFFF),
- //EXTH Header
- "exthIdentifier"=>new FileString("EXTH", 4),
- "exthHeaderLength"=>new FileInt(),
- "exthRecordCount"=>new FileInt(),
- "exthRecords"=>new FileElement(),
- "exthPadding"=>new FileString(),//added the 2 extra pad bytes that comes before name/title
- //"fullNamePadding"=>new FileString(100),
- "fullName"=>new FileString()
- ));
-
- //Set values from the info block
- foreach($settings->values as $name => $val){
- //echo $name.", ";
- if($this->elements->exists($name)){
- $this->elements->get($name)->set($settings->get($name));
- }
- }
-
- $els = $settings->values;
-
- $exthElems = new FileElement();
- $i = 0;
- $l = 0;
- foreach($els as $name=>$val){
- $type = EXTHHelper::textToType($name);
- if($type !== false){
- $type = new FileInt($type);
- $length = new FileInt(8+strlen($val));
- $data = new FileString($val);
- $l += 8+strlen($val);
- $exthElems->add("type".$i, $type);
- $exthElems->add("length".$i, $length);
- $exthElems->add("data".$i, $data);
- $i++;
- }
- }
-
- if($images > 0){
- $this->elements->get("firstImageIndex")->set($textRecords+2);
- }
- $this->elements->get("firstNonBookIndex")->set($textRecords+2+$images);
- $this->elements->get("reserved")->set(str_pad("", 40, chr(255), STR_PAD_RIGHT));
- $this->elements->get("exthRecordCount")->set($i);
- $this->elements->set("exthRecords", $exthElems);
- $pad = $l%4;
- $pad = (4-$pad)%4;
- $this->elements->get("exthPadding")->set(str_pad("", $pad+2, "\0", STR_PAD_RIGHT));
- $this->elements->get("exthHeaderLength")->set(12+$l+$pad);
-
-
- $this->elements->get("recordCount")->set($textRecords);
-
- $this->elements->get("fullNameOffset")->set($this->elements->offsetToEntry("fullName"));//need to be checked
- $this->elements->get("fullNameLength")->set(strlen($settings->get("title")));
- $this->elements->get("fullName")->set($settings->get("title"));
- $this->elements->get("textLength")->set($textLength);
-
- $this->elements->get("offset194")->set($textRecords+2+$images);
- $this->elements->get("offset200")->set($textRecords+4+$images);
- $this->elements->get("offset208")->set($textRecords+3+$images);
- $this->elements->get("offset232")->set(str_pad("", 8, chr(255), STR_PAD_RIGHT));
- }
-
- public function getByteLength(){
- return $this->getLength();
- }
-
- public function getLength(){
- return $this->elements->getByteLength();
- }
-
- public function get(){
- return $this;
- }
-
- public function set($elements){
- throw new Exception("Unallowed set");
- }
-
- public function serialize() {
- return $this->elements->serialize();
- }
-
- public function unserialize($data) {
- $this->elements->unserialize($data);
- }
-
- public function __toString(){
- $output = "PalmDoc Record (".$this->getByteLength()." bytes):\n";
- $output .= $this->elements;
- return $output;
- }
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/Prc.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/Prc.php
deleted file mode 100644
index 1507e24b..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/Prc.php
+++ /dev/null
@@ -1,97 +0,0 @@
-new FileString(32),
- "attributes"=>new FileShort(),
- "version"=>new FileShort(),
- "creationTime"=>new FileDate(),
- "modificationTime"=>new FileDate(),
- "backupTime"=>new FileDate(),
- "modificationNumber"=>new FileInt(),
- "appInfoID"=>new FileInt(),
- "sortInfoID"=>new FileInt(),
- "prcType"=>new FileString(4),
- "creator"=>new FileString(4),
- "uniqueIDSeed"=>new FileInt(),
- "nextRecordListID"=>new FileInt(),
- "numberRecords"=>new FileShort(),
- "recordList"=>new FileElement(),
- "filler"=>new FileShort(),
- "records"=>new FileElement()
- ));
-
- //Set values from the info block
- foreach($this->elements as $name => $val){
- if($settings->exists($name)){
- $this->get($name)->set($settings->get($name));
- }
- }
-
- $this->get("numberRecords")->set(sizeof($records));
-
- $i = 0;
- foreach($records as $record){
- $offset = new FileInt();
- $attr = new FileByte();
- $uniqueID = new FileTri(2*$i);
-
- $this->elements["recordList"]->add("Rec".$i, new FileElement(array(
- "offset"=>$offset,
- "attribute"=>$attr,
- "uniqueID"=>$uniqueID
- )));
-
- $this->elements["records"]->add("Rec".$i, $record);
- $i+=1;
- }
-
- $this->updateOffsets($records);
- }
-
- public function getByteLength(){
- throw new Exception("Test");
- }
-
- public function updateOffsets($records){
- $base = $this->offsetToEntry("records");
-
- $i = 0;
-
- foreach($records as $record){
- $el = $this->elements["recordList"]->get("Rec".$i);
-
- $local = $this->elements["records"]->offsetToEntry("Rec".$i);
-
- $el->get("offset")->set($base+$local);
-
- $i++;
- }
- }
-
- public function save($file){
- $handle = fopen($file, "w");
- fwrite($handle, $this->serialize());
- fclose($handle);
- }
-
- public function output(){
- echo $this->serialize();
- }
-
- public function __toString(){
- $output = "Prc (".$this->getByteLength()." bytes): {\n";
- foreach($this->elements as $key=>$value){
- $output .= "\t".$key.": ".$value."\n";
- }
- $output .= "}";
- return $output;
- }
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/PreprocessedArticle.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/PreprocessedArticle.php
deleted file mode 100644
index 2e992404..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/PreprocessedArticle.php
+++ /dev/null
@@ -1,89 +0,0 @@
-text = $textData;
- $this->metadata = $metadata;
-
- $this->images = $this->downloadImages($imageLinks);
- }
-
- /**
- * Create a Preprocessed article from a json string
- * @param string $json JSON data. Should be of the following format:
- * {"text": "TEXT", "images: ["imageURL1", "imageURL2"], "metadata": {"key": "value"}}
- *
- * Note: Any image tags should have the recindex attribute set to the appropriate index (the
- * same index as the image in the array)
- * @return PreprocessedArticle The generated preprocessed array
- */
- static public function CreateFromJson($json){
- $data = json_decode($json);
- return new PreprocessedArticle($data["text"], $data["images"], $data["metadata"]);
- }
-
- /**
- * Get the text data to be integrated in the MOBI file
- * @return string
- */
- public function getTextData(){
- return $this->text;
- }
- /**
- * Get the images (an array containing the jpeg data). Array entry 0 will
- * correspond to image record 0.
- * @return array
- */
- public function getImages(){
- return $this->images;
- }
- /**
- * Get the metadata in the form of a hashtable (for example, title or author).
- * @return array
- */
- public function getMetaData(){
- return $this->metadata;
- }
- /**
- *
- * @param DOMElement $dom
- * @return array
- */
- private function downloadImages($links){
- $images = array();
- foreach($links as $link) {
- $imgFile = @imagecreatefromstring(Http::Request($link));
-
- if($imgFile === false){
- $imgFile = @imagecreate(1, 1);
- $black = @imagecolorallocate($imgFile, 255, 255, 255);
- }
- if($imgFile !== false){
- @imagefilter($imgFile, IMG_FILTER_GRAYSCALE);
-
- ob_start();
- @imagejpeg($imgFile);
- $image = ob_get_contents();
- ob_end_clean();
-
- $images[$this->imgCounter] = new FileRecord(new Record($image));
- imagedestroy($imgFile);
-
- $this->imgCounter++;
- }
- }
-
- return $images;
- }
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/RecognizeURL.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/RecognizeURL.php
deleted file mode 100644
index 6319ed57..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/RecognizeURL.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/Record.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/Record.php
deleted file mode 100644
index 3cb39582..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/Record.php
+++ /dev/null
@@ -1,96 +0,0 @@
-data = $data;
- if($length >= 0){
- $this->length = $length;
- }else{
- $this->length = strlen($data);
- }
- }
-
- public function compress($compression_method){
- switch($compression_method){
- case NO_COMPRESSION:
- //Finished!
- break;
- case PALMDOC_COMPRESSION:
- throw new Exception("Not implemented yet");
- break;
- case HUFF:
- throw new Exception("Not implemented yet");
- break;
- default:
- throw new Exception("Invalid argument");
- }
- }
-
- public function getByteLength(){
- return $this->getLength();
- }
-
- /**
- * Get the length of the record
- * @return int Length of the data
- */
- public function getLength(){
- return $this->length;
- }
-
- /**
- * Get the data contained in the record
- * @return string Data contained in the record
- */
- public function get(){
- return $this->data;
- }
-
- /**
- * Set the data contained in the record
- * @param string $value Data contained in the record
- */
- public function set($value){
- $this->data = $value;
- }
-
- public function serialize(){
- return $this->data;
- }
- public function unserialize($data){
- __construct($data);
- }
-
- public function __toString() {
- $toShow = $this->data;
- if(strlen($this->data) > 103){
- $toShow = substr($this->data, 0, 100)."...";
- }
- $out = "Record: {\n";
- $out .= "\t".htmlspecialchars($toShow)."\n";
- $out .= "}";
- return $out;
- }
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/RecordFactory.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/RecordFactory.php
deleted file mode 100644
index 8bf0c97d..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/RecordFactory.php
+++ /dev/null
@@ -1,129 +0,0 @@
-settings = $settings;
- }
-
- /**
- * Create records from a data string
- * @param string $data
- * @return array(Record)
- */
- public function createRecords($data){
- $records = array();
- $size = $this->settings->get("recordSize");
- $compression = $this->settings->get("compression");
-
- $dataEntries = mb_str_split($data, $size);
-
- for($i = 0, $len = sizeof($dataEntries); $i < $len; $i++){
- $records[$i] = new Record($dataEntries[$i]);
- $records[$i]->compress($compression);
- }
-
- return $records;
- }
-
- public function createEOFRecord(){
- return new Record(0xe98e0d0a);
- }
-
- public function createFCISRecord($textLength){
- $r = "FCIS";
- $r .= $this->asString(20, 4);
- $r .= $this->asString(16, 4);
- $r .= $this->asString(1, 4);
- $r .= $this->asString(0, 4);
- $r .= $this->asString($textLength, 4);
- $r .= $this->asString(0, 4);
- $r .= $this->asString(32, 4);
- $r .= $this->asString(8, 4);
- $r .= $this->asString(1, 2);
- $r .= $this->asString(1, 2);
- $r .= $this->asString(0, 4);
- return new Record($r);
- }
-
- public function createFLISRecord(){
-
- $this->elements = new FileElement(array(
- "offsetL0"=>new FileString("FLIS", 4), //FLIS
- "offsetL4"=>new FileInt(0x08),
- "offsetL8"=>new FileShort(0x41),
- "offsetL10"=>new FileTri(),
- "offsetL16"=>new FileInt(0xFFFFFFFF),
- "offsetL20"=>new FileShort(0x01),
- "offsetL22"=>new FileShort(0x03),
- "offsetL24"=>new FileInt(0x03),
- "offsetL28"=>new FileInt(0x01),
- "offsetL32"=>new FileInt(0xFFFFFFFF)
- ));
-
- /*$r = "FLIS";
- $r .= $this->asString(8, 4);
- $r .= $this->asString(65, 2);
- $r .= $this->asString(0, 2);
- $r .= $this->asString(0, 4);
- $r .= $this->asString(-1, 4);
- $r .= $this->asString(1, 2);
- $r .= $this->asString(3, 2);
- $r .= $this->asString(3, 4);
- $r .= $this->asString(1, 4);
- $r .= $this->asString(-1, 4);
- return new Record($r);*/
- }
-
- private function asString($int, $size){
- $out = "";
- for($i = 0; $i < $size; $i++){
- if($i > 0) $out = " ".$out;
- $byte = dechex($int & 0xFF);
- if(strlen($byte) == 1) $byte = "0".$byte;
- $out = $byte.$out;
- $int = $int >> 8;
- }
- return $out;
- }
-
- public function __toString() {
- $out = "Record Factory: {\n";
- $out .= "\tRecord Size: ".$this->settings->get("recordSize")."\n";
- $out .= "\tCompression: ".$this->settings->get("compression")."\n";
- $out .= "}";
- return $out;
- }
-}
-function mb_str_split($string, $split_length = 1){
- mb_internal_encoding('UTF-8');
- mb_regex_encoding('UTF-8');
-
- $split_length = ($split_length <= 0) ? 1 : $split_length;
-
- $mb_strlen = mb_strlen($string, 'utf-8');
-
- $array = array();
-
- for($i = 0; $i < $mb_strlen; $i += $split_length){
- $array[] = mb_substr($string, $i, $split_length);
- }
-
- return $array;
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/Settings.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/Settings.php
deleted file mode 100644
index 6bde0ba9..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/Settings.php
+++ /dev/null
@@ -1,95 +0,0 @@
-values = array(
- "attributes"=>0,
- "version"=>0,
- "creationTime"=>time()+94694400,
- "modificationTime"=>time()+94694400,
- "backupTime"=>0,
- "modificationNumber"=>0,
- "appInfoID"=>0,
- "sortInfoID"=>0,
- "prcType"=>"BOOK",
- "creator"=>"MOBI",
- "uniqueIDSeed"=>rand(),
- "nextRecordListID"=>0,
- "recordAttributes"=>0,
- "compression"=>NO_COMPRESSION,
- "recordSize"=>RECORD_SIZE,
- "encryptionType"=>NO_ENCRYPTION,
- "mobiIdentifier"=>"MOBI",
- "mobiHeaderLength"=>0xe8,
- "mobiType"=>MOBIPOCKET_BOOK,
- "textEncoding"=>UTF8,
- "uniqueID"=>rand(),
- "fileVersion"=>6,
- "locale"=>0x09,
- "inputLanguage"=>0,
- "outputLanguage"=>0,
- "minimumVersion"=>6,
- "huffmanRecordOffset"=>0,
- "huffmanRecordCount"=>0,
- "exthFlags"=>0x50,
- "drmOffset"=>0xFFFFFFFF,
- "drmCount"=>0xFFFFFFFF,
- "drmSize"=>0,
- "drmFlags"=>0,
- "extraDataFlags"=>0,
- "exthIdentifier"=>"EXTH",
- "title"=>"Unknown title",
- "author"=>"Unknown author",
- "subject"=>"Unknown subject"
- );
-
- foreach($additionalSettings as $key=>$value){
- $this->values[$key] = $value;
- }
- }
-
- /**
- * Get a value from the settings
- * @param string $key Key of the setting
- * @return mixed The value of the setting
- */
- public function get($key){
- return $this->values[$key];
- }
-
- /**
- * Checks if a value is set
- * @param string $key Key of the setting
- * @return bool True if the value exists
- */
- public function exists($key){
- return isset($this->values[$key]);
- }
-
- public function __toString() {
- $out = "Settings: {\n";
- foreach($this->values as $key=>$value){
- $out .= "\t".$key.": ".$value."\n";
- }
- $out .= "}";
- return $out;
- }
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/constants.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/constants.php
deleted file mode 100644
index bd363118..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/constants.php
+++ /dev/null
@@ -1,11 +0,0 @@
-id = intval(substr($ending, 0, strpos($ending, "/")));
-
- for($i = 1; $i <= max(1, $this->chapterCount); $i++){
- $this->addChapter($i);
- }
- }
-
- private function addChapter($n){
- $doc = new DOMDocument();
- $file = Http::Request(self::$prefix.$this->id."/".$n."/");
- @$doc->loadHTML($file) or die($file);
-
- if(!$this->downloadedMetadata){
- $this->loadMetadata($doc);
- $this->downloadedMetadata = true;
- }
- if($this->chapterCount < 0){
- $this->chapterCount = $this->getNumberChapters($doc);
-
- if($this->chapterCount > 4){
- die("Too many files to download, don't use php for this!");
- }
- }
-
- $textEl = $doc->getElementById("storytext");
- if($textEl == null) die("Error: ".$doc->saveHTML());
- $horizontalRulebars = $doc->getElementsByTagName('hr');
- /**
- * @var DOMNode
- */
- $hr;
- foreach($horizontalRulebars as $hr) {
- $hr->setAttribute("size", null);
- $hr->setAttribute("noshade", null);
- }
- $text = $this->innerHtml($textEl);
-
- $title = "";
- $selects = $doc->getElementsByTagName('select');
- foreach($selects as $select) {
- if($select->hasAttribute("name") && $select->getAttribute("name") == "chapter"){
- $options = $select->getElementsByTagName("option");
-
- $test = $n.". ";
- foreach($options as $option){
- $val = $option->nodeValue;
- if(substr($val, 0, strlen($test)) == $test){
- $title = substr($val, strlen($test));
- break;
- }
- }
- break;
- }
- }
- $this->addPage($text, $title);
- }
-
- private function getNumberChapters($doc){
- $selects = $doc->getElementsByTagName('select');
- foreach($selects as $select) {
- if($select->hasAttribute("name") && $select->getAttribute("name") == "chapter"){
- $options = $select->getElementsByTagName("option");
-
- $count = $options->length;
- return $count;
- }
- }
- }
-
- private function loadMetadata($doc){
- //Author
- $links = $doc->getElementsByTagName('a');
- foreach($links as $link) {
- if($link == null){
- var_dump($link);
- }
- if($link->hasAttribute("href") && substr($link->getAttribute("href"), 0, 3) == "/u/"){
- $this->setMetadata("author", $link->nodeValue);
- }
- }
- //Title
- /*
- $links = $doc->getElementsByTagName('link');
- foreach($links as $link) {
- if($link->hasAttribute("rel") && $link->getAttribute("rel") == "canonical"){
- $url = $link->getAttribute("href");
- $title = str_replace("_", " ", substr($url, strrpos($url, "/")+1));
- $this->setMetadata("title", $title);
- }
- }*/
-
- //TODO: Find a more reliable way to extract the title
- $title = $doc->getElementsByTagName("b")->item(0)->nodeValue;
- $this->setMetadata("title", $title);
- }
-
- private function innerHtml($node){
- $doc = new DOMDocument();
- foreach ($node->childNodes as $child)
- $doc->appendChild($doc->importNode($child, true));
-
- return $doc->saveHTML();
- }
-
- public static function Matches($url){
- //TODO: Implement with regex
- return strpos($url, self::$prefix) !== false;
- }
-}
-?>
diff --git a/inc/3rdparty/libraries/send2kindle/MOBIClass/http_build_url.php b/inc/3rdparty/libraries/send2kindle/MOBIClass/http_build_url.php
deleted file mode 100644
index b475edb0..00000000
--- a/inc/3rdparty/libraries/send2kindle/MOBIClass/http_build_url.php
+++ /dev/null
@@ -1,94 +0,0 @@
-registerNodeClass('DOMElement', 'JSLikeHTMLElement');
-* $doc->loadHTML(' ";
- }
- $toc .= "".($i+1).". ".$entry["title"]." Chapter 2
]*>[ \n\r\t]*){2,}/i',
- 'replaceFonts' => '/<(\/?)font[^>]*>/i',
- // 'trimRe' => '/^\s+|\s+$/g', // PHP has trim()
- 'normalize' => '/\s{2,}/',
- 'killBreaks' => '/(
(\s| ?)*){1,}/',
- 'video' => '/http:\/\/(www\.)?(youtube|vimeo)\.com/i',
- 'skipFootnoteLink' => '/^\s*(\[?[a-z0-9]{1,2}\]?|^|edit|citation needed)\s*$/i'
- );
-
- /* constants */
- const FLAG_STRIP_UNLIKELYS = 1;
- const FLAG_WEIGHT_CLASSES = 2;
- const FLAG_CLEAN_CONDITIONALLY = 4;
-
- /**
- * Create instance of Readability
- * @param string UTF-8 encoded string
- * @param string (optional) URL associated with HTML (used for footnotes)
- */
- function __construct($html, $url=null)
- {
- /* Turn all double br's into p's */
- /* Note, this is pretty costly as far as processing goes. Maybe optimize later. */
- $html = preg_replace($this->regexps['replaceBrs'], '
', $html); - $html = preg_replace($this->regexps['replaceFonts'], '<$1span>', $html); - $html = mb_convert_encoding($html, 'HTML-ENTITIES', "UTF-8"); - $this->dom = new DOMDocument(); - $this->dom->preserveWhiteSpace = false; - $this->dom->registerNodeClass('DOMElement', 'JSLikeHTMLElement'); - @$this->dom->loadHTML($html); - $this->url = $url; - } - - /** - * Get article title element - * @return DOMElement - */ - public function getTitle() { - return $this->articleTitle; - } - - /** - * Get article content element - * @return DOMElement - */ - public function getContent() { - return $this->articleContent; - } - - /** - * Runs readability. - * - * Workflow: - * 1. Prep the document by removing script tags, css, etc. - * 2. Build readability's DOM tree. - * 3. Grab the article content from the current dom tree. - * 4. Replace the current DOM tree with the new one. - * 5. Read peacefully. - * - * @return boolean true if we found content, false otherwise - **/ - public function init() - { - $this->removeScripts($this->dom); - - // Assume successful outcome - $this->success = true; - - $bodyElems = $this->dom->getElementsByTagName('body'); - if ($bodyElems->length > 0) { - if ($this->bodyCache == null) { - $this->bodyCache = $bodyElems->item(0)->innerHTML; - } - if ($this->body == null) { - $this->body = $bodyElems->item(0); - } - } - - $this->prepDocument(); - - //die($this->dom->documentElement->parentNode->nodeType); - //$this->setInnerHTML($this->dom->documentElement, $this->getInnerHTML($this->dom->documentElement)); - //die($this->getInnerHTML($this->dom->documentElement)); - - /* Build readability's DOM tree */ - $overlay = $this->dom->createElement('div'); - $innerDiv = $this->dom->createElement('div'); - $articleTitle = $this->getArticleTitle(); - $articleContent = $this->grabArticle(); - - if (!$articleContent) { - $this->success = false; - $articleContent = $this->dom->createElement('div'); - $articleContent->setAttribute('id', 'readability-content'); - $articleContent->innerHTML = '
Sorry, Readability was unable to parse this page for content.
'; - } - - $overlay->setAttribute('id', 'readOverlay'); - $innerDiv->setAttribute('id', 'readInner'); - - /* Glue the structure of our document together. */ - $innerDiv->appendChild($articleTitle); - $innerDiv->appendChild($articleContent); - $overlay->appendChild($innerDiv); - - /* Clear the old HTML, insert the new content. */ - $this->body->innerHTML = ''; - $this->body->appendChild($overlay); - //document.body.insertBefore(overlay, document.body.firstChild); - $this->body->removeAttribute('style'); - - $this->postProcessContent($articleContent); - - // Set title and content instance variables - $this->articleTitle = $articleTitle; - $this->articleContent = $articleContent; - - return $this->success; - } - - /** - * Debug - */ - protected function dbg($msg) { - if ($this->debug) echo '* ',$msg, '').replace(readability.regexps.replaceFonts, '<$1span>'); - // We do this in the constructor for PHP as that's when we have raw HTML - before parsing it into a DOM tree. - // Manipulating innerHTML as it's done in JS is not possible in PHP. - } - - /** - * For easier reading, convert this document to have footnotes at the bottom rather than inline links. - * @see http://www.roughtype.com/archives/2010/05/experiments_in.php - * - * @return void - **/ - public function addFootnotes($articleContent) { - $footnotesWrapper = $this->dom->createElement('div'); - $footnotesWrapper->setAttribute('id', 'readability-footnotes'); - $footnotesWrapper->innerHTML = '
tags, etc.
- *
- * @param DOMElement
- * @return void
- */
- function prepArticle($articleContent) {
- $this->cleanStyles($articleContent);
- $this->killBreaks($articleContent);
- if ($this->revertForcedParagraphElements) {
- $this->revertReadabilityStyledElements($articleContent);
- }
-
- /* Clean out junk from the article content */
- $this->cleanConditionally($articleContent, 'form');
- $this->clean($articleContent, 'object');
- $this->clean($articleContent, 'h1');
-
- /**
- * If there is only one h2, they are probably using it
- * as a header and not a subheader, so remove it since we already have a header.
- ***/
- if ($articleContent->getElementsByTagName('h2')->length == 1) {
- $this->clean($articleContent, 'h2');
- }
- $this->clean($articleContent, 'iframe');
-
- $this->cleanHeaders($articleContent);
-
- /* Do these last as the previous stuff may have removed junk that will affect these */
- $this->cleanConditionally($articleContent, 'table');
- $this->cleanConditionally($articleContent, 'ul');
- $this->cleanConditionally($articleContent, 'div');
-
- /* Remove extra paragraphs */
- $articleParagraphs = $articleContent->getElementsByTagName('p');
- for ($i = $articleParagraphs->length-1; $i >= 0; $i--)
- {
- $imgCount = $articleParagraphs->item($i)->getElementsByTagName('img')->length;
- $embedCount = $articleParagraphs->item($i)->getElementsByTagName('embed')->length;
- $objectCount = $articleParagraphs->item($i)->getElementsByTagName('object')->length;
-
- if ($imgCount === 0 && $embedCount === 0 && $objectCount === 0 && $this->getInnerText($articleParagraphs->item($i), false) == '')
- {
- $articleParagraphs->item($i)->parentNode->removeChild($articleParagraphs->item($i));
- }
- }
-
- try {
- $articleContent->innerHTML = preg_replace('/
]*>\s*
innerHTML);
- //articleContent.innerHTML = articleContent.innerHTML.replace(/
]*>\s*
dbg("Cleaning innerHTML of breaks failed. This is an IE strict-block-elements bug. Ignoring.: " . $e);
- }
- }
-
- /**
- * Initialize a node with the readability object. Also checks the
- * className/id for special names to add to its score.
- *
- * @param Element
- * @return void
- **/
- protected function initializeNode($node) {
- $readability = $this->dom->createAttribute('readability');
- $readability->value = 0; // this is our contentScore
- $node->setAttributeNode($readability);
-
- switch (strtoupper($node->tagName)) { // unsure if strtoupper is needed, but using it just in case
- case 'DIV':
- $readability->value += 5;
- break;
-
- case 'PRE':
- case 'TD':
- case 'BLOCKQUOTE':
- $readability->value += 3;
- break;
-
- case 'ADDRESS':
- case 'OL':
- case 'UL':
- case 'DL':
- case 'DD':
- case 'DT':
- case 'LI':
- case 'FORM':
- $readability->value -= 3;
- break;
-
- case 'H1':
- case 'H2':
- case 'H3':
- case 'H4':
- case 'H5':
- case 'H6':
- case 'TH':
- $readability->value -= 5;
- break;
- }
- $readability->value += $this->getClassWeight($node);
- }
-
- /***
- * grabArticle - Using a variety of metrics (content score, classname, element types), find the content that is
- * most likely to be the stuff a user wants to read. Then return it wrapped up in a div.
- *
- * @return DOMElement
- **/
- protected function grabArticle($page=null) {
- $stripUnlikelyCandidates = $this->flagIsActive(self::FLAG_STRIP_UNLIKELYS);
- if (!$page) $page = $this->dom;
- $allElements = $page->getElementsByTagName('*');
- /**
- * First, node prepping. Trash nodes that look cruddy (like ones with the class name "comment", etc), and turn divs
- * into P tags where they have been used inappropriately (as in, where they contain no other block level elements.)
- *
- * Note: Assignment from index for performance. See http://www.peachpit.com/articles/article.aspx?p=31567&seqNum=5
- * TODO: Shouldn't this be a reverse traversal?
- **/
- $node = null;
- $nodesToScore = array();
- for ($nodeIndex = 0; ($node = $allElements->item($nodeIndex)); $nodeIndex++) {
- //for ($nodeIndex=$targetList->length-1; $nodeIndex >= 0; $nodeIndex--) {
- //$node = $targetList->item($nodeIndex);
- $tagName = strtoupper($node->tagName);
- /* Remove unlikely candidates */
- if ($stripUnlikelyCandidates) {
- $unlikelyMatchString = $node->getAttribute('class') . $node->getAttribute('id');
- if (
- preg_match($this->regexps['unlikelyCandidates'], $unlikelyMatchString) &&
- !preg_match($this->regexps['okMaybeItsACandidate'], $unlikelyMatchString) &&
- $tagName != 'BODY'
- )
- {
- $this->dbg('Removing unlikely candidate - ' . $unlikelyMatchString);
- //$nodesToRemove[] = $node;
- $node->parentNode->removeChild($node);
- $nodeIndex--;
- continue;
- }
- }
-
- if ($tagName == 'P' || $tagName == 'TD' || $tagName == 'PRE') {
- $nodesToScore[] = $node;
- }
-
- /* Turn all divs that don't have children block level elements into p's */
- if ($tagName == 'DIV') {
- if (!preg_match($this->regexps['divToPElements'], $node->innerHTML)) {
- //$this->dbg('Altering div to p');
- $newNode = $this->dom->createElement('p');
- try {
- $newNode->innerHTML = $node->innerHTML;
- //$nodesToReplace[] = array('new'=>$newNode, 'old'=>$node);
- $node->parentNode->replaceChild($newNode, $node);
- $nodeIndex--;
- $nodesToScore[] = $node; // or $newNode?
- }
- catch(Exception $e) {
- $this->dbg('Could not alter div to p, reverting back to div.: ' . $e);
- }
- }
- else
- {
- /* EXPERIMENTAL */
- // TODO: change these p elements back to text nodes after processing
- for ($i = 0, $il = $node->childNodes->length; $i < $il; $i++) {
- $childNode = $node->childNodes->item($i);
- if ($childNode->nodeType == 3) { // XML_TEXT_NODE
- //$this->dbg('replacing text node with a p tag with the same content.');
- $p = $this->dom->createElement('p');
- $p->innerHTML = $childNode->nodeValue;
- $p->setAttribute('style', 'display: inline;');
- $p->setAttribute('class', 'readability-styled');
- $childNode->parentNode->replaceChild($p, $childNode);
- }
- }
- }
- }
- }
-
- /**
- * Loop through all paragraphs, and assign a score to them based on how content-y they look.
- * Then add their score to their parent node.
- *
- * A score is determined by things like number of commas, class names, etc. Maybe eventually link density.
- **/
- $candidates = array();
- for ($pt=0; $pt < count($nodesToScore); $pt++) {
- $parentNode = $nodesToScore[$pt]->parentNode;
- // $grandParentNode = $parentNode ? $parentNode->parentNode : null;
- $grandParentNode = !$parentNode ? null : (($parentNode->parentNode instanceof DOMElement) ? $parentNode->parentNode : null);
- $innerText = $this->getInnerText($nodesToScore[$pt]);
-
- if (!$parentNode || !isset($parentNode->tagName)) {
- continue;
- }
-
- /* If this paragraph is less than 25 characters, don't even count it. */
- if(strlen($innerText) < 25) {
- continue;
- }
-
- /* Initialize readability data for the parent. */
- if (!$parentNode->hasAttribute('readability'))
- {
- $this->initializeNode($parentNode);
- $candidates[] = $parentNode;
- }
-
- /* Initialize readability data for the grandparent. */
- if ($grandParentNode && !$grandParentNode->hasAttribute('readability') && isset($grandParentNode->tagName))
- {
- $this->initializeNode($grandParentNode);
- $candidates[] = $grandParentNode;
- }
-
- $contentScore = 0;
-
- /* Add a point for the paragraph itself as a base. */
- $contentScore++;
-
- /* Add points for any commas within this paragraph */
- $contentScore += count(explode(',', $innerText));
-
- /* For every 100 characters in this paragraph, add another point. Up to 3 points. */
- $contentScore += min(floor(strlen($innerText) / 100), 3);
-
- /* Add the score to the parent. The grandparent gets half. */
- $parentNode->getAttributeNode('readability')->value += $contentScore;
-
- if ($grandParentNode) {
- $grandParentNode->getAttributeNode('readability')->value += $contentScore/2;
- }
- }
-
- /**
- * After we've calculated scores, loop through all of the possible candidate nodes we found
- * and find the one with the highest score.
- **/
- $topCandidate = null;
- for ($c=0, $cl=count($candidates); $c < $cl; $c++)
- {
- /**
- * Scale the final candidates score based on link density. Good content should have a
- * relatively small link density (5% or less) and be mostly unaffected by this operation.
- **/
- $readability = $candidates[$c]->getAttributeNode('readability');
- $readability->value = $readability->value * (1-$this->getLinkDensity($candidates[$c]));
-
- $this->dbg('Candidate: ' . $candidates[$c]->tagName . ' (' . $candidates[$c]->getAttribute('class') . ':' . $candidates[$c]->getAttribute('id') . ') with score ' . $readability->value);
-
- if (!$topCandidate || $readability->value > (int)$topCandidate->getAttribute('readability')) {
- $topCandidate = $candidates[$c];
- }
- }
-
- /**
- * If we still have no top candidate, just use the body as a last resort.
- * We also have to copy the body node so it is something we can modify.
- **/
- if ($topCandidate === null || strtoupper($topCandidate->tagName) == 'BODY')
- {
- $topCandidate = $this->dom->createElement('div');
- $topCandidate->innerHTML = ($page instanceof DOMDocument) ? $page->saveXML($page->documentElement) : $page->innerHTML;
- $page->innerHTML = '';
- $page->appendChild($topCandidate);
- $this->initializeNode($topCandidate);
- }
-
- /**
- * Now that we have the top candidate, look through its siblings for content that might also be related.
- * Things like preambles, content split by ads that we removed, etc.
- **/
- $articleContent = $this->dom->createElement('div');
- $articleContent->setAttribute('id', 'readability-content');
- $siblingScoreThreshold = max(10, ((int)$topCandidate->getAttribute('readability')) * 0.2);
- $siblingNodes = $topCandidate->parentNode->childNodes;
-
- for ($s=0, $sl=$siblingNodes->length; $s < $sl; $s++)
- {
- $siblingNode = $siblingNodes->item($s);
- $append = false;
-
- $this->dbg('Looking at sibling node: ' . $siblingNode->nodeName . (($siblingNode->nodeType === XML_ELEMENT_NODE && $siblingNode->hasAttribute('readability')) ? (' with score ' . $siblingNode->getAttribute('readability')) : ''));
-
- //dbg('Sibling has score ' . ($siblingNode->readability ? siblingNode.readability.contentScore : 'Unknown'));
-
- if ($siblingNode === $topCandidate)
- // or if ($siblingNode->isSameNode($topCandidate))
- {
- $append = true;
- }
-
- $contentBonus = 0;
- /* Give a bonus if sibling nodes and top candidates have the example same classname */
- if ($siblingNode->nodeType === XML_ELEMENT_NODE && $siblingNode->getAttribute('class') == $topCandidate->getAttribute('class') && $topCandidate->getAttribute('class') != '') {
- $contentBonus += ((int)$topCandidate->getAttribute('readability')) * 0.2;
- }
-
- if ($siblingNode->nodeType === XML_ELEMENT_NODE && $siblingNode->hasAttribute('readability') && (((int)$siblingNode->getAttribute('readability')) + $contentBonus) >= $siblingScoreThreshold)
- {
- $append = true;
- }
-
- if (strtoupper($siblingNode->nodeName) == 'P') {
- $linkDensity = $this->getLinkDensity($siblingNode);
- $nodeContent = $this->getInnerText($siblingNode);
- $nodeLength = strlen($nodeContent);
-
- if ($nodeLength > 80 && $linkDensity < 0.25)
- {
- $append = true;
- }
- else if ($nodeLength < 80 && $linkDensity === 0 && preg_match('/\.( |$)/', $nodeContent))
- {
- $append = true;
- }
- }
-
- if ($append)
- {
- $this->dbg('Appending node: ' . $siblingNode->nodeName);
-
- $nodeToAppend = null;
- $sibNodeName = strtoupper($siblingNode->nodeName);
- if ($sibNodeName != 'DIV' && $sibNodeName != 'P') {
- /* We have a node that isn't a common block level element, like a form or td tag. Turn it into a div so it doesn't get filtered out later by accident. */
-
- $this->dbg('Altering siblingNode of ' . $sibNodeName . ' to div.');
- $nodeToAppend = $this->dom->createElement('div');
- try {
- $nodeToAppend->setAttribute('id', $siblingNode->getAttribute('id'));
- $nodeToAppend->innerHTML = $siblingNode->innerHTML;
- }
- catch(Exception $e)
- {
- $this->dbg('Could not alter siblingNode to div, reverting back to original.');
- $nodeToAppend = $siblingNode;
- $s--;
- $sl--;
- }
- } else {
- $nodeToAppend = $siblingNode;
- $s--;
- $sl--;
- }
-
- /* To ensure a node does not interfere with readability styles, remove its classnames */
- $nodeToAppend->removeAttribute('class');
-
- /* Append sibling and subtract from our list because it removes the node when you append to another node */
- $articleContent->appendChild($nodeToAppend);
- }
- }
-
- /**
- * So we have all of the content that we need. Now we clean it up for presentation.
- **/
- $this->prepArticle($articleContent);
-
- /**
- * Now that we've gone through the full algorithm, check to see if we got any meaningful content.
- * If we didn't, we may need to re-run grabArticle with different flags set. This gives us a higher
- * likelihood of finding the content, and the sieve approach gives us a higher likelihood of
- * finding the -right- content.
- **/
- if (strlen($this->getInnerText($articleContent, false)) < 250)
- {
- $this->body->innerHTML = $this->bodyCache;
-
- if ($this->flagIsActive(self::FLAG_STRIP_UNLIKELYS)) {
- $this->removeFlag(self::FLAG_STRIP_UNLIKELYS);
- return $this->grabArticle($this->body);
- }
- else if ($this->flagIsActive(self::FLAG_WEIGHT_CLASSES)) {
- $this->removeFlag(self::FLAG_WEIGHT_CLASSES);
- return $this->grabArticle($this->body);
- }
- else if ($this->flagIsActive(self::FLAG_CLEAN_CONDITIONALLY)) {
- $this->removeFlag(self::FLAG_CLEAN_CONDITIONALLY);
- return $this->grabArticle($this->body);
- }
- else {
- return false;
- }
- }
- return $articleContent;
- }
-
- /**
- * Remove script tags from document
- *
- * @param DOMElement
- * @return void
- */
- public function removeScripts($doc) {
- $scripts = $doc->getElementsByTagName('script');
- for($i = $scripts->length-1; $i >= 0; $i--)
- {
- $scripts->item($i)->parentNode->removeChild($scripts->item($i));
- }
- }
-
- /**
- * Get the inner text of a node.
- * This also strips out any excess whitespace to be found.
- *
- * @param DOMElement $
- * @param boolean $normalizeSpaces (default: true)
- * @return string
- **/
- public function getInnerText($e, $normalizeSpaces=true) {
- $textContent = '';
-
- if (!isset($e->textContent) || $e->textContent == '') {
- return '';
- }
-
- $textContent = trim($e->textContent);
-
- if ($normalizeSpaces) {
- return preg_replace($this->regexps['normalize'], ' ', $textContent);
- } else {
- return $textContent;
- }
- }
-
- /**
- * Get the number of times a string $s appears in the node $e.
- *
- * @param DOMElement $e
- * @param string - what to count. Default is ","
- * @return number (integer)
- **/
- public function getCharCount($e, $s=',') {
- return substr_count($this->getInnerText($e), $s);
- }
-
- /**
- * Remove the style attribute on every $e and under.
- *
- * @param DOMElement $e
- * @return void
- */
- public function cleanStyles($e) {
- $elems = $e->getElementsByTagName('*');
- foreach ($elems as $elem) {
- $elem->removeAttribute('style');
- }
- }
-
- /**
- * Get the density of links as a percentage of the content
- * This is the amount of text that is inside a link divided by the total text in the node.
- *
- * @param DOMElement $e
- * @return number (float)
- */
- public function getLinkDensity($e) {
- $links = $e->getElementsByTagName('a');
- $textLength = strlen($this->getInnerText($e));
- $linkLength = 0;
- for ($i=0, $il=$links->length; $i < $il; $i++)
- {
- $linkLength += strlen($this->getInnerText($links->item($i)));
- }
- if ($textLength > 0) {
- return $linkLength / $textLength;
- } else {
- return 0;
- }
- }
-
- /**
- * Get an elements class/id weight. Uses regular expressions to tell if this
- * element looks good or bad.
- *
- * @param DOMElement $e
- * @return number (Integer)
- */
- public function getClassWeight($e) {
- if(!$this->flagIsActive(self::FLAG_WEIGHT_CLASSES)) {
- return 0;
- }
-
- $weight = 0;
-
- /* Look for a special classname */
- if ($e->hasAttribute('class') && $e->getAttribute('class') != '')
- {
- if (preg_match($this->regexps['negative'], $e->getAttribute('class'))) {
- $weight -= 25;
- }
- if (preg_match($this->regexps['positive'], $e->getAttribute('class'))) {
- $weight += 25;
- }
- }
-
- /* Look for a special ID */
- if ($e->hasAttribute('id') && $e->getAttribute('id') != '')
- {
- if (preg_match($this->regexps['negative'], $e->getAttribute('id'))) {
- $weight -= 25;
- }
- if (preg_match($this->regexps['positive'], $e->getAttribute('id'))) {
- $weight += 25;
- }
- }
- return $weight;
- }
-
- /**
- * Remove extraneous break tags from a node.
- *
- * @param DOMElement $node
- * @return void
- */
- public function killBreaks($node) {
- $html = $node->innerHTML;
- $html = preg_replace($this->regexps['killBreaks'], '
', $html);
- $node->innerHTML = $html;
- }
-
- /**
- * Clean a node of all elements of type "tag".
- * (Unless it's a youtube/vimeo video. People love movies.)
- *
- * @param DOMElement $e
- * @param string $tag
- * @return void
- */
- public function clean($e, $tag) {
- $targetList = $e->getElementsByTagName($tag);
- $isEmbed = ($tag == 'object' || $tag == 'embed');
-
- for ($y=$targetList->length-1; $y >= 0; $y--) {
- /* Allow youtube and vimeo videos through as people usually want to see those. */
- if ($isEmbed) {
- $attributeValues = '';
- for ($i=0, $il=$targetList->item($y)->attributes->length; $i < $il; $i++) {
- $attributeValues .= $targetList->item($y)->attributes->item($i)->value . '|'; // DOMAttr? (TODO: test)
- }
-
- /* First, check the elements attributes to see if any of them contain youtube or vimeo */
- if (preg_match($this->regexps['video'], $attributeValues)) {
- continue;
- }
-
- /* Then check the elements inside this element for the same. */
- if (preg_match($this->regexps['video'], $targetList->item($y)->innerHTML)) {
- continue;
- }
- }
- $targetList->item($y)->parentNode->removeChild($targetList->item($y));
- }
- }
-
- /**
- * Clean an element of all tags of type "tag" if they look fishy.
- * "Fishy" is an algorithm based on content length, classnames,
- * link density, number of images & embeds, etc.
- *
- * @param DOMElement $e
- * @param string $tag
- * @return void
- */
- public function cleanConditionally($e, $tag) {
- if (!$this->flagIsActive(self::FLAG_CLEAN_CONDITIONALLY)) {
- return;
- }
-
- $tagsList = $e->getElementsByTagName($tag);
- $curTagsLength = $tagsList->length;
-
- /**
- * Gather counts for other typical elements embedded within.
- * Traverse backwards so we can remove nodes at the same time without effecting the traversal.
- *
- * TODO: Consider taking into account original contentScore here.
- */
- for ($i=$curTagsLength-1; $i >= 0; $i--) {
- $weight = $this->getClassWeight($tagsList->item($i));
- $contentScore = ($tagsList->item($i)->hasAttribute('readability')) ? (int)$tagsList->item($i)->getAttribute('readability') : 0;
-
- $this->dbg('Cleaning Conditionally ' . $tagsList->item($i)->tagName . ' (' . $tagsList->item($i)->getAttribute('class') . ':' . $tagsList->item($i)->getAttribute('id') . ')' . (($tagsList->item($i)->hasAttribute('readability')) ? (' with score ' . $tagsList->item($i)->getAttribute('readability')) : ''));
-
- if ($weight + $contentScore < 0) {
- $tagsList->item($i)->parentNode->removeChild($tagsList->item($i));
- }
- else if ( $this->getCharCount($tagsList->item($i), ',') < 10) {
- /**
- * If there are not very many commas, and the number of
- * non-paragraph elements is more than paragraphs or other ominous signs, remove the element.
- **/
- $p = $tagsList->item($i)->getElementsByTagName('p')->length;
- $img = $tagsList->item($i)->getElementsByTagName('img')->length;
- $li = $tagsList->item($i)->getElementsByTagName('li')->length-100;
- $input = $tagsList->item($i)->getElementsByTagName('input')->length;
-
- $embedCount = 0;
- $embeds = $tagsList->item($i)->getElementsByTagName('embed');
- for ($ei=0, $il=$embeds->length; $ei < $il; $ei++) {
- if (preg_match($this->regexps['video'], $embeds->item($ei)->getAttribute('src'))) {
- $embedCount++;
- }
- }
-
- $linkDensity = $this->getLinkDensity($tagsList->item($i));
- $contentLength = strlen($this->getInnerText($tagsList->item($i)));
- $toRemove = false;
-
- if ( $img > $p ) {
- $toRemove = true;
- } else if ($li > $p && $tag != 'ul' && $tag != 'ol') {
- $toRemove = true;
- } else if ( $input > floor($p/3) ) {
- $toRemove = true;
- } else if ($contentLength < 25 && ($img === 0 || $img > 2) ) {
- $toRemove = true;
- } else if($weight < 25 && $linkDensity > 0.2) {
- $toRemove = true;
- } else if($weight >= 25 && $linkDensity > 0.5) {
- $toRemove = true;
- } else if(($embedCount == 1 && $contentLength < 75) || $embedCount > 1) {
- $toRemove = true;
- }
-
- if ($toRemove) {
- $tagsList->item($i)->parentNode->removeChild($tagsList->item($i));
- }
- }
- }
- }
-
- /**
- * Clean out spurious headers from an Element. Checks things like classnames and link density.
- *
- * @param DOMElement $e
- * @return void
- */
- public function cleanHeaders($e) {
- for ($headerIndex = 1; $headerIndex < 3; $headerIndex++) {
- $headers = $e->getElementsByTagName('h' . $headerIndex);
- for ($i=$headers->length-1; $i >=0; $i--) {
- if ($this->getClassWeight($headers->item($i)) < 0 || $this->getLinkDensity($headers->item($i)) > 0.33) {
- $headers->item($i)->parentNode->removeChild($headers->item($i));
- }
- }
- }
- }
-
- public function flagIsActive($flag) {
- return ($this->flags & $flag) > 0;
- }
-
- public function addFlag($flag) {
- $this->flags = $this->flags | $flag;
- }
-
- public function removeFlag($flag) {
- $this->flags = $this->flags & ~$flag;
- }
-}
-?>
\ No newline at end of file
diff --git a/inc/3rdparty/libraries/send2kindle/api.php b/inc/3rdparty/libraries/send2kindle/api.php
deleted file mode 100644
index 564c171c..00000000
--- a/inc/3rdparty/libraries/send2kindle/api.php
+++ /dev/null
@@ -1,234 +0,0 @@
- service = $service;
- }
- /* if ( isset($_SESSION[ $this -> session_var_auth_name ] ) ){
- $this -> auth = $_SESSION[ $this -> session_var_auth_name ];
- echo "Loading";
- } else { */
- $this -> clientLogin( $email, $password );
- $this -> get_token();
- /* } */
- }
-
-
- private function request( $url, $type = 'get', $headers = false, $fields = false, $cookie = false){
-
- $curl = curl_init();
-
- if ( $fields ){
- if ($type == 'get'){
- $url .= '?'.http_build_query( $fields );
- } else {
- curl_setopt($curl, CURLOPT_POST, true);
- curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($fields) );
- }
- }
- if ( $headers ){
- curl_setopt($curl, CURLOPT_HEADER, true);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- }
- if ( $cookie ){
- curl_setopt($curl, CURLOPT_COOKIE, $cookie);
- }
-
- curl_setopt($curl, CURLOPT_URL, $url);
- if (strpos($url, 'https://') !== false){
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- }
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLINFO_HEADER_OUT, true);
-
- $response = array();
- $response['text'] = curl_exec($curl);
- $response['info'] = curl_getinfo( $curl);
- $response['code'] = curl_getinfo( $curl, CURLINFO_HTTP_CODE );
- $response['body'] = substr( $response['text'], $response['info']['header_size'] );
-
- curl_close( $curl );
- return $response;
- }
-
- private function request2google( $url, $type = 'get', $headers = false, $fields = false ){
- if ( $this -> auth ){
- $headers[] = 'Content-type: application/x-www-form-urlencoded';
- $headers[] = 'Authorization: GoogleLogin auth='.$this -> auth;
-
- if ( strpos( $url, 'http://') === false && strpos( $url, 'https://' ) === false ){
- $url = $this -> reader_api_url.$url;
- }
-
- $response = $this -> request( $url, $type, $headers, $fields);
- if ( $response['code'] == 200 ){
- if ( isset( $fields['output'] ) ){
- switch ($fields['output']){
- case 'xml':
- return (new SimpleXMLElement( $response['body'] ) );
- break;
- case 'json':
- default:
- return json_decode( $response['body'] );
- break;
- }
- } else {
- return $response['body'];
- }
- } else {
- Throw new AutentificationException('Auth error: server response '.$response['code'] );
- }
-
- } else {
- Throw new AutentificationException('Auth error: not finded Auth token');
- }
- }
-
- public function get_tag_list( $output = 'json' ){
- return $this -> request2google('tag/list', "get", false, array(
- 'output' => $output,
- 'ck' => time(),
- 'client' => $this -> client,
- ));
- }
- public function get_subscription_list( $output = 'json' ){
- return $this -> request2google('subscription/list', "get", false, array(
- 'output' => $output,
- 'ck' => time(),
- 'client' => $this -> client,
- ));
- }
- public function get_preference_list( $output = 'json' ){
- return $this -> request2google('preference/list', "get", false, array(
- 'output' => $output,
- 'ck' => time(),
- 'client' => $this -> client,
- ));
- }
- public function get_unread_count( $output = 'json' ){
- return $this -> request2google('unread-count', "get", false, array(
- 'all' => true,
- 'output' => $output,
- 'ck' => time(),
- 'client' => $this -> client,
- ));
- }
- public function get_user_info( $output = 'json' ){
- return $this -> request2google('user-info', "get", false, array(
- 'output' => $output,
- 'ck' => time(),
- 'client' => $this -> client,
- ));
- }
- private function get_token(){
- $this -> token = $this -> request2google('token');
- }
-
- //get contents functions
- /*
- r - order
- r = n - new items
- r = o - old items
- r = a - auto sort
-
- */
- private function get_content( $content_url = '', $number = 20, $order = 'n', $exclude_target = '', $start_time = '', $continuation = ''){
- $fields = array(
- 'ck' => time(),
- 'client' => $this -> client,
- 'n' => $number,
- 'r' => $order,
- 'output' => 'json',
- );
- if ( !empty($exclude_target) ){$fields['xt'] = $exclude_target;}
- if ( !empty($start_time) ){$fields['ot'] = $start_time;}
- if ( !empty($continuation) ){$fields['c'] = $continuation;}
-
- return $this -> request2google('stream/contents/'.Utils::urlencode( $content_url ), 'get', false, $fields);
- }
-
- public function get_content_feed( $feed_url = '', $number = 20, $order = 'n', $exclude_target = '', $start_time = '', $continuation = ''){
- return $this -> get_content( $feed_url, $number, $order, $exclude_target, $start_time, $continuation );
- }
- public function get_content_by_label( $label = '', $number = 20, $order = 'n', $exclude_target = '', $start_time = '', $continuation = ''){
- return $this -> get_content( (strpos($label, '/') === false?'user/-/label/':'').$label, $number, $order, $exclude_target, $start_time, $continuation );
- }
- public function get_content_by_state( $state = '', $number = 20, $order = 'n', $exclude_target = '', $start_time = '', $continuation = ''){
- return $this -> get_content( (strpos($state, '/') === false?'user/-/state/com.google/':'').$state, $number, $order, $exclude_target, $start_time, $continuation );
- }
-
- public function get_unread( $number = 20, $order = 'n' ){
- return $this ->get_content_by_state('reading-list', $number, $order, 'user/-/state/com.google/read');
- }
-
- public function get_starred($number = 20, $order = 'n'){
- return $this ->get_content_by_state('starred', $number, $order);
- }
-
- /*
- Edit functions
- */
- private function edit_do( $api_function , $post_fields ){
- $post_fields['T'] = $this -> token;
- if ( $this -> request2google( $api_function, "post", false, $post_fields ) == "OK"){
- return true;
- } else {
- return false;
- }
- }
-
- /* public function edit_subscription(
- s return $this -> edit_do( 'subscription/edit',
- } */
- public function set_state( $itemId, $state = 'read'){
- $post_fields = array(
- "i" => $itemId,
- "a" => 'user/-/state/com.google/'.$state,
- );
- //print_r( $post_fields );
- return $this ->edit_do('edit-tag?client='.$this -> client, $post_fields);
- }
-
- private function clientLogin( $email, $password ){
-
- $response = $this -> request( $this -> clientlogin_url, 'post', false, array(
- "accountType" => $this -> account_type,
- "Email" => $email,
- "Passwd" => $password,
- "service" => $this -> service,
- "source" => $this -> source,
- ));
-
- if ( $response['code'] == 200) {
- preg_match("/Auth=([a-z0-9_\-]+)/i", $response['body'], $matches_auth);
- if ($matches_auth[1]){
- $this -> auth = $matches_auth[1];
- $_SESSION[ $this -> session_var_auth_name ] = $this -> auth;
- return true;
- } else {
- Throw new AutentificationException('Auth error: not finded Auth token in response');
- }
- } else {
- Throw new AutentificationException('Auth error: server response '.$response['code'] );
- }
- }
-}
-
-//Exceptions
-class AutentificationException extends Exception {}
\ No newline at end of file
diff --git a/inc/3rdparty/libraries/send2kindle/images.php b/inc/3rdparty/libraries/send2kindle/images.php
deleted file mode 100644
index 63f0562a..00000000
--- a/inc/3rdparty/libraries/send2kindle/images.php
+++ /dev/null
@@ -1,136 +0,0 @@
-_storage = $storage;
- $this->_content = $article_content;
- $this->_images_from_content = $this->_get_images_from_content($article_content);
- }
-
- /**
- * get images from url
- * @param string $content
- * @return array images hashtable
- */
- private function _get_images_from_content($content)
- {
- $result = array();
- preg_match_all('/src=\"([a-zA-Z0-9\.\/\-\_\?\+\%\~\&\;\=\:]+)\"/i', $content, $result);
-
- return $result[1];
- }
-
- /**
- * Start conversion
- * @return string converted content
- */
- public function convert()
- {
- foreach ( $this->_images_from_content as $n => $image_url )
- {
- $image = $this->_get_image($image_url);
- $this->_content = str_replace($image_url, '" recindex="'.(int)basename($image), $this->_content);
- }
-
- return $this->_content;
- }
-
- /**
- * Resize image
- * @param string $file path
- * @param int $new_width max width
- */
- private function _resize($file, $new_width = 500)
- {
- list($width, $height) = getimagesize($file);
-
- $new_height = 0;
-
- //setup the new size of the image
- if( $width > $new_width )
- {
- $ratio = $height/$width;
- $new_height = $new_width * $ratio;
- }
- else
- {
- $new_width = $width;
- $new_height = $height;
- }
-
- // resample the image
- $new_image = imagecreatetruecolor($new_width, $new_height);
-
- $type = exif_imagetype ( $file );
-
- switch ( $type )
- {
- case IMAGETYPE_JPEG:
- $old_image = imagecreatefromjpeg($file);
- imagecopyresampled($new_image, $old_image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
- imagejpeg($new_image, $file, self::JPEG_QUALITY);
- break;
- case IMAGETYPE_PNG:
- $old_image = imagecreatefrompng($file);
- imagecopyresampled($new_image, $old_image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
- imagepng($new_image, $file);
- break;
- case IMAGETYPE_GIF:
- $old_image = imagecreatefromgif($file);
- imagecopyresampled($new_image, $old_image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
- imagegif($new_image, $file);
- break;
- }
- }
-
- /**
- * Resize image
- * @return string image path
- */
- private function _get_image($url)
- {
- $image_data = @file_get_contents($url);
-
- if ( $image_data !== false )
- {
- $image_name = $this->_storage->save_image($image_data);
- $this->_resize($image_name);
-
- return $image_name;
- }
- }
-
-}
\ No newline at end of file
diff --git a/inc/3rdparty/libraries/send2kindle/io.php b/inc/3rdparty/libraries/send2kindle/io.php
deleted file mode 100644
index 284c08cc..00000000
--- a/inc/3rdparty/libraries/send2kindle/io.php
+++ /dev/null
@@ -1,250 +0,0 @@
-
- */
-class IO {
-
- /**
- * Max line height
- */
- const COMMAND_LENGTH = 50;
-
- /**
- * args for run screen
- * @var array
- */
- protected static $_args = array
- (
- 'help' => array('value' => FALSE, 'description' => 'show help for news2kindle'),
- 'grab' => array('value' => FALSE, 'description' => 'grab articles from google reader'),
- 'mobi' => array('value' => FALSE, 'description' => 'prepare mobi format'),
- 'send' => array('value' => FALSE, 'description' => 'send articles to kindle'),
- 'login' => array('value' => NULL, 'description' => 'your login to google account *requred'),
- 'password' => array('value' => NULL, 'description' => 'your password to google account *required'),
- 'kindle' => array('value' => NULL, 'description' => 'your kindle email *required'),
- 'items' => array('value' => 100, 'description' => 'max items to grab in run'),
- 'render' => array('value' => 'std', 'description' => 'name of html template for newspapper'),
- //'timeout' => array('value' => FALSE, 'description' => 'timeout is most important than items count'),
- );
-
- /**
- * Write on screen text line
- * @param string $message
- * @param bool $broken_line
- */
- public static function msg($message, $broken_line = TRUE)
- {
- echo ( $broken_line ? "\n" : "" ) . $message;
- }
-
- /**
- * Write command for status
- * @param string $message
- */
- public static function command($message)
- {
- $output_whitespaces = '';
-
- for ($i = strlen($message); $i <= self::COMMAND_LENGTH; ++$i )
- {
- $output_whitespaces .= '-';
- }
-
- self::msg( $message . ' ' . $output_whitespaces.' ' );
- }
-
- /**
- * Status - OK
- */
- public static function ok()
- {
- $colored_string = "\033[1;37m" . "\033[42m" . ' OK ' . "\033[0m";
- self::msg( $colored_string, FALSE );
- }
-
- /**
- * Status - Error
- */
- public static function error($message = NULL)
- {
- $colored_string = "\033[1;37m" . "\033[41m" . ' ERROR ' . "\033[0m";
- self::msg( $colored_string, FALSE );
-
- if ( $message !== NULL )
- {
- self::msg( ' - ' . $message );
- }
- }
-
- /**
- * Get run args
- * @param string $name key config
- * @return mixed config value
- */
- public static function arg($name)
- {
- return self::$_args[$name]['value'];
- }
-
- /**
- * Get config from ini
- * @param string $path
- * @return void
- */
- protected static function _get_config($path)
- {
- $config = parse_ini_file( $path . 'config.ini' );
-
- foreach($config as $key => $value)
- {
- self::$_args[$key]['value'] = $value;
- }
- }
-
- /**
- * Prepare args for script
- * (from http://php.net/manual/en/features.commandline.php)
- * @param array $argv array
- * @param string $path
- * @return bool success or error
- */
- public static function prepare_args($argv, $path)
- {
- self::command('Parse args');
-
- self::_get_config($path);
-
- array_shift($argv);
- $out = array();
-
- foreach ( $argv as $arg )
- {
- if ( substr($arg,0,2) == '--' )
- {
- $eqPos = strpos($arg,'=');
-
- if ( $eqPos === false )
- {
- $key = substr($arg,2);
- $out[$key] = isset($out[$key]) ? $out[$key] : true;
- }
- else
- {
- $key = substr($arg,2,$eqPos-2);
- $out[$key] = substr($arg,$eqPos+1);
- }
-
- }
- else if ( substr($arg,0,1) == '-' )
- {
- if ( substr($arg,2,1) == '=' )
- {
- $key = substr($arg,1,1);
- $out[$key] = substr($arg,3);
- }
- else
- {
- $chars = str_split(substr($arg,1));
-
- foreach ( $chars as $char )
- {
- $key = $char;
- $out[$key] = isset($out[$key]) ? $out[$key] : true;
- }
- }
- }
- else
- {
- $out[] = $arg;
- }
- }
-
- try
- {
- $args = self::_validate_args($out);
-
- foreach ( $args as $key => $value )
- {
- self::$_args[$key]['value'] = $value;
- }
- }
- catch(Exception $e)
- {
- self::error($e->getMessage());
- return false;
- }
-
- self::ok();
-
- return true;
- }
-
- /**
- * Validate args for script
- * (from http://php.net/manual/en/features.commandline.php)
- * @param array $argv array
- * @return array args
- */
- private static function _validate_args($args)
- {
- if( array_key_exists('help', $args) OR array_key_exists('h', $args) )
- {
- $args['grab'] = false;
- $args['mobi'] = false;
- $args['send'] = false;
- $args['login'] = false;
- $args['password'] = false;
- $args['kindle'] = false;
- }
-
- foreach ( $args as $key => $arg )
- {
- if ( strlen($key) === 1 )
- {
- foreach ( self::$_args as $keyA => $argA )
- {
- if($keyA[0] === $key )
- {
- unset( $args[$key] );
- $args[$keyA] = $arg;
- $key = $keyA;
- }
- }
- }
-
- if ( ! array_key_exists($key, self::$_args) )
- {
- throw new Exception('Param "'.$key.'" is invalid!');
- }
- }
-
- foreach ( self::$_args as $key => $arg )
- {
- if( self::$_args[$key]['value'] === NULL AND !array_key_exists($key, $args) )
- {
- throw new Exception('Param "'.$key.'" must be declared!');
- }
- }
-
- return $args;
- }
-
- /**
- * Prepare help
- * @return array
- */
- public static function get_help()
- {
- $output = array();
-
- foreach ( self::$_args as $arg => $item )
- {
- $output[$arg] = $item['description'];
- }
-
- return $output;
- }
-
-}
\ No newline at end of file
diff --git a/inc/3rdparty/libraries/send2kindle/readability.php b/inc/3rdparty/libraries/send2kindle/readability.php
deleted file mode 100644
index 18c2dbde..00000000
--- a/inc/3rdparty/libraries/send2kindle/readability.php
+++ /dev/null
@@ -1,249 +0,0 @@
-
- * @date 2011-02-17
- * @link http://www.gracecode.com/
- */
-
-define("READABILITY_VERSION", 0.12);
-
-class Readability2 {
- // 保存判定结果的标记位名称
- const ATTR_CONTENT_SCORE = "contentScore";
-
- // DOM 解析类目前只支持 UTF-8 编码
- const DOM_DEFAULT_CHARSET = "utf-8";
-
- // 当判定失败时显示的内容
- const MESSAGE_CAN_NOT_GET = "Sorry, readability was unable to parse this page for content. \n
- If you feel like it should have been able to,
- please let me know by mail: lucky[at]gracecode.com";
-
- // DOM 解析类(PHP5 已内置)
- protected $DOM = null;
-
- // 需要解析的源代码
- protected $source = "";
-
- // 章节的父元素列表
- private $parentNodes = array();
-
- // 需要删除的标签
- private $junkTags = Array("style", "form", "iframe", "script", "button", "input", "textarea");
-
- // 需要删除的属性
- private $junkAttrs = Array("style", "class", "onclick", "onmouseover", "align", "border", "margin");
-
-
- /**
- * 构造函数
- * @param $input_char 字符串的编码。默认 utf-8,可以省略
- */
- function __construct($source, $input_char = "utf-8") {
- $this->source = $source;
-
- // DOM 解析类只能处理 UTF-8 格式的字符
- $source = mb_convert_encoding($source, 'HTML-ENTITIES', $input_char);
-
- // 预处理 HTML 标签,剔除冗余的标签等
- $source = $this->preparSource($source);
-
- // 生成 DOM 解析类
- $this->DOM = new DOMDocument('1.0', $input_char);
- try {
- //libxml_use_internal_errors(true);
- // 会有些错误信息,不过不要紧 :^)
- if (!@$this->DOM->loadHTML(''.$source)) {
- throw new Exception("Parse HTML Error!");
- }
-
- foreach ($this->DOM->childNodes as $item) {
- if ($item->nodeType == XML_PI_NODE) {
- $this->DOM->removeChild($item); // remove hack
- }
- }
-
- // insert proper
- $this->DOM->encoding = Readability2::DOM_DEFAULT_CHARSET;
- } catch (Exception $e) {
- // ...
- }
- }
-
-
- /**
- * 预处理 HTML 标签,使其能够准确被 DOM 解析类处理
- *
- * @return String
- */
- private function preparSource($string) {
- // 剔除多余的 HTML 编码标记,避免解析出错
- preg_match("/charset=([\w|\-]+);?/", $string, $match);
- if (isset($match[1])) {
- $string = preg_replace("/charset=([\w|\-]+);?/", "", $string, 1);
- }
-
- // Replace all doubled-up
tags with
tags, and remove fonts.
- $string = preg_replace("/
[ \r\n\s]*
/i", "
", $string); - $string = preg_replace("/<\/?font[^>]*>/i", "", $string); - - return trim($string); - } - - - /** - * 删除 DOM 元素中所有的 $TagName 标签 - * - * @return DOMDocument - */ - private function removeJunkTag($RootNode, $TagName) { - $Tags = $RootNode->getElementsByTagName($TagName); - - $i = 0; - while($Tag = $Tags->item($i++)) { - $parentNode = $Tag->parentNode; - $parentNode->removeChild($Tag); - } - - return $RootNode; - } - - /** - * 删除元素中所有不需要的属性 - */ - private function removeJunkAttr($RootNode, $Attr) { - $Tags = $RootNode->getElementsByTagName("*"); - - $i = 0; - while($Tag = $Tags->item($i++)) { - $Tag->removeAttribute($Attr); - } - - return $RootNode; - } - - /** - * 根据评分获取页面主要内容的盒模型 - * 判定算法来自:http://code.google.com/p/arc90labs-readability/ - * - * @return DOMNode - */ - private function getTopBox() { - // 获得页面所有的章节 - $allParagraphs = $this->DOM->getElementsByTagName("p"); - - // Study all the paragraphs and find the chunk that has the best score. - // A score is determined by things like: Number of
's, commas, special classes, etc. - $i = 0; - while($paragraph = $allParagraphs->item($i++)) { - $parentNode = $paragraph->parentNode; - $contentScore = intval($parentNode->getAttribute(Readability2::ATTR_CONTENT_SCORE)); - $className = $parentNode->getAttribute("class"); - $id = $parentNode->getAttribute("id"); - - // Look for a special classname - if (preg_match("/(comment|meta|footer|footnote)/i", $className)) { - $contentScore -= 50; - } else if(preg_match( - "/((^|\\s)(post|hentry|entry[-]?(content|text|body)?|article[-]?(content|text|body)?)(\\s|$))/i", - $className)) { - $contentScore += 25; - } - - // Look for a special ID - if (preg_match("/(comment|meta|footer|footnote)/i", $id)) { - $contentScore -= 50; - } else if (preg_match( - "/^(post|hentry|entry[-]?(content|text|body)?|article[-]?(content|text|body)?)$/i", - $id)) { - $contentScore += 25; - } - - // Add a point for the paragraph found - // Add points for any commas within this paragraph - if (strlen($paragraph->nodeValue) > 10) { - $contentScore += strlen($paragraph->nodeValue); - } - - // 保存父元素的判定得分 - $parentNode->setAttribute(Readability2::ATTR_CONTENT_SCORE, $contentScore); - - // 保存章节的父元素,以便下次快速获取 - array_push($this->parentNodes, $parentNode); - } - - $topBox = $this->DOM->createElement('div', Readability2::MESSAGE_CAN_NOT_GET); - // Assignment from index for performance. - // See http://www.peachpit.com/articles/article.aspx?p=31567&seqNum=5 - for ($i = 0, $len = sizeof($this->parentNodes); $i < $len; $i++) { - $parentNode = $this->parentNodes[$i]; - $contentScore = intval($parentNode->getAttribute(Readability2::ATTR_CONTENT_SCORE)); - $orgContentScore = intval($topBox->getAttribute(Readability2::ATTR_CONTENT_SCORE)); - - if ($contentScore && $contentScore > $orgContentScore) { - $topBox = $parentNode; - } - } - - // 此时,$topBox 应为已经判定后的页面内容主元素 - return $topBox; - } - - - /** - * 获取 HTML 页面标题 - * - * @return String - */ - public function getTitle() { - $title = $this->DOM->getElementsByTagName("title"); - return $title->item(0); - } - - - /** - * 获取页面的主要内容(Readability 以后的内容) - * - * @return Array - */ - public function getContent() { - if (!$this->DOM) return false; - - // 获取页面标题 - $ContentTitle = $this->getTitle(); - - // 获取页面主内容 - $ContentBox = $this->getTopBox(); - - // 复制内容到新的 DOMDocument - $Target = new DOMDocument; - $Target->appendChild($Target->importNode($ContentBox, true)); - - // 删除不需要的标签 - foreach ($this->junkTags as $tag) { - $Target = $this->removeJunkTag($Target, $tag); - } - - // 删除不需要的属性 - foreach ($this->junkAttrs as $attr) { - $Target = $this->removeJunkAttr($Target, $attr); - } - - // 多个数据,以数组的形式返回 - return Array( - 'title' => $ContentTitle ? $ContentTitle->nodeValue : "", - 'content' => $Target->saveHTML() - ); - } - - function __destruct() { } -} diff --git a/inc/3rdparty/libraries/send2kindle/send.php b/inc/3rdparty/libraries/send2kindle/send.php deleted file mode 100644 index a4861d30..00000000 --- a/inc/3rdparty/libraries/send2kindle/send.php +++ /dev/null @@ -1,69 +0,0 @@ - - */ -class Send { - - /** - * Your kindle email - * @var string - */ - private $_kindle_email; - - /** - * Your email (must be added on amazon) - * @var string - */ - private $_email; - - /** - * Prepare mail - * @param string $kindle_email your kindle email - * @param string $email email for send to kindle - */ - public function __construct($kindle_email, $email) - { - $this->_kindle_email = $kindle_email; - $this->_email = $email; - } - - /** - * Send file - * @param string $file path to file - * @return bool - */ - public function send($file) - { - //prepare file - $file_size = filesize($file); - $filename = basename($file); - $handle = fopen($file, "r"); - $content = fread($handle, $file_size); - fclose($handle); - $content = chunk_split(base64_encode($content)); - - $uid = md5(uniqid(time())); - - //generate header for mail - $header = "From: News2Kindle <".$this->_email.">\r\n"; - $header .= "MIME-Version: 1.0\r\n"; - $header .= "Content-Type: multipart/mixed; boundary=\"".$uid."\"\r\n\r\n"; - $header .= "This is a multi-part message in MIME format.\r\n"; - $header .= "--".$uid."\r\n"; - $header .= "Content-type:text/plain; charset=iso-8859-1\r\n"; - $header .= "Content-Transfer-Encoding: 7bit\r\n\r\n"; - $header .= "send via News2Kindle script\r\n\r\n"; - $header .= "--".$uid."\r\n"; - $header .= "Content-Type: application/x-mobipocket-ebook; name=\"".$filename."\"\r\n"; - $header .= "Content-Transfer-Encoding: base64\r\n"; - $header .= "Content-Disposition: attachment; filename=\"".$filename."\"\r\n\r\n"; - $header .= $content."\r\n\r\n"; - $header .= "--".$uid."--"; - - //send mail - return mail( $this->_kindle_email, '[newsToKindle] ' . $filename, "", $header ); - } -} - -?> \ No newline at end of file diff --git a/inc/3rdparty/libraries/send2kindle/storage.php b/inc/3rdparty/libraries/send2kindle/storage.php deleted file mode 100644 index 5c38ce80..00000000 --- a/inc/3rdparty/libraries/send2kindle/storage.php +++ /dev/null @@ -1,230 +0,0 @@ - - */ -class Storage { - - /** - * Newspapper name - * @var string - */ - private $_name; - - /** - * Default dir - * @var string - */ - private $_default_dir = 'data/'; - - /** - * Info about newspapper - * @var array - */ - private $_info; - - /** - * Prepare storage - * @param string $newspapper - * @param string $default_dir - */ - public function __construct($newspapper, $default_dir = NULL) - { - $this->_name = $newspapper; - - if ( $default_dir !== NULL ) - { - $this->_default_dir = $default_dir; - } - - $this->_info = $this->_get_info(); - } - - /** - * save info before exit from script - */ - public function __destruct() - { - $this->_save_info($this->_info); - } - - /** - * Get path - * @param bool $newspapper path to newspapper - * @return string path to repository - */ - public function get_path($newspapper = true) - { - $path = $this->_default_dir; - - if ( $newspapper ) - { - $path .= $this->_name . '/'; - } - - return $path; - } - - /** - * Get info about newspapper - * @return array newspapper info - */ - private function _get_info() - { - $content = unserialize( $this->_get_file('info.dat') ); - - if( $content === FALSE ) - { - $content = (object) array - ( - 'images_count' => 0, - 'articles_count' => 0, - 'images' => array(), - ); - - $this->_save_info($content); - } - - return $content; - } - - /** - * Get info key - * @param $key - * @return mixed - */ - public function info($key) - { - return $this->_info->$key; - } - - /** - * Save info - * @param array $info info from class - */ - private function _save_info($info) - { - $this->_save_file( 'info.dat', serialize($info) ); - } - - /** - * Save image in storage - * @param resource $image - * @param string $name image name, if null create auto name - * @return string image name - */ - public function save_image($image, $name = NULL) - { - if ( $name === NULL ) - { - $image_name = (string) $this->_info->images_count; - - for ($i=strlen($image_name); $i<6; $i++) - { - $image_name = '0'.$image_name; - } - - $this->_info->images_count++; - $this->_info->images[$this->_info->images_count] = $image_name; - - $name = $image_name; - } - - $this->_save_file($name, $image); - - return $this->_default_dir . $this->_name . '/' . $name; - } - - /** - * Get image - * @param string $name image name - * @return resource - */ - public function get_image($name) - { - return $this->_get_file($name); - } - - /** - * Put article contents - * @param string $id unique id for article - * @param string $title - * @param string $content article content - * @param string $url url for article - * @param object $website - */ - public function add_content($id, $title, $content, $url, $website) - { - $articles = unserialize( $this->_get_file('articles.dat') ); - - $articles[$id] = (object) array - ( - 'id' => $id, - 'title' => $title, - 'content' => $content, - 'url' => $url, - 'website' => $website, - ); - - $this->_save_file( 'articles.dat', serialize($articles) ); - } - - /** - * Get articles contents - * @param string $file_name - * @param string $file_content - */ - public function get_contents() - { - return unserialize( $this->_get_file( 'articles.dat' ) ); - } - - /** - * Get file content - * @param string $file_name - * @param string $file_content - */ - private function _save_file($file_name, $file_content) - { - if( ! file_exists( $this->_default_dir . $this->_name ) ) - { - mkdir( $this->_default_dir . $this->_name, 0777, TRUE ); - } - - file_put_contents($this->_default_dir . $this->_name . '/' . $file_name, $file_content); - } - - /** - * Get file content - * @param string $file_name - * @param string $default_file_content (if file not exists) - * @return string file content - */ - private function _get_file($file_name, $default_file_content = NULL) - { - $content = @file_get_contents($this->_default_dir . $this->_name . '/' . $file_name); - - if ($content === FALSE) - { - return $default_file_content; - } - - return $content; - } - - /** - * Clean newspapper after convert to mobi - */ - public function clean() - { - $files_to_remove = glob($this->_default_dir . $this->_name . '/*'); - - foreach ( $files_to_remove as $file ) - { - unlink( $file ); - } - - rmdir( $this->_default_dir . $this->_name ); - } - -} \ No newline at end of file diff --git a/inc/3rdparty/libraries/send2kindle/utils.php b/inc/3rdparty/libraries/send2kindle/utils.php deleted file mode 100644 index 87cc3de0..00000000 --- a/inc/3rdparty/libraries/send2kindle/utils.php +++ /dev/null @@ -1,37 +0,0 @@ - - */ -class Utils -{ - /** - * URL encode - * @param string $url - * @return string $ar_url - */ - public static function urlencode( $url ) - { - $ar_url = explode( '/', $url ); - - foreach ( $ar_url as $key => $val ) - { - $ar_url[ $key ] = urlencode( $val ); - } - - return implode('/', $ar_url ); - } - - /** - * Prepare ID for google rss article - * @param string $id - * @return string - */ - public static function prepare_id($id) - { - $char_in = array('/', '.', ',', ':'); - $id = str_replace($char_in, '-', $id); - - return $id; - } -} \ No newline at end of file -- cgit v1.2.3