Total Complexity | 57 |
Total Lines | 262 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
Complex classes like GContactToVCard often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use GContactToVCard, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
16 | class GContactToVCard extends VCardContact |
||
17 | { |
||
18 | /** @var int options to control the export */ |
||
19 | protected int $iOptions = 0; |
||
20 | /** @var array<string,string> group maping resourceName -> groupName */ |
||
21 | protected array $aGroups = []; |
||
22 | /** @var string surrogate category name to use for 'starred' contacts |
||
23 | * (-> contacts belonging to the predefined system group 'starred') */ |
||
24 | protected string $strStarredCategory = ''; |
||
25 | |||
26 | /** |
||
27 | * Constructor. |
||
28 | * @param int $iOptions |
||
29 | */ |
||
30 | protected function __construct(array $aGroupNames, int $iOptions) |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Sets the category to use for 'starred' contacts. |
||
38 | * @param string $strStarredCategory |
||
39 | */ |
||
40 | public function setStarredCategory(string $strStarredCategory) : void |
||
41 | { |
||
42 | $this->strStarredCategory = $strStarredCategory; |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * Load data from given Google contact. |
||
47 | * @param GContact $oGContact |
||
48 | * @return bool |
||
49 | */ |
||
50 | public function loadGContact(GContact $oGContact) : bool |
||
51 | { |
||
52 | // GContact::PF_NAMES is defined as singleton so it must exist exactly one time |
||
53 | if (isset($oGContact[GContact::PF_NAMES]) && is_array($oGContact[GContact::PF_NAMES]) && count($oGContact[GContact::PF_NAMES]) == 1) { |
||
54 | // PF_NAMES is always a singleton |
||
55 | $this->strLastName = $oGContact[GContact::PF_NAMES][0]['familyName'] ?? ''; |
||
56 | $this->strFirstName = $oGContact[GContact::PF_NAMES][0]['givenName'] ?? ''; |
||
57 | $this->strPrefix = $oGContact[GContact::PF_NAMES][0]['honorificPrefix'] ?? ''; |
||
58 | $this->strSuffix = $oGContact[GContact::PF_NAMES][0]['honorificSuffix'] ?? ''; |
||
59 | } else { |
||
60 | return false; |
||
61 | } |
||
62 | |||
63 | $this->readAddresses($oGContact); |
||
64 | $this->readPhoneNumbers($oGContact); |
||
65 | $this->readEmailAddresses($oGContact); |
||
66 | $this->readHomepages($oGContact); |
||
67 | $this->readOrganization($oGContact); |
||
68 | $this->readMiscellaneous($oGContact); |
||
69 | $this->readPhoto($oGContact); |
||
70 | |||
71 | return true; |
||
72 | } |
||
73 | |||
74 | /** |
||
75 | * Reads the address data. |
||
76 | * Values taken from the GContact: |
||
77 | * - type |
||
78 | * - streetAddress |
||
79 | * - postalCode |
||
80 | * - city |
||
81 | * - POBox |
||
82 | * - ext. address |
||
83 | * - country / countryCode |
||
84 | * @param GContact $oGContact |
||
85 | */ |
||
86 | protected function readAddresses(GContact $oGContact) : void |
||
87 | { |
||
88 | if (isset($oGContact[GContact::PF_ADDRESSES]) && is_array($oGContact[GContact::PF_ADDRESSES])) { |
||
89 | foreach ($oGContact[GContact::PF_ADDRESSES] as $aAddress) { |
||
90 | $oAddress = new VCardAddress(); |
||
91 | $oAddress->setType($this->getAddressTypeForVCard($aAddress['type'] ?? '')); |
||
92 | $oAddress->setStr($aAddress['streetAddress'] ?? ''); |
||
93 | $oAddress->setPostcode($aAddress['postalCode'] ?? ''); |
||
94 | $oAddress->setCity($aAddress['city'] ?? ''); |
||
95 | $oAddress->setPOBox($aAddress['poBox'] ?? ''); |
||
96 | $oAddress->setExtAddress($aAddress['extendedAddress'] ?? ''); |
||
97 | if (isset($aAddress['country'])) { |
||
98 | $oAddress->setCountry($aAddress['country']); |
||
99 | } else { |
||
100 | $oAddress->setCountry($aAddress['countryCode'] ?? ''); |
||
101 | } |
||
102 | $this->addAddress($oAddress, $oGContact->isPrimaryItem($aAddress)); |
||
103 | } |
||
104 | } |
||
105 | } |
||
106 | |||
107 | /** |
||
108 | * Reads phone numbers. |
||
109 | * @param GContact $oGContact |
||
110 | */ |
||
111 | protected function readPhoneNumbers(GContact $oGContact) : void |
||
112 | { |
||
113 | if (isset($oGContact[GContact::PF_PHONE_NUMBERS]) && is_array($oGContact[GContact::PF_PHONE_NUMBERS])) { |
||
114 | foreach ($oGContact[GContact::PF_PHONE_NUMBERS] as $aPhone) { |
||
115 | $strType = $this->getPhoneTypeForVCard($aPhone['type'] ?? ''); |
||
116 | $this->addPhone($aPhone['value'] ?? '', $strType, $oGContact->isPrimaryItem($aPhone)); |
||
117 | } |
||
118 | } |
||
119 | } |
||
120 | |||
121 | /** |
||
122 | * Reads email addresses. |
||
123 | * Since the used VCard library don't support the different possible types of |
||
124 | * email addresses (home, work, blog,...), we ignore the type |
||
125 | * @param GContact $oGContact |
||
126 | */ |
||
127 | protected function readEmailAddresses(GContact $oGContact) : void |
||
128 | { |
||
129 | if (isset($oGContact[GContact::PF_EMAIL_ADDRESSES]) && is_array($oGContact[GContact::PF_EMAIL_ADDRESSES])) { |
||
130 | foreach ($oGContact[GContact::PF_EMAIL_ADDRESSES] as $aMail) { |
||
131 | $this->addEMail($aMail['value'] ?? '', $oGContact->isPrimaryItem($aMail)); |
||
132 | } |
||
133 | } |
||
134 | } |
||
135 | |||
136 | /** |
||
137 | * Reads homepage/url data. |
||
138 | * Since the used VCard library don't support the different possible types of |
||
139 | * homepages (home, work, blog,...), we ignore the type. |
||
140 | * @param GContact $oGContact |
||
141 | */ |
||
142 | protected function readHomepages(GContact $oGContact) : void |
||
143 | { |
||
144 | if (isset($oGContact[GContact::PF_URLS]) && is_array($oGContact[GContact::PF_URLS])) { |
||
145 | foreach ($oGContact[GContact::PF_URLS] as $aURL) { |
||
146 | $this->addHomepage($aURL['value'] ?? ''); |
||
147 | } |
||
148 | } |
||
149 | } |
||
150 | |||
151 | /** |
||
152 | * Reads organization related data. |
||
153 | * @param GContact $oGContact |
||
154 | */ |
||
155 | protected function readOrganization(GContact $oGContact) : void |
||
156 | { |
||
157 | if (isset($oGContact[GContact::PF_ORGANIZATIONS]) && is_array($oGContact[GContact::PF_ORGANIZATIONS]) && count($oGContact[GContact::PF_ORGANIZATIONS]) > 0 ) { |
||
158 | // use first org. contained... |
||
159 | $aOrg = $oGContact[GContact::PF_ORGANIZATIONS][0]; |
||
160 | |||
161 | $this->setOrganisation($aOrg['name'] ?? ''); |
||
162 | $this->setPosition($aOrg['title'] ?? ''); |
||
163 | $this->setSection($aOrg['department'] ?? ''); |
||
164 | } |
||
165 | } |
||
166 | |||
167 | /** |
||
168 | * Reads photo from GContact. |
||
169 | * If any custom photo is set, the first of that is used for the portrait. |
||
170 | * If no custom photo found, the first conaitned deafult photo (created by google) is |
||
171 | * set as VCard portrait, if configured in the options. |
||
172 | * @param GContact $oGContact |
||
173 | */ |
||
174 | protected function readPhoto(GContact $oGContact) : void |
||
175 | { |
||
176 | if (($this->iOptions & VCardExport::OPT_EXPORT_PHOTO) !== 0) { |
||
177 | if (isset($oGContact[GContact::PF_PHOTOS]) && is_array($oGContact[GContact::PF_PHOTOS])) { |
||
178 | // in the first loop we search for the first custom set photo... |
||
179 | foreach ($oGContact[GContact::PF_PHOTOS] as $aPhoto) { |
||
180 | if (isset($aPhoto['url']) && (!isset($aPhoto['default']) || $aPhoto['default'] == false)) { |
||
181 | $this->setPortraitFile($aPhoto['url']); |
||
182 | return; |
||
183 | } |
||
184 | } |
||
185 | // ... and if configured, we look in a second loop for the first default created photo... |
||
186 | if (($this->iOptions & VCardExport::OPT_USE_DEFAULT_PHOTO) !== 0) { |
||
187 | foreach ($oGContact[GContact::PF_PHOTOS] as $aPhoto) { |
||
188 | if (isset($aPhoto['url'])) { |
||
189 | $this->setPortraitFile($aPhoto['url']); |
||
190 | return; |
||
191 | } |
||
192 | } |
||
193 | } |
||
194 | } |
||
195 | } |
||
196 | } |
||
197 | |||
198 | /** |
||
199 | * Reads the group membership as VCard categories. |
||
200 | * Only works, if group mapping is available or at least the 'starred' membership |
||
201 | * should be mapped to a category. |
||
202 | * @param GContact $oGContact |
||
203 | */ |
||
204 | protected function readGroups(GContact $oGContact) : void |
||
205 | { |
||
206 | if (count($this->aGroups) > 0 || !empty($this->strStarredCategory)) { |
||
207 | if (isset($oGContact[GContact::PF_MEMBERSHIPS]) && is_array($oGContact[GContact::PF_MEMBERSHIPS])) { |
||
208 | foreach ($oGContact[GContact::PF_MEMBERSHIPS] as $aMembership) { |
||
209 | if (isset($aMembership['contactGroupMembership'])) { |
||
210 | $strResourceName = $aMembership['contactGroupMembership']['contactGroupResourceName'] ?? ''; |
||
211 | if (!empty($this->strStarredCategory) && $strResourceName == 'contactGroups/starred') { |
||
212 | $this->addCategory($this->strStarredCategory); |
||
213 | } else if (isset($this->aGroups[$strResourceName])) { |
||
214 | $this->addCategory($this->aGroups[$strResourceName]); |
||
215 | } |
||
216 | } |
||
217 | } |
||
218 | } |
||
219 | } |
||
220 | } |
||
221 | |||
222 | /** |
||
223 | * Reads miscealaneous data and set it to the VCard contact. |
||
224 | * - nickname |
||
225 | * - biography -> note |
||
226 | * - occupations -> role |
||
227 | * - date of birth |
||
228 | * - gender |
||
229 | * @param GContact $oGContact |
||
230 | */ |
||
231 | protected function readMiscellaneous(GContact $oGContact) : void |
||
240 | } |
||
241 | |||
242 | /** |
||
243 | * Get the VCard address type from the GContact address type. |
||
244 | * 'home' and 'work' is converted to 'HOME' and 'WORK', for 'other' |
||
245 | * the VCard type is left empty. |
||
246 | * @param string $strGType |
||
247 | * @return string |
||
248 | */ |
||
249 | private function getAddressTypeForVCard($strGType) : string |
||
258 | } |
||
259 | |||
260 | /** |
||
261 | * Get the VCard phone type from the GContact phone type. |
||
262 | * 'home', 'mobile' and 'work' is converted to 'HOME', 'CELL' and 'WORK', all |
||
263 | * other types are set to 'VOICE'. |
||
264 | * @param string $strVCType |
||
265 | * @return string |
||
266 | */ |
||
267 | private function getPhoneTypeForVCard(string $strGType) : string |
||
278 | } |
||
279 | } |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths