xieruidong 2 年之前
父節點
當前提交
6f0d239a5b
共有 5 個文件被更改,包括 103 次插入1 次删除
  1. 35 0
      app/data/controller/api/Weather.php
  2. 57 0
      app/data/service/WeatherSvc.php
  3. 8 0
      app/data/sys.php
  4. 2 1
      composer.json
  5. 1 0
      config/apidoc.php

+ 35 - 0
app/data/controller/api/Weather.php

@@ -0,0 +1,35 @@
+<?php
+
+namespace app\data\controller\api;
+
+use app\data\model\BasePostageRegion;
+use app\data\service\WeatherSvc;
+use hg\apidoc\annotation\Param;
+use hg\apidoc\annotation\Returned;
+use hg\apidoc\annotation\Title;
+use think\admin\Controller;
+
+/**
+ * @Title("天气预报")
+ */
+class Weather extends Controller
+{
+    /**
+     * @Title("天气预报")
+     * @Param("name",desc="地区名称")
+     */
+    public function area(WeatherSvc $svc){
+        $data=$this->_vali([
+            'name.require'=>'级别必须',
+        ]);
+        $area=BasePostageRegion::level(2)->where('name|short',$data['name'])->find();
+        if(!$area){
+            $this->error('地区不存在');
+        }
+        $svc->setArea($area);
+        $this->success('',[
+            'weather'=>$svc->getWeather(),
+            'index'  =>$svc->getIndex(),
+        ]);
+    }
+}

+ 57 - 0
app/data/service/WeatherSvc.php

@@ -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);
+    }
+}

+ 8 - 0
app/data/sys.php

@@ -9,6 +9,7 @@ use app\data\service\OrderService;
 use app\data\service\RebateService;
 use app\data\service\UserBalanceService;
 use app\data\service\UserRebateService;
+use GuzzleHttp\Client;
 use think\admin\Library;
 use think\Console;
 
@@ -64,3 +65,10 @@ function dd(...$params){
     }
     exit;
 }
+function client(){
+    static $client;
+    if(!$client){
+        $client=new Client();
+    }
+    return $client;
+}

+ 2 - 1
composer.json

@@ -32,7 +32,8 @@
     "zoujingli/think-library": "^6.0.37",
     "zoujingli/wechat-developer": "^1.2",
     "hg/apidoc": "3.1.9",
-    "nesbot/carbon": "^2.62"
+    "nesbot/carbon": "^2.62",
+    "guzzlehttp/guzzle": "^7.5"
   },
   "autoload": {
     "psr-0": {

+ 1 - 0
config/apidoc.php

@@ -21,6 +21,7 @@ return [
                     'folder'=>'api','controllers'=>[
                         \app\data\controller\api\Login::class,
                         \app\data\controller\api\Area::class,
+                        \app\data\controller\api\Weather::class,
                         \app\data\controller\api\auth\Address::class,
                     ]
                 ]