1 | <?php |
||
35 | class ProductController |
||
|
|||
36 | { |
||
37 | |||
38 | private $title; |
||
39 | |||
40 | 15 | public function __construct() |
|
44 | |||
45 | 2 | public function index(Application $app, Request $request) |
|
201 | |||
202 | 13 | public function detail(Application $app, Request $request, $id) |
|
203 | { |
||
204 | 13 | $BaseInfo = $app['eccube.repository.base_info']->get(); |
|
205 | 13 | if ($BaseInfo->getNostockHidden() === Constant::ENABLED) { |
|
206 | $app['orm.em']->getFilters()->enable('nostock_hidden'); |
||
207 | } |
||
208 | |||
209 | /* @var $Product \Eccube\Entity\Product */ |
||
210 | 13 | $Product = $app['eccube.repository.product']->get($id); |
|
211 | 13 | if (!$request->getSession()->has('_security_admin') && $Product->getStatus()->getId() !== 1) { |
|
212 | 1 | throw new NotFoundHttpException(); |
|
213 | } |
||
214 | 13 | if (count($Product->getProductClasses()) < 1) { |
|
215 | throw new NotFoundHttpException(); |
||
216 | } |
||
217 | |||
218 | /* @var $builder \Symfony\Component\Form\FormBuilderInterface */ |
||
219 | 13 | $builder = $app['form.factory']->createNamedBuilder('', 'add_cart', null, array( |
|
220 | 13 | 'product' => $Product, |
|
221 | 'id_add_product_id' => false, |
||
222 | )); |
||
223 | |||
224 | 13 | $event = new EventArgs( |
|
225 | array( |
||
226 | 13 | 'builder' => $builder, |
|
227 | 13 | 'Product' => $Product, |
|
228 | ), |
||
229 | $request |
||
230 | ); |
||
231 | 13 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_PRODUCT_DETAIL_INITIALIZE, $event); |
|
232 | |||
233 | /* @var $form \Symfony\Component\Form\FormInterface */ |
||
234 | 13 | $form = $builder->getForm(); |
|
235 | |||
236 | 13 | if ($request->getMethod() === 'POST') { |
|
237 | 9 | $form->handleRequest($request); |
|
238 | |||
239 | 9 | if ($form->isValid()) { |
|
240 | 7 | $addCartData = $form->getData(); |
|
241 | 7 | if ($addCartData['mode'] === 'add_favorite') { |
|
242 | 2 | if ($app->isGranted('ROLE_USER')) { |
|
243 | 2 | $Customer = $app->user(); |
|
244 | 2 | $app['eccube.repository.customer_favorite_product']->addFavorite($Customer, $Product); |
|
245 | 2 | $app['session']->getFlashBag()->set('product_detail.just_added_favorite', $Product->getId()); |
|
246 | |||
247 | 2 | $event = new EventArgs( |
|
248 | array( |
||
249 | 2 | 'form' => $form, |
|
250 | 2 | 'Product' => $Product, |
|
251 | ), |
||
252 | $request |
||
253 | ); |
||
254 | 2 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_PRODUCT_DETAIL_FAVORITE, $event); |
|
255 | |||
256 | 2 | if ($event->getResponse() !== null) { |
|
257 | return $event->getResponse(); |
||
258 | } |
||
259 | |||
260 | 2 | return $app->redirect($app->url('product_detail', array('id' => $Product->getId()))); |
|
261 | } else { |
||
262 | // 非会員の場合、ログイン画面を表示 |
||
263 | // ログイン後の画面遷移先を設定 |
||
264 | $app->setLoginTargetPath($app->url('product_detail', array('id' => $Product->getId()))); |
||
265 | $app['session']->getFlashBag()->set('eccube.add.favorite', true); |
||
266 | return $app->redirect($app->url('mypage_login')); |
||
267 | } |
||
268 | 5 | } elseif ($addCartData['mode'] === 'add_cart') { |
|
269 | |||
270 | 5 | log_info('カート追加処理開始', array('product_id' => $Product->getId(), 'product_class_id' => $addCartData['product_class_id'], 'quantity' => $addCartData['quantity'])); |
|
271 | |||
272 | try { |
||
273 | 5 | $app['eccube.service.cart']->addProduct($addCartData['product_class_id'], $addCartData['quantity'])->save(); |
|
274 | 1 | } catch (CartException $e) { |
|
275 | 1 | log_info('カート追加エラー', array($e->getMessage())); |
|
276 | 1 | $app->addRequestError($e->getMessage()); |
|
277 | } |
||
278 | |||
279 | 5 | log_info('カート追加処理完了', array('product_id' => $Product->getId(), 'product_class_id' => $addCartData['product_class_id'], 'quantity' => $addCartData['quantity'])); |
|
280 | |||
281 | 5 | $event = new EventArgs( |
|
282 | array( |
||
283 | 5 | 'form' => $form, |
|
284 | 5 | 'Product' => $Product, |
|
285 | ), |
||
286 | $request |
||
287 | ); |
||
288 | 5 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_PRODUCT_DETAIL_COMPLETE, $event); |
|
289 | |||
290 | 5 | if ($event->getResponse() !== null) { |
|
291 | return $event->getResponse(); |
||
292 | } |
||
293 | |||
294 | 7 | return $app->redirect($app->url('cart')); |
|
295 | } |
||
296 | } |
||
297 | } else { |
||
298 | 11 | $addFavorite = $app['session']->getFlashBag()->get('eccube.add.favorite'); |
|
299 | 11 | if (!empty($addFavorite)) { |
|
300 | // お気に入り登録時にログインされていない場合、ログイン後にお気に入り追加処理を行う |
||
301 | if ($app->isGranted('ROLE_USER')) { |
||
302 | $Customer = $app->user(); |
||
303 | $app['eccube.repository.customer_favorite_product']->addFavorite($Customer, $Product); |
||
304 | $app['session']->getFlashBag()->set('product_detail.just_added_favorite', $Product->getId()); |
||
305 | } |
||
306 | } |
||
307 | } |
||
308 | |||
309 | 12 | $is_favorite = false; |
|
310 | 12 | if ($app->isGranted('ROLE_USER')) { |
|
311 | 2 | $Customer = $app->user(); |
|
312 | 2 | $is_favorite = $app['eccube.repository.customer_favorite_product']->isFavorite($Customer, $Product); |
|
313 | } |
||
314 | |||
315 | 12 | return $app->render('Product/detail.twig', array( |
|
316 | 12 | 'title' => $this->title, |
|
317 | 12 | 'subtitle' => $Product->getName(), |
|
318 | 12 | 'form' => $form->createView(), |
|
319 | 12 | 'Product' => $Product, |
|
320 | 12 | 'is_favorite' => $is_favorite, |
|
321 | )); |
||
322 | } |
||
323 | |||
324 | /** |
||
325 | * ページタイトルの設定 |
||
326 | * |
||
327 | * @param null|array $searchData |
||
328 | * @return str |
||
329 | */ |
||
330 | 2 | private function getPageTitle($searchData) |
|
340 | } |
||
341 |