Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
| 1 | <?php |
||
| 38 | class AdminController extends AbstractController |
||
|
|
|||
| 39 | 6 | { |
|
| 40 | public function login(Application $app, Request $request) |
||
| 41 | 6 | { |
|
| 42 | if ($app->isGranted('ROLE_ADMIN')) { |
||
| 43 | return $app->redirect($app->url('admin_homepage')); |
||
| 44 | } |
||
| 45 | |||
| 46 | 6 | /* @var $form \Symfony\Component\Form\FormInterface */ |
|
| 47 | 6 | $builder = $app['form.factory'] |
|
| 48 | ->createNamedBuilder('', 'admin_login'); |
||
| 49 | 6 | ||
| 50 | $event = new EventArgs( |
||
| 51 | 6 | array( |
|
| 52 | 'builder' => $builder, |
||
| 53 | ), |
||
| 54 | $request |
||
| 55 | 6 | ); |
|
| 56 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_ADMIM_LOGIN_INITIALIZE, $event); |
||
| 57 | 6 | ||
| 58 | $form = $builder->getForm(); |
||
| 59 | 6 | ||
| 60 | 6 | return $app->render('login.twig', array( |
|
| 61 | 6 | 'error' => $app['security.last_error']($request), |
|
| 62 | 'form' => $form->createView(), |
||
| 63 | )); |
||
| 64 | } |
||
| 65 | 3 | ||
| 66 | public function index(Application $app, Request $request) |
||
| 67 | { |
||
| 68 | 3 | // install.phpのチェック. |
|
| 69 | 3 | if (isset($app['config']['eccube_install']) && $app['config']['eccube_install'] == 1) { |
|
| 70 | 3 | $file = $app['config']['root_dir'] . '/html/install.php'; |
|
| 71 | 3 | View Code Duplication | if (file_exists($file)) { |
| 72 | 3 | $message = $app->trans('admin.install.warning', array('installphpPath' => 'html/install.php')); |
|
| 73 | $app->addWarning($message, 'admin'); |
||
| 74 | 3 | } |
|
| 75 | 3 | $fileOnRoot = $app['config']['root_dir'] . '/install.php'; |
|
| 76 | View Code Duplication | if (file_exists($fileOnRoot)) { |
|
| 77 | $message = $app->trans('admin.install.warning', array('installphpPath' => 'install.php')); |
||
| 78 | $app->addWarning($message, 'admin'); |
||
| 79 | } |
||
| 80 | } |
||
| 81 | |||
| 82 | 3 | // 受注マスター検索用フォーム |
|
| 83 | 3 | $searchOrderBuilder = $app['form.factory'] |
|
| 84 | ->createBuilder('admin_search_order'); |
||
| 85 | 3 | // 商品マスター検索用フォーム |
|
| 86 | 3 | $searchProductBuilder = $app['form.factory'] |
|
| 87 | ->createBuilder('admin_search_product'); |
||
| 88 | 3 | // 会員マスター検索用フォーム |
|
| 89 | 3 | $searchCustomerBuilder = $app['form.factory'] |
|
| 90 | ->createBuilder('admin_search_customer'); |
||
| 91 | 3 | ||
| 92 | $event = new EventArgs( |
||
| 93 | 3 | array( |
|
| 94 | 3 | 'searchOrderBuilder' => $searchOrderBuilder, |
|
| 95 | 3 | 'searchProductBuilder' => $searchProductBuilder, |
|
| 96 | 'searchCustomerBuilder' => $searchCustomerBuilder, |
||
| 97 | ), |
||
| 98 | $request |
||
| 99 | 3 | ); |
|
| 100 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_ADMIM_INDEX_INITIALIZE, $event); |
||
| 101 | |||
| 102 | 3 | // 受注マスター検索用フォーム |
|
| 103 | $searchOrderForm = $searchOrderBuilder->getForm(); |
||
| 104 | |||
| 105 | 3 | // 商品マスター検索用フォーム |
|
| 106 | $searchProductForm = $searchProductBuilder->getForm(); |
||
| 107 | |||
| 108 | 3 | // 会員マスター検索用フォーム |
|
| 109 | $searchCustomerForm = $searchCustomerBuilder->getForm(); |
||
| 110 | |||
| 111 | /** |
||
| 112 | * 受注状況. |
||
| 113 | 3 | */ |
|
| 114 | 3 | $excludes = array(); |
|
| 115 | 3 | $excludes[] = $app['config']['order_pending']; |
|
| 116 | 3 | $excludes[] = $app['config']['order_processing']; |
|
| 117 | 3 | $excludes[] = $app['config']['order_cancel']; |
|
| 118 | $excludes[] = $app['config']['order_deliv']; |
||
| 119 | 3 | ||
| 120 | $event = new EventArgs( |
||
| 121 | 3 | array( |
|
| 122 | 'excludes' => $excludes, |
||
| 123 | ), |
||
| 124 | $request |
||
| 125 | 3 | ); |
|
| 126 | 3 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_ADMIM_INDEX_ORDER, $event); |
|
| 127 | $excludes = $event->getArgument('excludes'); |
||
| 128 | |||
| 129 | 3 | // 受注ステータスごとの受注件数. |
|
| 130 | $Orders = $this->getOrderEachStatus($app['orm.em'], $excludes); |
||
| 131 | 3 | // 受注ステータスの一覧. |
|
| 132 | $OrderStatuses = $this->findOrderStatus($app['orm.em'], $excludes); |
||
| 133 | |||
| 134 | /** |
||
| 135 | * 売り上げ状況 |
||
| 136 | 3 | */ |
|
| 137 | 3 | $excludes = array(); |
|
| 138 | 3 | $excludes[] = $app['config']['order_processing']; |
|
| 139 | 3 | $excludes[] = $app['config']['order_cancel']; |
|
| 140 | $excludes[] = $app['config']['order_pending']; |
||
| 141 | 3 | ||
| 142 | $event = new EventArgs( |
||
| 143 | 3 | array( |
|
| 144 | 'excludes' => $excludes, |
||
| 145 | ), |
||
| 146 | $request |
||
| 147 | 3 | ); |
|
| 148 | 3 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_ADMIM_INDEX_SALES, $event); |
|
| 149 | $excludes = $event->getArgument('excludes'); |
||
| 150 | |||
| 151 | 3 | // 今日の売上/件数 |
|
| 152 | $salesToday = $this->getSalesByDay($app['orm.em'], new \DateTime(), $excludes); |
||
| 153 | 3 | // 昨日の売上/件数 |
|
| 154 | $salesYesterday = $this->getSalesByDay($app['orm.em'], new \DateTime('-1 day'), $excludes); |
||
| 155 | 3 | // 今月の売上/件数 |
|
| 156 | $salesThisMonth = $this->getSalesByMonth($app['orm.em'], new \DateTime(), $excludes); |
||
| 157 | |||
| 158 | /** |
||
| 159 | * ショップ状況 |
||
| 160 | */ |
||
| 161 | 3 | // 在庫切れ商品数 |
|
| 162 | $countNonStockProducts = $this->countNonStockProducts($app['orm.em']); |
||
| 163 | 3 | // 本会員数 |
|
| 164 | $countCustomers = $this->countCustomers($app['orm.em']); |
||
| 165 | 3 | ||
| 166 | $event = new EventArgs( |
||
| 167 | 3 | array( |
|
| 168 | 3 | 'Orders' => $Orders, |
|
| 169 | 3 | 'OrderStatuses' => $OrderStatuses, |
|
| 170 | 3 | 'salesThisMonth' => $salesThisMonth, |
|
| 171 | 3 | 'salesToday' => $salesToday, |
|
| 172 | 3 | 'salesYesterday' => $salesYesterday, |
|
| 173 | 3 | 'countNonStockProducts' => $countNonStockProducts, |
|
| 174 | 'countCustomers' => $countCustomers, |
||
| 175 | ), |
||
| 176 | $request |
||
| 177 | 3 | ); |
|
| 178 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_ADMIM_INDEX_COMPLETE, $event); |
||
| 179 | 3 | ||
| 180 | 3 | return $app->render('index.twig', array( |
|
| 181 | 3 | 'searchOrderForm' => $searchOrderForm->createView(), |
|
| 182 | 3 | 'searchProductForm' => $searchProductForm->createView(), |
|
| 183 | 3 | 'searchCustomerForm' => $searchCustomerForm->createView(), |
|
| 184 | 3 | 'Orders' => $Orders, |
|
| 185 | 3 | 'OrderStatuses' => $OrderStatuses, |
|
| 186 | 3 | 'salesThisMonth' => $salesThisMonth, |
|
| 187 | 3 | 'salesToday' => $salesToday, |
|
| 188 | 3 | 'salesYesterday' => $salesYesterday, |
|
| 189 | 3 | 'countNonStockProducts' => $countNonStockProducts, |
|
| 190 | 'countCustomers' => $countCustomers, |
||
| 191 | )); |
||
| 192 | } |
||
| 193 | |||
| 194 | /** |
||
| 195 | * パスワード変更画面 |
||
| 196 | * |
||
| 197 | * @param Application $app |
||
| 198 | * @param Request $request |
||
| 199 | * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response |
||
| 200 | 3 | */ |
|
| 201 | public function changePassword(Application $app, Request $request) |
||
| 202 | 3 | { |
|
| 203 | 3 | $builder = $app['form.factory'] |
|
| 204 | ->createBuilder('admin_change_password'); |
||
| 205 | 3 | ||
| 206 | $event = new EventArgs( |
||
| 207 | 3 | array( |
|
| 208 | 'builder' => $builder, |
||
| 209 | ), |
||
| 210 | $request |
||
| 211 | 3 | ); |
|
| 212 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_ADMIM_CHANGE_PASSWORD_INITIALIZE, $event); |
||
| 213 | 3 | ||
| 214 | 3 | $form = $builder->getForm(); |
|
| 215 | $form->handleRequest($request); |
||
| 216 | 3 | ||
| 217 | 1 | if ($form->isSubmitted() && $form->isValid()) { |
|
| 218 | $password = $form->get('change_password')->getData(); |
||
| 219 | 1 | ||
| 220 | $Member = $app->user(); |
||
| 221 | 1 | ||
| 222 | 1 | $dummyMember = clone $Member; |
|
| 223 | 1 | $dummyMember->setPassword($password); |
|
| 224 | 1 | $salt = $dummyMember->getSalt(); |
|
| 225 | if (!isset($salt)) { |
||
| 226 | $salt = $app['eccube.repository.member']->createSalt(5); |
||
| 227 | $dummyMember->setSalt($salt); |
||
| 228 | } |
||
| 229 | 1 | ||
| 230 | $encryptPassword = $app['eccube.repository.member']->encryptPassword($dummyMember); |
||
| 231 | |||
| 232 | 1 | $Member |
|
| 233 | 1 | ->setPassword($encryptPassword) |
|
| 234 | ->setSalt($salt); |
||
| 235 | 1 | ||
| 236 | 1 | $status = $app['eccube.repository.member']->save($Member); |
|
| 237 | 1 | if ($status) { |
|
| 238 | $event = new EventArgs( |
||
| 239 | 1 | array( |
|
| 240 | 'form' => $form, |
||
| 241 | ), |
||
| 242 | $request |
||
| 243 | 1 | ); |
|
| 244 | $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_ADMIN_CHANGE_PASSWORD_COMPLETE, $event); |
||
| 245 | 1 | ||
| 246 | $app->addSuccess('admin.change_password.save.complete', 'admin'); |
||
| 247 | 1 | ||
| 248 | return $app->redirect($app->url('admin_change_password')); |
||
| 249 | } |
||
| 250 | |||
| 251 | $app->addError('admin.change_password.save.error', 'admin'); |
||
| 252 | } |
||
| 253 | 2 | ||
| 254 | 2 | return $app->render('change_password.twig', array( |
|
| 255 | 'form' => $form->createView(), |
||
| 256 | )); |
||
| 257 | } |
||
| 258 | |||
| 259 | /** |
||
| 260 | * 在庫なし商品の検索結果を表示する. |
||
| 261 | * |
||
| 262 | * @param Application $app |
||
| 263 | * @param Request $request |
||
| 264 | * @return \Symfony\Component\HttpFoundation\Response |
||
| 265 | 2 | */ |
|
| 266 | public function searchNonStockProducts(Application $app, Request $request) |
||
| 267 | { |
||
| 268 | 2 | // 商品マスター検索用フォーム |
|
| 269 | 2 | /* @var Form $form */ |
|
| 270 | 2 | $form = $app['form.factory'] |
|
| 271 | ->createBuilder('admin_search_product') |
||
| 272 | 2 | ->getForm(); |
|
| 273 | 2 | ||
| 274 | $form->handleRequest($request); |
||
| 275 | 2 | if ($form->isSubmitted() && $form->isValid()) { |
|
| 276 | // 在庫なし商品の検索条件をセッションに付与し, 商品マスタへリダイレクトする. |
||
| 277 | $searchData = array(); |
||
| 278 | $searchData['stock_status'] = Constant::DISABLED; |
||
| 279 | $session = $request->getSession(); |
||
| 280 | $session->set('eccube.admin.product.search', $searchData); |
||
| 281 | |||
| 282 | return $app->redirect($app->url('admin_product_page', array( |
||
| 283 | 'page_no' => 1, |
||
| 284 | 'status' => $app['config']['admin_product_stock_status']))); |
||
| 285 | } |
||
| 286 | |||
| 287 | return $app->redirect($app->url('admin_homepage')); |
||
| 288 | 2 | } |
|
| 289 | |||
| 290 | protected function findOrderStatus($em, array $excludes) |
||
| 303 | |||
| 304 | protected function getOrderEachStatus($em, array $excludes) |
||
| 331 | |||
| 332 | View Code Duplication | protected function getSalesByMonth($em, $dateTime, array $excludes) |
|
| 362 | |||
| 363 | View Code Duplication | protected function getSalesByDay($em, $dateTime, array $excludes) |
|
| 393 | |||
| 394 | protected function countNonStockProducts($em) |
||
| 408 | |||
| 409 | protected function countCustomers($em) |
||
| 426 | } |