chuweiqiang 1 рік тому
батько
коміт
d225c36565

+ 1 - 0
application/api/controller/Books.php

@@ -156,6 +156,7 @@ class Books extends Api
             if($cer){
                 $list['is_certificate'] = 0;
             }
+
             $good = $UserGoods->where('user_id',$uid)->where('goods_type',0)->where('goods_id',$id)->find();
             if($good){
                 $list['is_pay'] = 0;

+ 16 - 0
application/api/controller/Common.php

@@ -10,6 +10,7 @@ use app\common\model\Version;
 use fast\Random;
 use think\captcha\Captcha;
 use think\Config;
+use think\Db;
 use think\Hook;
 
 /**
@@ -161,4 +162,19 @@ class Common extends Api
         $captcha = new Captcha((array)Config::get('captcha'));
         return $captcha->entry($id);
     }
+
+    /**
+     * 获取帮助中心 关于我们
+     * @param $id
+     * @return \think\Response
+     */
+    public function getHelpConfig(){
+
+        $list = Db::name('config')->where('name','in','help,about_us')->field('name','value')->select();
+//        $arr = [
+//           'help' =>  $list['help'],
+//           'about_us' => $list['about_us'],
+//        ];
+        $this->success('操作成功',$list);
+    }
 }

+ 31 - 0
application/api/controller/Pay.php

@@ -0,0 +1,31 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Gold
+ * Date: 2024/1/24
+ * Time: 14:32
+ */
+
+namespace app\api\controller;
+use app\common\controller\Api;
+use EasyWeChat\Factory;
+
+class Pay extends Api
+{
+    public function wxpay(){
+        $config = [
+            // 必要配置
+            'app_id'             => 'xxxx',
+            'mch_id'             => 'your-mch-id',
+            'key'                => 'key-for-signature',   // API v2 密钥 (注意: 是v2密钥 是v2密钥 是v2密钥)
+
+            // 如需使用敏感接口(如退款、发送红包等)需要配置 API 证书路径(登录商户平台下载 API 证书)
+            'cert_path'          => 'path/to/your/cert.pem', // XXX: 绝对路径!!!!
+            'key_path'           => 'path/to/your/key',      // XXX: 绝对路径!!!!
+
+            'notify_url'         => '默认的订单回调地址',     // 你也可以在下单时单独设置来想覆盖它
+        ];
+
+        $app = Factory::payment($config);
+    }
+}

+ 12 - 0
application/api/controller/Video.php

@@ -8,6 +8,8 @@
 
 namespace app\api\controller;
 
+use app\admin\model\books\Certificate;
+use app\admin\model\order\UserGoods;
 use app\admin\model\video\Video as VideoModel; //视频
 use app\admin\model\video\VideoFile; //视频
 use app\common\controller\Api;
@@ -60,6 +62,16 @@ class Video extends Api
         $VideoModel = new VideoModel();
         $id = $data['id'];
         $list = $VideoModel->where('id',$id)->where('is_deleted',1)->with(['file'])->find();
+        $list['is_pay'] = 1;
+        //判断是否已购买
+        if($this->auth->isLogin()){
+            $UserGoods = new UserGoods();
+            $uid = $this->auth->id;
+            $good = $UserGoods->where('user_id',$uid)->where('goods_type',1)->where('goods_id',$id)->find();
+            if($good){
+                $list['is_pay'] = 0;
+            }
+        }
         if(!$list){
             $this->error('教材不存在或已删除');
         }

+ 2 - 0
application/extra/site.php

@@ -41,4 +41,6 @@ return array (
     'category2' => 'Category2',
     'custom' => 'Custom',
   ),
+  'help' => '<p><b>常见问题</b></p><p><b style="color: rgb(32, 147, 97);">|&nbsp; </b>关于怎么样才能注册账号?</p><p>1.点击注册</p><p>2.注册完成</p>',
+  'about_us' => '<div>云课堂,是网易公司倾力打造的在线实用技能学习平台,该平台于2012年12月底正式上线,主要为学习者提供海量、优质的课程,课程结构严谨,用户可以根据自身的学习程度,自主安排学习进度。云课堂的宗旨是,为每一位想真真正正学到些实用知识、技能的学习者,提供贴心的一站式学习服务。</div><div><br></div><div>立足于实用性的要求,云课堂精选各类课程,与多家权威教育、培训机构建立合作,课程数量已达10000+,课时总数超100000,涵盖实用软件、IT与互联网、外语学习、生活家居、兴趣爱好、职场技能、金融管理、考试认证、中小学、亲子教育等十余大门类,其中不乏数量可观、制作精良的独家课程。从用户生活、职业、娱乐等多个维度,为用户打造实用学习平台。</div><div>云课堂目前拥有Web端、移动端(Android、iOS)。</div><div><br></div>',
 );