This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
1 | <?php |
||
2 | |||
3 | namespace App\Models\Eloquent; |
||
4 | |||
5 | use App\Models\Eloquent\Messager\GlobalRankMessager; |
||
6 | use Illuminate\Database\Eloquent\Model; |
||
7 | use Illuminate\Database\Eloquent\SoftDeletes; |
||
8 | use App\Models\Eloquent\Messager\UniversalMessager; |
||
9 | use App\Models\Eloquent\Messager\GroupMemberMessager; |
||
10 | use App\Models\Eloquent\Messager\SolutionStatusMessager; |
||
11 | use App\Models\Eloquent\Messager\HomeworkMessager; |
||
12 | |||
13 | class Message extends Model |
||
14 | { |
||
15 | use SoftDeletes; |
||
16 | |||
17 | protected $table = 'message'; |
||
18 | |||
19 | protected $with = ['sender_user', 'receiver_user']; |
||
20 | |||
21 | public $levelMapping = [ |
||
22 | 0 => 'default', |
||
23 | 1 => 'info', |
||
24 | 2 => 'warning', |
||
25 | 3 => 'danger', |
||
26 | 4 => 'question', |
||
27 | 5 => 'success', |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * @access public |
||
32 | * @param array $config the config of the message. must including sender,receiver,title,content. //TODO:Can contain reply. |
||
33 | * @return boolean the result. |
||
34 | */ |
||
35 | public static function send($config) |
||
36 | { |
||
37 | if (filled($config['type'])) { |
||
38 | switch (intval($config['type'])) { |
||
39 | case 1: |
||
40 | // to a leader that member apply to join the group |
||
41 | return GroupMemberMessager::sendApplyJoinMessageToLeader($config); |
||
42 | break; |
||
0 ignored issues
–
show
|
|||
43 | |||
44 | case 2: |
||
45 | // to a leader that member agree to join the group |
||
46 | return GroupMemberMessager::sendAgreedJoinMessageToLeader($config); |
||
47 | break; |
||
48 | |||
49 | case 3: |
||
50 | // to a person that solution was passed |
||
51 | return SolutionStatusMessager::sendSolutionPassedMessageToUser($config); |
||
52 | break; |
||
53 | |||
54 | case 4: |
||
55 | // to a person that solution was rejected |
||
56 | return SolutionStatusMessager::sendSolutionRejectedMessageToUser($config); |
||
57 | break; |
||
58 | |||
59 | case 5: |
||
60 | // to a person that received new homework |
||
61 | return HomeworkMessager::sendNewHomeworkMessageToUser($config); |
||
62 | break; |
||
63 | |||
64 | case 6: |
||
65 | // to a person that global rank in or out top 100 |
||
66 | return GlobalRankMessager::sendRankInOutOneHundredMessageToUser($config); |
||
67 | break; |
||
68 | |||
69 | case 7: |
||
70 | // to a person that got invited to a group |
||
71 | return GroupMemberMessager::sendInvitedMessageToUser($config); |
||
72 | break; |
||
73 | |||
74 | default: |
||
75 | // unregistered type falls back to universal message sender |
||
76 | return UniversalMessager::sendUniversalMessage($config); |
||
77 | break; |
||
78 | } |
||
79 | } |
||
80 | return UniversalMessager::sendUniversalMessage($config); |
||
81 | } |
||
82 | |||
83 | /** |
||
84 | * to get a unread message liist of a user |
||
85 | * |
||
86 | * @access public |
||
87 | * @param integer message receiver id |
||
88 | * @return array the result. |
||
89 | */ |
||
90 | public static function unread($uid) |
||
91 | { |
||
92 | return static::where([ |
||
93 | 'receiver' => $uid, |
||
94 | 'unread' => true, |
||
95 | ])->orderByDesc('created_at')->get()->all(); |
||
96 | } |
||
97 | |||
98 | public static function listAll($userID) |
||
99 | { |
||
100 | return Message::where('receiver', $userID)->orderBy('unread', 'desc')->orderBy('updated_at', 'desc')->paginate(15); |
||
101 | } |
||
102 | |||
103 | public function read() |
||
104 | { |
||
105 | if ($this->unread) { |
||
106 | $this->unread = false; |
||
107 | $this->save(); |
||
108 | } |
||
109 | return $this; |
||
110 | } |
||
111 | |||
112 | /** |
||
113 | * to get a message's detail. |
||
114 | * |
||
115 | * @access public |
||
116 | * @param integer uid |
||
0 ignored issues
–
show
The type
App\Models\Eloquent\uid was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||
117 | * @return integer result. |
||
118 | */ |
||
119 | public static function allRead($uid) |
||
120 | { |
||
121 | return static::where('receiver', $uid)->update([ |
||
122 | 'unread' => false |
||
123 | ]); |
||
124 | } |
||
125 | |||
126 | /** |
||
127 | * to remove a user's all read-ed message. |
||
128 | * |
||
129 | * @access public |
||
130 | * @param integer uid |
||
131 | * @return integer result. |
||
132 | */ |
||
133 | public static function removeAllRead($uid) |
||
134 | { |
||
135 | return static::where([ |
||
136 | 'receiver' => $uid, |
||
137 | 'unread' => false |
||
138 | ])->delete(); |
||
139 | } |
||
140 | |||
141 | /** |
||
142 | * to soft delete the message |
||
143 | * |
||
144 | * @access public |
||
145 | * @param integer|array the id of the message or the array with ids of the messages. |
||
0 ignored issues
–
show
The type
App\Models\Eloquent\the was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||
146 | * @return bool result. |
||
147 | */ |
||
148 | public static function remove($messages) |
||
149 | { |
||
150 | $del_count = 0; |
||
151 | if (is_array($messages)) { |
||
152 | foreach ($messages as $mid) { |
||
153 | $message = static::find($mid); |
||
154 | if (filled($message)) { |
||
155 | $message->delete(); |
||
156 | $del_count++; |
||
157 | } |
||
158 | } |
||
159 | } else { |
||
160 | $message = static::find($messages); |
||
161 | if (filled($message)) { |
||
162 | $message->delete(); |
||
163 | $del_count++; |
||
164 | } |
||
165 | } |
||
166 | return $del_count; |
||
0 ignored issues
–
show
|
|||
167 | } |
||
168 | |||
169 | public function getLevelStringAttribute() |
||
170 | { |
||
171 | if (isset($this->levelMapping[$this->level])) { |
||
172 | return $this->levelMapping[$this->level]; |
||
173 | } else { |
||
174 | return $this->levelMapping[0]; |
||
175 | } |
||
176 | } |
||
177 | |||
178 | public function getContentAttribute($value) |
||
179 | { |
||
180 | if (filled($this->type)) { |
||
181 | $data = json_decode($this->data, true); |
||
182 | $data['receiver'] = $this->receiver_user; |
||
183 | $data['sender'] = $this->sender_user; |
||
184 | |||
185 | switch (intval($this->type)) { |
||
186 | case 1: |
||
187 | // to a leader that member apply to join the group |
||
188 | return GroupMemberMessager::formatApplyJoinMessageToLeader($data); |
||
189 | break; |
||
0 ignored issues
–
show
break is not strictly necessary here and could be removed.
The switch ($x) {
case 1:
return 'foo';
break; // This break is not necessary and can be left off.
}
If you would like to keep this construct to be consistent with other ![]() |
|||
190 | |||
191 | case 2: |
||
192 | // to a leader that member agree to join the group |
||
193 | return GroupMemberMessager::formatAgreedJoinMessageToLeader($data); |
||
194 | break; |
||
195 | |||
196 | case 3: |
||
197 | // to a person that solution was passed |
||
198 | return SolutionStatusMessager::formatSolutionPassedMessageToUser($data); |
||
199 | break; |
||
200 | |||
201 | case 4: |
||
202 | // to a person that solution was rejected |
||
203 | return SolutionStatusMessager::formatSolutionRejectedMessageToUser($data); |
||
204 | break; |
||
205 | |||
206 | case 5: |
||
207 | // to a person that received new homework |
||
208 | return HomeworkMessager::formatNewHomeworkMessageToUser($data); |
||
209 | break; |
||
210 | |||
211 | case 6: |
||
212 | // to a person that global rank in or out top 100 |
||
213 | return GlobalRankMessager::formatRankInOutOneHundredMessageToUser($data); |
||
214 | break; |
||
215 | |||
216 | case 7: |
||
217 | // to a person that got invited to a group |
||
218 | return GroupMemberMessager::formatInvitedMessageToUser($data); |
||
219 | break; |
||
220 | |||
221 | default: |
||
222 | // unregistered type falls back to universal message formatter |
||
223 | return $value; |
||
224 | break; |
||
225 | } |
||
226 | |||
227 | } else { |
||
228 | return $value; |
||
229 | } |
||
230 | } |
||
231 | |||
232 | public function sender_user() |
||
233 | { |
||
234 | return $this->belongsTo('App\Models\Eloquent\User', 'sender', 'id'); |
||
235 | } |
||
236 | |||
237 | public function receiver_user() |
||
238 | { |
||
239 | return $this->belongsTo('App\Models\Eloquent\User', 'receiver', 'id'); |
||
240 | } |
||
241 | } |
||
242 |
The
break
statement is not necessary if it is preceded for example by areturn
statement:If you would like to keep this construct to be consistent with other
case
statements, you can safely mark this issue as a false-positive.