@@ -33,7 +33,7 @@ |
||
| 33 | 33 | /** |
| 34 | 34 | * Get the user that the activity belongs to. |
| 35 | 35 | * |
| 36 | - * @return object |
|
| 36 | + * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
|
| 37 | 37 | */ |
| 38 | 38 | public function user() |
| 39 | 39 | { |
@@ -1,7 +1,6 @@ |
||
| 1 | 1 | <?php namespace JackJoe\ActivityLog\Models; |
| 2 | 2 | |
| 3 | 3 | use Illuminate\Database\Eloquent\Model as Eloquent; |
| 4 | -use Illuminate\Support\Facades\Auth; |
|
| 5 | 4 | use Illuminate\Support\Facades\Request; |
| 6 | 5 | |
| 7 | 6 | class Activity extends Eloquent { |
@@ -50,13 +50,13 @@ discard block |
||
| 50 | 50 | { |
| 51 | 51 | // set the defaults from config |
| 52 | 52 | $defaults = config('log.defaults'); |
| 53 | - if(!is_array($defaults)) { |
|
| 53 | + if(!is_array($defaults)) { |
|
| 54 | 54 | $defaults = []; |
| 55 | - } |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | - if(is_object($data)) { |
|
| 58 | - $data = (array) $data; |
|
| 59 | - } |
|
| 57 | + if(is_object($data)) { |
|
| 58 | + $data = (array) $data; |
|
| 59 | + } |
|
| 60 | 60 | |
| 61 | 61 | // set the user ID |
| 62 | 62 | if(config('log.auto_set_user_id') && !isset($data['userId'])) { |
@@ -65,19 +65,19 @@ discard block |
||
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | // set IP address |
| 68 | - if(!isset($data['ipAddress'])) { |
|
| 68 | + if(!isset($data['ipAddress'])) { |
|
| 69 | 69 | $data['ipAddress'] = Request::getClientIp(); |
| 70 | - } |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | 72 | // set user agent |
| 73 | - if (!isset($data['userAgent'])) { |
|
| 73 | + if (!isset($data['userAgent'])) { |
|
| 74 | 74 | $data['userAgent'] = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : 'No User Agent'; |
| 75 | - } |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | 77 | // set additional data and encode it as JSON if it is an array or an object |
| 78 | - if(isset($data['data']) && (is_array($data['data']) || is_object($data['data']))) { |
|
| 78 | + if(isset($data['data']) && (is_array($data['data']) || is_object($data['data']))) { |
|
| 79 | 79 | $data['data'] = json_encode($data['data']); |
| 80 | - } |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | 82 | // format array keys to snake case for insertion into database |
| 83 | 83 | $dataFormatted = []; |
@@ -50,22 +50,22 @@ discard block |
||
| 50 | 50 | { |
| 51 | 51 | // set the defaults from config |
| 52 | 52 | $defaults = config('log.defaults'); |
| 53 | - if(!is_array($defaults)) { |
|
| 53 | + if (!is_array($defaults)) { |
|
| 54 | 54 | $defaults = []; |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | - if(is_object($data)) { |
|
| 57 | + if (is_object($data)) { |
|
| 58 | 58 | $data = (array) $data; |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | // set the user ID |
| 62 | - if(config('log.auto_set_user_id') && !isset($data['userId'])) { |
|
| 62 | + if (config('log.auto_set_user_id') && !isset($data['userId'])) { |
|
| 63 | 63 | $user = call_user_func(config('log.auth_method')); |
| 64 | 64 | $data['userId'] = isset($user->id) ? $user->id : null; |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | // set IP address |
| 68 | - if(!isset($data['ipAddress'])) { |
|
| 68 | + if (!isset($data['ipAddress'])) { |
|
| 69 | 69 | $data['ipAddress'] = Request::getClientIp(); |
| 70 | 70 | } |
| 71 | 71 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | // set additional data and encode it as JSON if it is an array or an object |
| 78 | - if(isset($data['data']) && (is_array($data['data']) || is_object($data['data']))) { |
|
| 78 | + if (isset($data['data']) && (is_array($data['data']) || is_object($data['data']))) { |
|
| 79 | 79 | $data['data'] = json_encode($data['data']); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -2,9 +2,9 @@ |
||
| 2 | 2 | |
| 3 | 3 | return [ |
| 4 | 4 | /** |
| 5 | - * Auto Set User ID |
|
| 6 | - * |
|
| 7 | - * If false, user ID will not be automatically set. |
|
| 5 | + * Auto Set User ID |
|
| 6 | + * |
|
| 7 | + * If false, user ID will not be automatically set. |
|
| 8 | 8 | */ |
| 9 | 9 | 'auto_set_user_id' => true, |
| 10 | 10 | |
@@ -25,8 +25,8 @@ |
||
| 25 | 25 | $table->string('version', 10)->nullable(); |
| 26 | 26 | $table->string('ip_address', 64); |
| 27 | 27 | $table->string('user_agent'); |
| 28 | - $table->timestamp('created_at')->useCurrent(); |
|
| 29 | - $table->timestamp('updated_at')->useCurrent(); |
|
| 28 | + $table->timestamp('created_at')->useCurrent(); |
|
| 29 | + $table->timestamp('updated_at')->useCurrent(); |
|
| 30 | 30 | }); |
| 31 | 31 | } |
| 32 | 32 | |