Skip to content

Commit f58cebf

Browse files
authored
Merge pull request #708 from itinerare/hotfix/adjust-comment-types
fix(comments): more robust handling for non user-user comments
2 parents ea2ff9e + 8582dc9 commit f58cebf

File tree

4 files changed

+90
-21
lines changed

4 files changed

+90
-21
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?php
2+
3+
namespace App\Console\Commands;
4+
5+
use App\Models\Comment;
6+
use Illuminate\Console\Command;
7+
8+
class UpdateCommentTypes extends Command
9+
{
10+
/**
11+
* The name and signature of the console command.
12+
*
13+
* @var string
14+
*/
15+
protected $signature = 'update-comment-types';
16+
17+
/**
18+
* The console command description.
19+
*
20+
* @var string
21+
*/
22+
protected $description = 'Updates comment types.';
23+
24+
/**
25+
* Create a new command instance.
26+
*
27+
* @return void
28+
*/
29+
public function __construct()
30+
{
31+
parent::__construct();
32+
}
33+
34+
/**
35+
* Execute the console command.
36+
*
37+
* @return int
38+
*/
39+
public function handle()
40+
{
41+
$comments = Comment::where('commentable_type', 'App\Models\Report\Report')->where('type', 'User-User');
42+
43+
if($comments->count()) {
44+
$this->line('Updating comment types...');
45+
$comments->update(['type' => 'Staff-User']);
46+
} else {
47+
$this->info('No comments to update!');
48+
}
49+
50+
return 0;
51+
}
52+
}

app/Http/Controllers/PermalinkController.php

+29-12
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use App\Models\Model;
1313

1414
use App\Models\Comment;
15+
use App\Models\Report\Report;
1516

1617
class PermalinkController extends Controller
1718
{
@@ -25,33 +26,49 @@ public function getComment($id) {
2526
$comments = Comment::all();
2627
//$comments = $comments->sortByDesc('created_at');
2728
$comment = $comments->find($id);
28-
29+
2930
if(!$comment) abort(404);
3031
if(!$comment->commentable) abort(404);
3132

3233
// Check if the comment can be viewed
3334
switch($comment->type) {
3435
case "Staff-User":
3536
if(!Auth::check()) abort(404);
36-
$submission = GallerySubmission::find($comment->commentable_id);
37-
$isMod = Auth::user()->hasPower('manage_submissions');
38-
$isOwner = ($submission->user_id == Auth::user()->id);
39-
$isCollaborator = $submission->collaborators->where('user_id', Auth::user()->id)->first() != null ? true : false;
40-
if(!$isMod && !$isOwner && !$isCollaborator) abort(404);
41-
break;
37+
switch($comment->commentable_type) {
38+
case 'App\Models\Gallery\GallerySubmission':
39+
$submission = GallerySubmission::where('id', $comment->commentable_id)->first();
40+
$isMod = Auth::user()->hasPower('manage_submissions');
41+
$isOwner = ($submission->user_id == Auth::user()->id);
42+
$isCollaborator = $submission->collaborators->where('user_id', Auth::user()->id)->first() != null ? true : false;
43+
if(!$isMod && !$isOwner && !$isCollaborator) abort(404);
44+
break;
45+
case 'App\Models\Report\Report':
46+
$report = Report::where('id', $comment->commentable_id)->first();
47+
$isMod = Auth::user()->hasPower('manage_reports');
48+
$isOwner = ($report->user_id == Auth::user()->id);
49+
if(!$isMod && !$isOwner) abort(404);
50+
break;
51+
default:
52+
if(!Auth::user()->isStaff) abort(404);
53+
break;
54+
}
4255
case "Staff-Staff":
4356
if(!Auth::check()) abort(404);
44-
if(!Auth::user()->hasPower('manage_submissions')) abort(404);
45-
break;
46-
default:
57+
if(!Auth::user()->isStaff) abort(404);
58+
// More specific filtering depending on circumstance
59+
switch($comment->commentable_type) {
60+
case 'App\Models\Gallery\GallerySubmission':
61+
if(!Auth::user()->hasPower('manage_submissions')) abort(404);
62+
break;
63+
}
4764
break;
4865
}
4966

5067
if($comment->commentable_type == 'App\Models\User\UserProfile') $comment->location = $comment->commentable->user->url;
5168
else $comment->location = $comment->commentable->url;
52-
69+
5370
return view('comments._perma_layout',[
54-
'comment' => $comment,
71+
'comment' => $comment,
5572
]);
5673
}
5774
}

resources/views/admin/reports/report.blade.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
@endif
5353
</div></div>
5454
@endif
55-
55+
5656
@if($report->status == 'Assigned' && $report->user_id == Auth::user()->id || Auth::user()->hasPower('manage_reports'))
57-
@comments([ 'model' => $report, 'perPage' => 5 ])
57+
@comments([ 'type' => 'Staff-User', 'model' => $report, 'perPage' => 5 ])
5858
@endif
59-
59+
6060
{!! Form::open(['url' => url()->current(), 'id' => 'reportForm']) !!}
6161
@if($report->status == 'Assigned' && Auth::user()->id == $report->staff_id)
6262
@if(Auth::user()->hasPower('manage_reports'))<div class="alert alert-warning">Please include a small paragraph on the solution and as many important details as you deem necessary, as the user will no longer be able to view the comments after the report is closed</div>@endif
@@ -111,10 +111,10 @@
111111
@endsection
112112

113113
@section('scripts')
114-
@parent
114+
@parent
115115
@if($report->status !== 'Closed')
116116
<script>
117-
117+
118118
$(document).ready(function() {
119119
var $confirmationModal = $('#confirmationModal');
120120
var $reportForm = $('#reportForm');
@@ -126,14 +126,14 @@
126126
var $assignButton = $('#assignButton');
127127
var $assignContent = $('#assignContent');
128128
var $assignSubmit = $('#assignSubmit');
129-
129+
130130
$closalButton.on('click', function(e) {
131131
e.preventDefault();
132132
$closalContent.removeClass('hide');
133133
$assignContent.addClass('hide');
134134
$confirmationModal.modal('show');
135135
});
136-
136+
137137
$assignButton.on('click', function(e) {
138138
e.preventDefault();
139139
$assignContent.removeClass('hide');

resources/views/home/_report_content.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
@if(Auth::check() && $report->status == 'Assigned' && $report->user == Auth::user() || Auth::user()->hasPower('manage_reports'))
3535
<div class="alert alert-danger">Admins will be alerted by new comments, however to keep the conversation organised we ask that you please reply to the admin comment.</div>
36-
@comments([ 'model' => $report, 'perPage' => 5 ])
36+
@comments([ 'type' => 'Staff-User', 'model' => $report, 'perPage' => 5 ])
3737
@elseif($report->status == 'Closed')
3838
<div class="alert alert-danger"> You cannot comment on a closed ticket. </div>
3939
@else
@@ -48,4 +48,4 @@
4848
{!! $report->staff_comments !!}
4949
@endif
5050
</div></div>
51-
@endif
51+
@endif

0 commit comments

Comments
 (0)