|
@@ -0,0 +1,57 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace app\data\service;
|
|
|
+
|
|
|
+use app\data\model\BasePostageRegion;
|
|
|
+use think\admin\Service;
|
|
|
+
|
|
|
+
|
|
|
+class WeatherSvc extends Service
|
|
|
+{
|
|
|
+ /** @var BasePostageRegion */
|
|
|
+ protected $area;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return BasePostageRegion
|
|
|
+ */
|
|
|
+ public function getArea(): BasePostageRegion
|
|
|
+ {
|
|
|
+ return $this->area;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param BasePostageRegion $area
|
|
|
+ */
|
|
|
+ public function setArea(BasePostageRegion $area): void
|
|
|
+ {
|
|
|
+ $this->area = $area;
|
|
|
+ }
|
|
|
+
|
|
|
+ public function getCity(){
|
|
|
+ return $this->area->short;
|
|
|
+ }
|
|
|
+ public function getWeather(){
|
|
|
+ return $this->app->cache->remember("weather_weather_{$this->getCity()}",function (){
|
|
|
+ $data=client()->get('https://apis.juhe.cn/simpleWeather/query',[
|
|
|
+ 'query'=>[
|
|
|
+ 'city'=>$this->getCity(),
|
|
|
+ 'key'=>sysconf('app_juhe_config.weather'),
|
|
|
+ ]
|
|
|
+ ]);
|
|
|
+ $json=json_decode($data->getBody()->getContents(),true);
|
|
|
+ return $json['result'];
|
|
|
+ },30*60);
|
|
|
+ }
|
|
|
+ public function getIndex(){
|
|
|
+ return $this->app->cache->remember("weather_index_{$this->getCity()}",function (){
|
|
|
+ $data=client()->get('https://apis.juhe.cn/simpleWeather/life',[
|
|
|
+ 'query'=>[
|
|
|
+ 'city'=>$this->getCity(),
|
|
|
+ 'key'=>sysconf('app_juhe_config.weather'),
|
|
|
+ ]
|
|
|
+ ]);
|
|
|
+ $json=json_decode($data->getBody()->getContents(),true);
|
|
|
+ return $json['result'];
|
|
|
+ },30*60);
|
|
|
+ }
|
|
|
+}
|