123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <?php
- namespace Community\Src;
- use Dever;
- use Collection\Lib\Core;
- class Api extends Core
- {
- public function __construct()
- {
- $this->cate_id = Dever::input('cate_id');
- $this->type = Dever::input('type', 3);
- $this->type_id = Dever::input('type_id', 1);
- parent::__construct();
- }
-
- public function category()
- {
- $info_id = $this->id;
- $page_id = $this->page_id;
- $content_id = Dever::input('content_id');
-
- $cate_data = Dever::db('community/cate')->getAll();
- $where['info_id'] = $info_id;
- $community = Dever::db('collection/community')->one($where);
- $data['cate'] = array();
- if ($community && $community['cate']) {
- $cate = $community['cate'];
- $cate = explode(',', $cate);
- $cate_name = explode(',', $community['cate_name']);
- $i = 0;
- foreach ($cate_data as $k => $v) {
- if (in_array($v['id'], $cate)) {
- if (isset($cate_name[$i]) && $cate_name[$i]) {
- $v['name'] = $cate_name[$i];
- }
- $data['cate'][$i] = $v;
- $i++;
- }
- }
- }
- return $data;
- }
-
- public function info()
- {
- $id = Dever::input('info_id');
- $data = Dever::load('community/lib/info')->getData('getAll', $this->uid, $this->cate_id, $this->type, $this->type_id, false, $id, $this->times, $this->day, $this->id);
- return $data;
- }
-
- public function comment()
- {
- $user = Dever::input('user', false);
- $data = Dever::load('community/lib/comment')->getData('getAll', $this->uid, $this->type, $this->type_id, $user, $this->id);
- return $data;
- }
-
- public function tips()
- {
- $user = Dever::input('user', false);
- $data = Dever::load('community/lib/tips')->getData('getAll', $this->uid, $this->type, $this->type_id, $user, $this->id);
- return $data;
- }
-
- public function addComment()
- {
- $pic = Dever::input('pic');
- $playtime = Dever::input('playtime');
- $content = Dever::input('content');
- if (!$content) {
- Dever::alert('请填写内容');
- }
- $type_id = Dever::input('type_id');
- if (!$type_id) {
- Dever::alert('错误的信息');
- }
- $type = Dever::input('type');
- if (!$type) {
- Dever::alert('错误的信息');
- }
- if ($type == 'content/product') {
-
- $buy = Dever::load('goods/lib/order')->checkBuy($this->uid, $type_id);
- if (!$buy) {
- Dever::alert('未购买,您没有权限评价');
- }
- }
-
- Dever::load('community/lib/comment')->submit($this->uid, $type_id, $type, $pic, $content, $playtime, 'collection/info', $this->id);
- return 'yes';
- }
-
- public function addTips()
- {
- $pic = Dever::input('pic');
- $playtime = Dever::input('playtime');
- $content = Dever::input('content');
- if (!$content) {
- Dever::alert('请填写内容');
- }
- $type_id = Dever::input('type_id');
- if (!$type_id) {
- Dever::alert('错误的信息');
- }
- $type = Dever::input('type');
- if (!$type) {
- Dever::alert('错误的信息');
- }
- $seat = Dever::db('user/seat')->one($type_id);
- if (!$seat || $seat['uid'] != $this->uid) {
- Dever::alert('这不是您的座位');
- }
-
- Dever::load('community/lib/tips')->submit($this->uid, $type_id, $type, $pic, $content, $playtime, 'collection/info', $this->id);
- return 'yes';
- }
-
- public function add()
- {
- $pic = Dever::input('pic');
- $content = Dever::input('content');
- if (!$content) {
- Dever::alert('请填写内容');
- }
- $cate_id = Dever::input('cate_id');
- if (!$cate_id) {
- Dever::alert('错误的信息');
- }
- $type_id = Dever::input('type_id');
- if (!$type_id) {
- Dever::alert('错误的信息');
- }
- $type = Dever::input('type');
- if (!$type) {
- Dever::alert('错误的信息');
- }
- $to_id = Dever::input('to_id');
- $to_uid = Dever::input('to_uid');
-
- Dever::load('community/lib/info')->submit($this->uid, $cate_id, $type_id, $type, $pic, $content, $to_id, $to_uid, $this->day, 'collection/info', $this->id);
- return 'yes';
- }
-
- public function up()
- {
- $id = Dever::input('id');
- if (!$id) {
- Dever::alert('错误的信息');
- }
- $type = Dever::input('type', 20);
- if (!$type) {
- Dever::alert('错误的信息');
- }
- Dever::load('community/lib/up')->submit($this->uid, $id, $type);
- return 'yes';
- }
-
- public function oppose()
- {
- $id = Dever::input('id');
- if (!$id) {
- Dever::alert('错误的信息');
- }
- $type = Dever::input('type', 20);
- if (!$type) {
- Dever::alert('错误的信息');
- }
- Dever::load('community/lib/oppose')->submit($this->uid, $id, $type);
- return 'yes';
- }
- }
|