1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the overtrue/wechat. |
5
|
|
|
* |
6
|
|
|
* (c) overtrue <[email protected]> |
7
|
|
|
* |
8
|
|
|
* This source file is subject to the MIT license that is bundled |
9
|
|
|
* with this source code in the file LICENSE. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
/** |
13
|
|
|
* Trait ManageComments.php. |
14
|
|
|
* |
15
|
|
|
* Part of Overtrue\WeChat. |
16
|
|
|
* |
17
|
|
|
* For the full copyright and license information, please view the LICENSE |
18
|
|
|
* file that was distributed with this source code. |
19
|
|
|
* |
20
|
|
|
* @author mingyoung <[email protected]> |
21
|
|
|
* @copyright 2017 |
22
|
|
|
* |
23
|
|
|
* @see https://github.com/overtrue |
24
|
|
|
* @see http://overtrue.me |
25
|
|
|
*/ |
26
|
|
|
|
27
|
|
|
namespace EasyWeChat\MediaPress; |
28
|
|
|
|
29
|
|
|
trait ManageComments |
30
|
|
|
{ |
31
|
|
|
/** |
32
|
|
|
* Open article comment. |
33
|
|
|
* |
34
|
|
|
* @return \EasyWeChat\Support\Collection |
35
|
|
|
*/ |
36
|
1 |
|
public function openComment() |
37
|
|
|
{ |
38
|
1 |
|
return $this->parseJSON('post', [self::API_OPEN_COMMENT, $this->mediaPress()]); |
|
|
|
|
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Close comment. |
43
|
|
|
* |
44
|
|
|
* @return \EasyWeChat\Support\Collection |
45
|
|
|
*/ |
46
|
1 |
|
public function closeComment() |
47
|
|
|
{ |
48
|
1 |
|
return $this->parseJSON('post', [self::API_CLOSE_COMMENT, $this->mediaPress()]); |
|
|
|
|
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* Get article comments. |
53
|
|
|
* |
54
|
|
|
* @param int $begin |
55
|
|
|
* @param int $count |
56
|
|
|
* @param int $type |
57
|
|
|
* |
58
|
|
|
* @return \EasyWeChat\Support\Collection |
59
|
|
|
*/ |
60
|
1 |
View Code Duplication |
public function comments($begin, $count, $type = 0) |
61
|
|
|
{ |
62
|
1 |
|
$params = array_merge($this->mediaPress(), [ |
|
|
|
|
63
|
1 |
|
'begin' => $begin, |
64
|
1 |
|
'count' => $count, |
65
|
1 |
|
'type' => $type, |
66
|
1 |
|
]); |
67
|
|
|
|
68
|
1 |
|
return $this->parseJSON('post', [self::API_LIST_COMMENT, $params]); |
|
|
|
|
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* Mark elect comment. |
73
|
|
|
* |
74
|
|
|
* @param int $commentId |
75
|
|
|
* |
76
|
|
|
* @return \EasyWeChat\Support\Collection |
77
|
|
|
*/ |
78
|
1 |
View Code Duplication |
public function markElectComment($commentId) |
79
|
|
|
{ |
80
|
1 |
|
$params = array_merge($this->mediaPress(), [ |
|
|
|
|
81
|
1 |
|
'user_comment_id' => $commentId, |
82
|
1 |
|
]); |
83
|
|
|
|
84
|
1 |
|
return $this->parseJSON('post', [self::API_MARK_ELECT, $params]); |
|
|
|
|
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* Unmark comment elect. |
89
|
|
|
* |
90
|
|
|
* @param int $commentId |
91
|
|
|
* |
92
|
|
|
* @return \EasyWeChat\Support\Collection |
93
|
|
|
*/ |
94
|
1 |
View Code Duplication |
public function unmarkElectComment($commentId) |
95
|
|
|
{ |
96
|
1 |
|
$params = array_merge($this->mediaPress(), [ |
|
|
|
|
97
|
1 |
|
'user_comment_id' => $commentId, |
98
|
1 |
|
]); |
99
|
|
|
|
100
|
1 |
|
return $this->parseJSON('post', [self::API_UNMARK_ELECT, $params]); |
|
|
|
|
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
/** |
104
|
|
|
* Delete comment. |
105
|
|
|
* |
106
|
|
|
* @param int $commentId |
107
|
|
|
* |
108
|
|
|
* @return \EasyWeChat\Support\Collection |
109
|
|
|
*/ |
110
|
1 |
View Code Duplication |
public function deleteComment($commentId) |
111
|
|
|
{ |
112
|
1 |
|
$params = array_merge($this->mediaPress(), [ |
|
|
|
|
113
|
1 |
|
'user_comment_id' => $commentId, |
114
|
1 |
|
]); |
115
|
|
|
|
116
|
1 |
|
return $this->parseJSON('post', [self::API_DELETE_COMMENT, $params]); |
|
|
|
|
117
|
|
|
} |
118
|
|
|
} |
119
|
|
|
|
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.