@@ -16,9 +16,9 @@ discard block |
||
16 | 16 | |
17 | 17 | public function cUrlMulti(array $url) |
18 | 18 | { |
19 | - $chandle= []; |
|
19 | + $chandle = []; |
|
20 | 20 | $mhandle = curl_multi_init(); |
21 | - for ($i=0; $i < count($url); $i++) { |
|
21 | + for ($i = 0; $i < count($url); $i++) { |
|
22 | 22 | array_push($chandle, curl_init($url[$i])); |
23 | 23 | curl_setopt($chandle[$i], CURLOPT_RETURNTRANSFER, true); |
24 | 24 | curl_multi_add_handle($mhandle, $chandle[$i]); |
@@ -30,14 +30,14 @@ discard block |
||
30 | 30 | } while ($running); |
31 | 31 | |
32 | 32 | //close the handles |
33 | - for ($i=0; $i < count($chandle); $i++) { |
|
33 | + for ($i = 0; $i < count($chandle); $i++) { |
|
34 | 34 | curl_multi_remove_handle($mhandle, $chandle[$i]); |
35 | 35 | } |
36 | 36 | |
37 | 37 | curl_multi_close($mhandle); |
38 | 38 | |
39 | 39 | $json = []; |
40 | - for ($i=0; $i < count($chandle); $i++) { |
|
40 | + for ($i = 0; $i < count($chandle); $i++) { |
|
41 | 41 | array_push($json, curl_multi_getcontent($chandle[$i])); |
42 | 42 | } |
43 | 43 | return $json; |
@@ -13,7 +13,7 @@ |
||
13 | 13 | ?> |
14 | 14 | <div class="container days"> |
15 | 15 | <?php |
16 | - for ($i=0; $i < count($weather); $i++) { |
|
16 | + for ($i = 0; $i < count($weather); $i++) { |
|
17 | 17 | ?> |
18 | 18 | <div class="container card day"> |
19 | 19 | <i class="<?=$weather[$i]["daily"]["data"][0]["icon"]?>"></i> |
@@ -6,7 +6,7 @@ |
||
6 | 6 | "services" => [ |
7 | 7 | "darksky" => [ |
8 | 8 | "shared" => true, |
9 | - "callback" => function () { |
|
9 | + "callback" => function() { |
|
10 | 10 | // Load the configuration files |
11 | 11 | $cfg = $this->get("configuration"); |
12 | 12 | $config = $cfg->load("darksky.php"); |
@@ -6,7 +6,7 @@ |
||
6 | 6 | "services" => [ |
7 | 7 | "ipstack" => [ |
8 | 8 | "shared" => true, |
9 | - "callback" => function () { |
|
9 | + "callback" => function() { |
|
10 | 10 | // Load the configuration files |
11 | 11 | $cfg = $this->get("configuration"); |
12 | 12 | $config = $cfg->load("ipstack.php"); |
@@ -6,7 +6,7 @@ |
||
6 | 6 | "services" => [ |
7 | 7 | "mapquest" => [ |
8 | 8 | "shared" => true, |
9 | - "callback" => function () { |
|
9 | + "callback" => function() { |
|
10 | 10 | // Load the configuration files |
11 | 11 | $cfg = $this->get("configuration"); |
12 | 12 | $config = $cfg->load("mapquest.php"); |
@@ -18,8 +18,8 @@ discard block |
||
18 | 18 | $api = $this->di->get("ipstack"); |
19 | 19 | $ipstack = $api["config"]; |
20 | 20 | $getipInfo = new Models\Curl; |
21 | - $extra = "&fields=ip"; |
|
22 | - $userIp = $getipInfo->cUrl($ipstack["url"]. "check". '?access_key='. $ipstack["key"]. $extra); |
|
21 | + $extra = "&fields=ip"; |
|
22 | + $userIp = $getipInfo->cUrl($ipstack["url"]."check".'?access_key='.$ipstack["key"].$extra); |
|
23 | 23 | $apiResult = json_decode($userIp, true); |
24 | 24 | |
25 | 25 | $session->set("userIp", $apiResult["ip"]); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | $extra = "?lang=sv&units=auto"; |
56 | 56 | $mapDiv = $map->getMap($location["latitude"], $location["longitude"]); |
57 | - $weatherJson = $getJson->cUrl($darksky["url"]. $darksky["key"]. "/". $location["latitude"]. ",". $location["longitude"]. $extra); |
|
57 | + $weatherJson = $getJson->cUrl($darksky["url"].$darksky["key"]."/".$location["latitude"].",".$location["longitude"].$extra); |
|
58 | 58 | |
59 | 59 | $weather = json_decode($weatherJson, true); |
60 | 60 | $page->add("weather/weather", [ |
@@ -90,16 +90,16 @@ discard block |
||
90 | 90 | $url = []; |
91 | 91 | $extra = "?lang=sv&units=auto"; |
92 | 92 | $time = time() - (30 * 24 * 60 * 60); |
93 | - for ($i=0; $i < 31; $i++) { |
|
94 | - $time = time() - ($i * 24 * 60 * 60); |
|
95 | - array_push($url, $darksky["url"]. $darksky["key"]. "/". $location["latitude"]. ",". $location["longitude"]. ",". $time. $extra); |
|
93 | + for ($i = 0; $i < 31; $i++) { |
|
94 | + $time = time() - ($i * 24 * 60 * 60); |
|
95 | + array_push($url, $darksky["url"].$darksky["key"]."/".$location["latitude"].",".$location["longitude"].",".$time.$extra); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | |
99 | 99 | $mapDiv = $map->getMap($location["latitude"], $location["longitude"]); |
100 | 100 | $weatherJson = $getJson->cUrlMulti($url); |
101 | 101 | $weather = []; |
102 | - for ($i=0; $i < count($weatherJson); $i++) { |
|
102 | + for ($i = 0; $i < count($weatherJson); $i++) { |
|
103 | 103 | array_push($weather, json_decode($weatherJson[$i], true)); |
104 | 104 | } |
105 | 105 |
@@ -11,16 +11,16 @@ |
||
11 | 11 | $getJson = new Curl; |
12 | 12 | $test = $validateIP->validate($ipNumber); |
13 | 13 | if ($test[0]) { |
14 | - $location = $getJson->cUrl($ipstack["url"]. $ipNumber. '?access_key='. $ipstack["key"]); |
|
14 | + $location = $getJson->cUrl($ipstack["url"].$ipNumber.'?access_key='.$ipstack["key"]); |
|
15 | 15 | $location = json_decode($location, true); |
16 | 16 | $latitude = $location["latitude"]; |
17 | 17 | $longitude = $location["longitude"]; |
18 | 18 | $location = array("city"=> $location["city"], "latitude"=> $latitude, "longitude"=> $longitude); |
19 | 19 | } else { |
20 | - $search = array('å','ä','ö'); |
|
21 | - $replace = array('a','a','o'); |
|
20 | + $search = array('å', 'ä', 'ö'); |
|
21 | + $replace = array('a', 'a', 'o'); |
|
22 | 22 | $ipNumber = str_replace($search, $replace, $ipNumber); |
23 | - $location = $getJson->cUrl($mapquest["url"]. $mapquest["key"]. $mapquest["extra"]. $ipNumber); |
|
23 | + $location = $getJson->cUrl($mapquest["url"].$mapquest["key"].$mapquest["extra"].$ipNumber); |
|
24 | 24 | $location = json_decode($location, true); |
25 | 25 | $latitude = $location["results"][0]["locations"][0]["latLng"]["lat"]; |
26 | 26 | $longitude = $location["results"][0]["locations"][0]["latLng"]["lng"]; |