Browse Source

Fix indentation and remove unnecessary lines

logmanoriginal 7 years ago
parent
commit
4420906a7a
1 changed files with 101 additions and 103 deletions
  1. 101 103
      bridges/DauphineLibereBridge.php

+ 101 - 103
bridges/DauphineLibereBridge.php

@@ -1,95 +1,94 @@
 <?php
-class DauphineLibereBridge extends BridgeAbstract{
+class DauphineLibereBridge extends BridgeAbstract {
 
-    	public function loadMetadatas() {
+	public function loadMetadatas() {
 
-			$this->maintainer = "qwertygc";
-			$this->name = "DauphineLibereBridge Bridge";
-			$this->uri = "http://www.ledauphine.com/";
-			$this->description = "Returns the newest articles.";
-			$this->update = "2016-08-02";
+		$this->maintainer = "qwertygc";
+		$this->name = "DauphineLibereBridge Bridge";
+		$this->uri = "http://www.ledauphine.com/";
+		$this->description = "Returns the newest articles.";
+		$this->update = "2016-08-02";
 
+		$this->parameters[] =
+		'[
+			{
+				"name" : "Catégorie de l\'article",
+				"identifier" : "u",
+				"type" : "list",
+				"values" : [
+					{
+						"name" : "À la une",
+						"value" : ""
+					},
+					{
+						"name" : "France Monde",
+						"value" : "france-monde"
+					},
+					{
+						"name" : "Faits Divers",
+						"value" : "faits-divers"
+					},
+					{
+						"name" : "Économie et Finance",
+						"value" : "economie-et-finance"
+					},
+					{
+						"name" : "Politique",
+						"value" : "politique"
+					},
+					{
+						"name" : "Sport",
+						"value" : "sport"
+					},
+					{
+						"name" : "Ain",
+						"value" : "ain"
+					},
+					{
+						"name" : "Alpes-de-Haute-Provence",
+						"value" : "haute-provence"
+					},
+					{
+						"name" : "Hautes-Alpes",
+						"value" : "hautes-alpes"
+					},
+					{
+						"name" : "Ardèche",
+						"value" : "ardeche"
+					},
+					{
+						"name" : "Drôme",
+						"value" : "drome"
+					},
+					{
+						"name" : "Isère Sud",
+						"value" : "isere-sud"
+					},
+					{
+						"name" : "Savoie",
+						"value" : "savoie"
+					},
+					{
+						"name" : "Haute-Savoie",
+						"value" : "haute-savoie"
+					},
+					{
+						"name" : "Vaucluse",
+						"value" : "vaucluse"
+					}
+				]
+			}
+		]';
+	}
 
-			$this->parameters[] =
-			'[
-				{
-					"name" : "Catégorie de l\'article",
-					"identifier" : "u",
-					"type" : "list",
-					"values" : [
-						{
-							"name" : "À la une",
-							"value" : ""
-						},
-						{
-							"name" : "France Monde",
-							"value" : "france-monde"
-						},
-						{
-							"name" : "Faits Divers",
-							"value" : "faits-divers"
-						},
-						{
-							"name" : "Économie et Finance",
-							"value" : "economie-et-finance"
-						},
-						{
-							"name" : "Politique",
-							"value" : "politique"
-						},
-						{
-							"name" : "Sport",
-							"value" : "sport"
-						},
-						{
-							"name" : "Ain",
-							"value" : "ain"
-						},
-						{
-							"name" : "Alpes-de-Haute-Provence",
-							"value" : "haute-provence"
-						},
-						{
-							"name" : "Hautes-Alpes",
-							"value" : "hautes-alpes"
-						},
-						{
-							"name" : "Ardèche",
-							"value" : "ardeche"
-						},
-						{
-							"name" : "Drôme",
-							"value" : "drome"
-						},
-						{
-							"name" : "Isère Sud",
-							"value" : "isere-sud"
-						},
-						{
-							"name" : "Savoie",
-							"value" : "savoie"
-						},
-						{
-							"name" : "Haute-Savoie",
-							"value" : "haute-savoie"
-						},
-						{
-							"name" : "Vaucluse",
-							"value" : "vaucluse"
-						}
-					]
-				}
-			]';
-		}
-
-		function ExtractContent($url) {
+	function ExtractContent($url) {
 		$html2 = $this->file_get_html($url);
 		$text = $html2->find('div.column', 0)->innertext;
 		$text = preg_replace('@<script[^>]*?>.*?</script>@si', '', $text);
 		return $text;
-		}
+	}
 
-        public function collectData(array $param){
+	public function collectData(array $param){
 
 		if (isset($param['u'])) { /* user timeline mode */
 			$this->request = $param['u'];
@@ -101,29 +100,28 @@ class DauphineLibereBridge extends BridgeAbstract{
 		$limit = 0;
 
 		foreach($html->find('item') as $element) {
-		 if($limit < 10) {
-		 $item = new \Item();
-		 $item->title = $element->find('title', 0)->innertext;
-		 $item->uri = $element->find('guid', 0)->plaintext;
-		 $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
-		 $item->content = $this->ExtractContent($item->uri);
-		 $this->items[] = $item;
-		 $limit++;
-		 }
+			if($limit < 10) {
+			$item = new \Item();
+			$item->title = $element->find('title', 0)->innertext;
+			$item->uri = $element->find('guid', 0)->plaintext;
+			$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
+			$item->content = $this->ExtractContent($item->uri);
+			$this->items[] = $item;
+			$limit++;
+			}
 		}
-    
-    }
+	}
 
-    public function getName(){
-        return 'Dauphine Bridge';
-    }
+	public function getName(){
+		return 'Dauphine Bridge';
+	}
 
-    public function getURI(){
-        return 'http://ledauphine.com/';
-    }
+	public function getURI(){
+		return 'http://ledauphine.com/';
+	}
 
-    public function getCacheDuration(){
-        return 3600*2; // 2 hours
-        // return 0; // 2 hours
-    }
+	public function getCacheDuration(){
+		return 3600*2; // 2 hours
+	}
 }
+?>