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 |
||
40 | class Settings extends Controller { |
||
41 | /** @var \OCP\IConfig */ |
||
42 | protected $config; |
||
43 | |||
44 | /** @var \OCP\Security\ISecureRandom */ |
||
45 | protected $random; |
||
46 | |||
47 | /** @var \OCP\IURLGenerator */ |
||
48 | protected $urlGenerator; |
||
49 | |||
50 | /** @var IManager */ |
||
51 | protected $manager; |
||
52 | |||
53 | /** @var \OCA\Activity\UserSettings */ |
||
54 | protected $userSettings; |
||
55 | |||
56 | /** @var \OCP\IL10N */ |
||
57 | protected $l10n; |
||
58 | |||
59 | /** @var string */ |
||
60 | protected $user; |
||
61 | |||
62 | /** |
||
63 | * constructor of the controller |
||
64 | * |
||
65 | * @param string $appName |
||
66 | * @param IRequest $request |
||
67 | * @param IConfig $config |
||
68 | * @param ISecureRandom $random |
||
69 | * @param IURLGenerator $urlGenerator |
||
70 | * @param IManager $manager |
||
71 | * @param UserSettings $userSettings |
||
72 | * @param IL10N $l10n |
||
73 | * @param CurrentUser $currentUser |
||
74 | */ |
||
75 | 2 | View Code Duplication | public function __construct($appName, |
93 | |||
94 | /** |
||
95 | * @NoAdminRequired |
||
96 | * |
||
97 | * @param int $notify_setting_batchtime |
||
98 | * @param bool $notify_setting_self |
||
99 | * @param bool $notify_setting_selfemail |
||
100 | * @return DataResponse |
||
101 | */ |
||
102 | public function personal( |
||
103 | $notify_setting_batchtime = UserSettings::EMAIL_SEND_HOURLY, |
||
104 | $notify_setting_self = false, |
||
105 | $notify_setting_selfemail = false) { |
||
106 | |||
107 | $settings = $this->manager->getSettings(); |
||
108 | View Code Duplication | foreach ($settings as $setting) { |
|
109 | if ($setting->canChangeStream()) { |
||
110 | $this->config->setUserValue( |
||
111 | $this->user, 'activity', |
||
112 | 'notify_stream_' . $setting->getIdentifier(), |
||
113 | (int) $this->request->getParam($setting->getIdentifier() . '_stream', false) |
||
114 | ); |
||
115 | } |
||
116 | |||
117 | if ($setting->canChangeMail()) { |
||
118 | $this->config->setUserValue( |
||
119 | $this->user, 'activity', |
||
120 | 'notify_email_' . $setting->getIdentifier(), |
||
121 | (int) $this->request->getParam($setting->getIdentifier() . '_email', false) |
||
122 | ); |
||
123 | } |
||
124 | } |
||
125 | |||
126 | $email_batch_time = 3600; |
||
127 | View Code Duplication | if ($notify_setting_batchtime === UserSettings::EMAIL_SEND_DAILY) { |
|
128 | $email_batch_time = 3600 * 24; |
||
129 | } else if ($notify_setting_batchtime === UserSettings::EMAIL_SEND_WEEKLY) { |
||
130 | $email_batch_time = 3600 * 24 * 7; |
||
131 | } else if ($notify_setting_batchtime === UserSettings::EMAIL_SEND_ASAP) { |
||
132 | $email_batch_time = 0; |
||
133 | } |
||
134 | |||
135 | $this->config->setUserValue( |
||
136 | $this->user, 'activity', |
||
137 | 'notify_setting_batchtime', |
||
138 | $email_batch_time |
||
139 | ); |
||
140 | $this->config->setUserValue( |
||
141 | $this->user, 'activity', |
||
142 | 'notify_setting_self', |
||
143 | (int) $notify_setting_self |
||
144 | ); |
||
145 | $this->config->setUserValue( |
||
146 | $this->user, 'activity', |
||
147 | 'notify_setting_selfemail', |
||
148 | (int) $notify_setting_selfemail |
||
149 | ); |
||
150 | |||
151 | return new DataResponse(array( |
||
152 | 'data' => array( |
||
153 | 'message' => (string) $this->l10n->t('Your settings have been updated.'), |
||
154 | ), |
||
155 | )); |
||
156 | } |
||
157 | |||
158 | /** |
||
159 | * @param int $notify_setting_batchtime |
||
160 | * @param bool $notify_setting_self |
||
161 | * @param bool $notify_setting_selfemail |
||
162 | * @return DataResponse |
||
163 | */ |
||
164 | public function admin( |
||
165 | $notify_setting_batchtime = UserSettings::EMAIL_SEND_HOURLY, |
||
166 | $notify_setting_self = false, |
||
167 | $notify_setting_selfemail = false) { |
||
168 | |||
169 | $settings = $this->manager->getSettings(); |
||
170 | View Code Duplication | foreach ($settings as $setting) { |
|
171 | if ($setting->canChangeStream()) { |
||
172 | $this->config->setAppValue( |
||
173 | 'activity', |
||
174 | 'notify_stream_' . $setting->getIdentifier(), |
||
175 | (int) $this->request->getParam($setting->getIdentifier() . '_stream', false) |
||
176 | ); |
||
177 | } |
||
178 | |||
179 | if ($setting->canChangeMail()) { |
||
180 | $this->config->setAppValue( |
||
181 | 'activity', |
||
182 | 'notify_email_' . $setting->getIdentifier(), |
||
183 | (int) $this->request->getParam($setting->getIdentifier() . '_email', false) |
||
184 | ); |
||
185 | } |
||
186 | } |
||
187 | |||
188 | $email_batch_time = 3600; |
||
189 | View Code Duplication | if ($notify_setting_batchtime === UserSettings::EMAIL_SEND_DAILY) { |
|
190 | $email_batch_time = 3600 * 24; |
||
191 | } else if ($notify_setting_batchtime === UserSettings::EMAIL_SEND_WEEKLY) { |
||
192 | $email_batch_time = 3600 * 24 * 7; |
||
193 | } else if ($notify_setting_batchtime === UserSettings::EMAIL_SEND_ASAP) { |
||
194 | $email_batch_time = 0; |
||
195 | } |
||
196 | |||
197 | $this->config->setAppValue( |
||
198 | 'activity', |
||
199 | 'notify_setting_batchtime', |
||
200 | $email_batch_time |
||
201 | ); |
||
202 | $this->config->setAppValue( |
||
203 | 'activity', |
||
204 | 'notify_setting_self', |
||
205 | (int) $notify_setting_self |
||
206 | ); |
||
207 | $this->config->setAppValue( |
||
208 | 'activity', |
||
209 | 'notify_setting_selfemail', |
||
210 | (int) $notify_setting_selfemail |
||
211 | ); |
||
212 | |||
213 | return new DataResponse(array( |
||
214 | 'data' => array( |
||
215 | 'message' => (string) $this->l10n->t('Settings have been updated.'), |
||
216 | ), |
||
217 | )); |
||
218 | } |
||
219 | |||
220 | /** |
||
221 | * @NoAdminRequired |
||
222 | * |
||
223 | * @param string $enable 'true' if the feed is enabled |
||
224 | * @return DataResponse |
||
225 | */ |
||
226 | public function feed($enable) { |
||
250 | } |
||
251 |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.