Lösche alte Bridges
This commit is contained in:
		@@ -1,56 +0,0 @@
 | 
			
		||||
<?php
 | 
			
		||||
class AnimessoBridge extends BridgeAbstract {
 | 
			
		||||
 | 
			
		||||
    const MAINTAINER = 'Akamaru';
 | 
			
		||||
    const NAME = '[Test] Animes.so Search Results';
 | 
			
		||||
    const URI = 'https://www.animes.so/';
 | 
			
		||||
    const CACHE_TIMEOUT = 21600; // 21600 = 6h
 | 
			
		||||
    const DESCRIPTION = 'Get search results from Animes.so';
 | 
			
		||||
 | 
			
		||||
	const PARAMETERS = array(array(
 | 
			
		||||
		'id' => array(
 | 
			
		||||
			'name'	=> 'Search ID',
 | 
			
		||||
			'required'	=> true,
 | 
			
		||||
			'exampleValue'	=> '6681897'
 | 
			
		||||
		),
 | 
			
		||||
	));
 | 
			
		||||
 | 
			
		||||
    public function getIcon(){
 | 
			
		||||
        return 'https://cdn.animes.so/styles/animesso/logo.og.png';
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function collectData() {
 | 
			
		||||
		$id = $this->getInput('id');
 | 
			
		||||
		// Retrieve webpage
 | 
			
		||||
		$pageUrl = self::URI . 'suche/' . $id . '//?o=date&c[title_only]=1';
 | 
			
		||||
		$html = getSimpleHTMLDOM($pageUrl)
 | 
			
		||||
			or returnServerError('Could not request webpage: ' . $pageUrl);
 | 
			
		||||
 | 
			
		||||
		// Process articles
 | 
			
		||||
		foreach($html->find('div.listBlock.main') as $element) {
 | 
			
		||||
 | 
			
		||||
			if(count($this->items) >= 10) {
 | 
			
		||||
				break;
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			$article_title = trim($element->find('h3', 0)->innertext);
 | 
			
		||||
			//$article_thumbnail = $element->find('a', 0)->data-thumbnailurl;            
 | 
			
		||||
			$article_uri = $element->find('h3 a', 0)->href;
 | 
			
		||||
			
 | 
			
		||||
            //$article_content = '<img src="'. $article_thumbnail .'"><br>';
 | 
			
		||||
			$article_content = trim(strip_tags($element->find('blockquote.snippet', 0)->innertext));
 | 
			
		||||
			$article_uid = trim(strip_tags($element->find('h3', 0)->innertext));
 | 
			
		||||
 | 
			
		||||
			// Store article in items array
 | 
			
		||||
			if (!empty($article_title)) {
 | 
			
		||||
				$item = array();
 | 
			
		||||
				$item['uri'] = self::URI . $article_uri;
 | 
			
		||||
				$item['title'] = $article_title;
 | 
			
		||||
				//$item['enclosures'] = array($article_thumbnail);
 | 
			
		||||
				$item['content'] = $article_content;
 | 
			
		||||
				$item['uid'] = $article_uid;
 | 
			
		||||
				$this->items[] = $item;
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
@@ -1,48 +0,0 @@
 | 
			
		||||
<?php
 | 
			
		||||
class KAZENewsBridge extends BridgeAbstract {
 | 
			
		||||
 | 
			
		||||
    const MAINTAINER = 'Akamaru';
 | 
			
		||||
    const NAME = 'KAZÉ News';
 | 
			
		||||
    const URI = 'https://www.kaze-online.de';
 | 
			
		||||
    const CACHE_TIMEOUT = 21600; // 21600 = 6h
 | 
			
		||||
    const DESCRIPTION = 'Get the latest news from KAZÉ-Anime.';
 | 
			
		||||
    
 | 
			
		||||
    public function getIcon(){
 | 
			
		||||
        return 'https://www.kaze-online.de/media/d5/d7/ce/1622636185/logo.svg';
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function collectData() {
 | 
			
		||||
        // Retrieve webpage
 | 
			
		||||
        $pageUrl = self::URI . '/news';
 | 
			
		||||
        $html = getSimpleHTMLDOM($pageUrl)
 | 
			
		||||
            or returnServerError('Could not request webpage: ' . $pageUrl);
 | 
			
		||||
 | 
			
		||||
        // Process articles
 | 
			
		||||
        foreach($html->find('div.kaze-news-list__item') as $element) {
 | 
			
		||||
 | 
			
		||||
            if(count($this->items) >= 10) {
 | 
			
		||||
                break;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            $article_title = trim(strip_tags($element->find('div.kaze-news-list-item__title', 0)->innertext));
 | 
			
		||||
            $article_uri = self::URI . substr($element->find('a', 0)->href, 0);
 | 
			
		||||
            $article_thumbnail = substr($element->find('img', 0)->src, 0);
 | 
			
		||||
            //$article_content = '<img src="'. $article_thumbnail .'"></a>';
 | 
			
		||||
            $article_content = trim(strip_tags($element->find('div.kaze-news-list-item__descr', 0)->innertext));
 | 
			
		||||
            //$article_timestamp = strtotime($element->find('time', 0)->attr['datetime']);
 | 
			
		||||
			$article_uid = trim(strip_tags($element->find('span.kaze-news-list-item__date', 0)->innertext));
 | 
			
		||||
 | 
			
		||||
            // Store article in items array
 | 
			
		||||
            if (!empty($article_title)) {
 | 
			
		||||
                $item = array();
 | 
			
		||||
                $item['uri'] = $article_uri;
 | 
			
		||||
                $item['title'] = $article_title;
 | 
			
		||||
                $item['enclosures'] = array($article_thumbnail);
 | 
			
		||||
                $item['content'] = $article_content;
 | 
			
		||||
                //$item['timestamp'] = $article_timestamp;
 | 
			
		||||
				$item['uid'] = $article_uid;
 | 
			
		||||
                $this->items[] = $item;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -1,43 +0,0 @@
 | 
			
		||||
<?php
 | 
			
		||||
class ThumbzillaFeedBridge extends BridgeAbstract {
 | 
			
		||||
 | 
			
		||||
    const MAINTAINER = 'Akamaru';
 | 
			
		||||
    const NAME = 'Thumbzilla Feed';
 | 
			
		||||
    const URI = 'https://www.thumbzilla.com';
 | 
			
		||||
    const CACHE_TIMEOUT = 21600; // 21600 = 6h
 | 
			
		||||
    const DESCRIPTION = 'Get the latest Videos from Thumbzilla.';
 | 
			
		||||
    
 | 
			
		||||
    public function getIcon(){
 | 
			
		||||
        return 'https://ci.phncdn.com/www-static/thumbzilla/images/favicon.ico';
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function collectData() {
 | 
			
		||||
        // Retrieve webpage
 | 
			
		||||
        $pageUrl = self::URI . '/newest';
 | 
			
		||||
        $html = getSimpleHTMLDOM($pageUrl)
 | 
			
		||||
            or returnServerError('Could not request webpage: ' . $pageUrl);
 | 
			
		||||
 | 
			
		||||
        // Process articles
 | 
			
		||||
        foreach($html->find('a.js-thumb') as $element) {
 | 
			
		||||
 | 
			
		||||
            if(count($this->items) >= 10) {
 | 
			
		||||
                break;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            $article_title = trim(strip_tags($element->find('span.title', 0)->innertext));
 | 
			
		||||
            $article_thumbnail = substr($element->find('img', 0)->src, 0);
 | 
			
		||||
            $article_content = '<img src="'. $article_thumbnail .'"></a>';
 | 
			
		||||
			$article_uid = trim(strip_tags($element->find('span.title', 0)->innertext));
 | 
			
		||||
 | 
			
		||||
            // Store article in items array
 | 
			
		||||
            if (!empty($article_title)) {
 | 
			
		||||
                $item = array();
 | 
			
		||||
                $item['uri'] = $pageUrl;
 | 
			
		||||
                $item['title'] = $article_title;
 | 
			
		||||
                $item['content'] = $article_content;
 | 
			
		||||
				$item['uid'] = $article_uid;
 | 
			
		||||
                $this->items[] = $item;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user