blob: 3af04f0c1ab60f23d12a3b4f2cd2fa9de53eaf22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Admin\Sprunje;
use Illuminate\Database\Capsule\Manager as Capsule;
use UserFrosting\Sprinkle\Core\Facades\Debug;
use UserFrosting\Sprinkle\Core\Sprunje\Sprunje;
/**
* ActivitySprunje
*
* Implements Sprunje for the activities API.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class ActivitySprunje extends Sprunje
{
protected $sortable = [
'occurred_at',
'user',
'description'
];
protected $filterable = [
'occurred_at',
'user',
'description'
];
protected $name = 'activities';
/**
* Set the initial query used by your Sprunje.
*/
protected function baseQuery() {
$query = $this->classMapper->createInstance('activity');
return $query->joinUser();
}
/**
* Filter LIKE the user info.
*
* @param Builder $query
* @param mixed $value
* @return $this
*/
protected function filterUser($query, $value) {
// Split value on separator for OR queries
$values = explode($this->orSeparator, $value);
$query->where(function ($query) use ($values) {
foreach ($values as $value) {
$query->orLike('users.first_name', $value)
->orLike('users.last_name', $value)
->orLike('users.email', $value);
}
});
return $this;
}
/**
* Sort based on user last name.
*
* @param Builder $query
* @param string $direction
* @return $this
*/
protected function sortUser($query, $direction) {
$query->orderBy('users.last_name', $direction);
return $this;
}
}
|