Conditions | 26 |
Paths | 236 |
Total Lines | 113 |
Code Lines | 74 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
28 | public function __invoke(Request $request, CGlossaryRepository $repo, EntityManager $em): Response |
||
29 | { |
||
30 | $file = $request->files->get('file'); |
||
31 | $fileType = $request->request->get('file_type'); |
||
32 | $replace = $request->request->get('replace'); |
||
33 | $update = $request->request->get('update'); |
||
34 | $cid = $request->request->get('cid'); |
||
35 | $sid = $request->request->get('sid'); |
||
36 | |||
37 | $course = null; |
||
38 | $session = null; |
||
39 | if (0 !== $cid) { |
||
40 | $course = $em->getRepository(Course::class)->find($cid); |
||
41 | } |
||
42 | if (0 !== $sid) { |
||
43 | $session = $em->getRepository(Session::class)->find($sid); |
||
44 | } |
||
45 | |||
46 | if (!$file instanceof UploadedFile || !$file->isValid()) { |
||
47 | throw new BadRequestHttpException('Invalid file'); |
||
48 | } |
||
49 | |||
50 | $data = []; |
||
51 | if ('csv' === $fileType) { |
||
52 | if (($handle = fopen($file->getPathname(), 'r')) !== false) { |
||
53 | $header = fgetcsv($handle, 0, ';'); |
||
54 | while (($row = fgetcsv($handle, 0, ';')) !== false) { |
||
55 | $term = isset($row[0]) ? trim($row[0]) : ''; |
||
56 | $definition = isset($row[1]) ? trim($row[1]) : ''; |
||
57 | $data[$term] = $definition; |
||
58 | } |
||
59 | fclose($handle); |
||
60 | } |
||
61 | } elseif ('xls' === $fileType) { |
||
62 | $spreadsheet = IOFactory::load($file->getPathname()); |
||
63 | $sheet = $spreadsheet->getActiveSheet(); |
||
64 | $firstRow = true; |
||
65 | foreach ($sheet->getRowIterator() as $row) { |
||
66 | if ($firstRow) { |
||
67 | $firstRow = false; |
||
68 | |||
69 | continue; |
||
70 | } |
||
71 | $cellIterator = $row->getCellIterator(); |
||
72 | $cellIterator->setIterateOnlyExistingCells(false); |
||
73 | $rowData = []; |
||
74 | foreach ($cellIterator as $cell) { |
||
75 | $rowData[] = $cell->getValue(); |
||
76 | } |
||
77 | $term = isset($rowData[0]) ? utf8_decode(trim($rowData[0])) : ''; |
||
78 | $definition = isset($rowData[1]) ? utf8_decode(trim($rowData[1])) : ''; |
||
79 | $data[$term] = $definition; |
||
80 | } |
||
81 | } else { |
||
82 | throw new BadRequestHttpException('Invalid file type'); |
||
83 | } |
||
84 | |||
85 | if (empty($data)) { |
||
86 | throw new BadRequestHttpException('Invalid data'); |
||
87 | } |
||
88 | |||
89 | if ('true' === $replace) { |
||
90 | $qb = $repo->getResourcesByCourse($course, $session); |
||
91 | $allGlossaries = $qb->getQuery()->getResult(); |
||
92 | if ($allGlossaries) { |
||
93 | /** @var CGlossary $item */ |
||
94 | foreach ($allGlossaries as $item) { |
||
95 | $termToDelete = $repo->find($item->getIid()); |
||
96 | if (null !== $termToDelete) { |
||
97 | $repo->delete($termToDelete); |
||
98 | } |
||
99 | } |
||
100 | } |
||
101 | } |
||
102 | |||
103 | if ('true' === $update) { |
||
104 | foreach ($data as $termToUpdate => $descriptionToUpdate) { |
||
105 | // Check if the term already exists |
||
106 | $qb = $repo->getResourcesByCourse($course, $session) |
||
107 | ->andWhere('resource.name = :name') |
||
108 | ->setParameter('name', $termToUpdate) |
||
109 | ; |
||
110 | |||
111 | /** @var CGlossary $existingGlossaryTerm */ |
||
112 | $existingGlossaryTerm = $qb->getQuery()->getOneOrNullResult(); |
||
113 | if (null !== $existingGlossaryTerm) { |
||
114 | $existingGlossaryTerm->setDescription($descriptionToUpdate); |
||
115 | $repo->update($existingGlossaryTerm); |
||
116 | unset($data[$termToUpdate]); |
||
117 | } |
||
118 | } |
||
119 | } |
||
120 | |||
121 | foreach ($data as $term => $description) { |
||
122 | $qb = $repo->getResourcesByCourse($course, $session) |
||
123 | ->andWhere('resource.name = :name') |
||
124 | ->setParameter('name', $term) |
||
125 | ; |
||
126 | |||
127 | /** @var CGlossary $existingNewGlossaryTerm */ |
||
128 | $existingNewGlossaryTerm = $qb->getQuery()->getOneOrNullResult(); |
||
129 | if (!$existingNewGlossaryTerm) { |
||
130 | $newGlossary = (new CGlossary()) |
||
131 | ->setName($term) |
||
132 | ->setDescription($description) |
||
133 | ->setParent($course) |
||
134 | ->addCourseLink($course, $session) |
||
135 | ; |
||
136 | $repo->create($newGlossary); |
||
137 | } |
||
138 | } |
||
139 | |||
140 | return new Response(json_encode($data), Response::HTTP_OK, ['Content-Type' => 'application/json']); |
||
141 | } |
||
143 |