2
2
using System . Threading . Tasks ;
3
3
using Microsoft . AspNetCore . Mvc ;
4
4
using Microsoft . EntityFrameworkCore ;
5
+ using SimplCommerce . Infrastructure . Data ;
5
6
using SimplCommerce . Module . Core . Extensions ;
7
+ using SimplCommerce . Module . Orders . Models ;
6
8
using SimplCommerce . Module . Reviews . Areas . Reviews . ViewModels ;
7
9
using SimplCommerce . Module . Reviews . Data ;
8
10
using SimplCommerce . Module . Reviews . Models ;
@@ -16,11 +18,16 @@ public class ReviewController : Controller
16
18
private const int DefaultPageSize = 25 ;
17
19
18
20
private readonly IReviewRepository _reviewRepository ;
21
+ private readonly IRepository < Order > _orderRepository ;
19
22
private readonly IWorkContext _workContext ;
20
23
21
- public ReviewController ( IReviewRepository reviewRepository , IWorkContext workContext )
24
+ public ReviewController (
25
+ IReviewRepository reviewRepository ,
26
+ IRepository < Order > orderRepository ,
27
+ IWorkContext workContext )
22
28
{
23
29
_reviewRepository = reviewRepository ;
30
+ _orderRepository = orderRepository ;
24
31
_workContext = workContext ;
25
32
}
26
33
@@ -31,6 +38,14 @@ public async Task<IActionResult> AddReview(ReviewForm model)
31
38
{
32
39
var user = await _workContext . GetCurrentUser ( ) ;
33
40
model . ReviewerName = user . FullName ; // Otherwise ReviewerName is null
41
+
42
+ if ( ! await _orderRepository . Query ( ) . AnyAsync ( o => o . CustomerId == user . Id && o . OrderItems . Any ( i => i . ProductId == model . EntityId ) ) )
43
+ {
44
+ ModelState . AddModelError ( "*" , "You can only review products you have purchased." ) ;
45
+
46
+ return PartialView ( "_ReviewForm" , model ) ;
47
+ }
48
+
34
49
var review = new Review
35
50
{
36
51
Rating = model . Rating ,
@@ -47,6 +62,7 @@ public async Task<IActionResult> AddReview(ReviewForm model)
47
62
48
63
return PartialView ( "_ReviewFormSuccess" , model ) ;
49
64
}
65
+
50
66
return PartialView ( "_ReviewForm" , model ) ;
51
67
}
52
68
0 commit comments