This repository was archived by the owner on May 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMailContentMiner.php
184 lines (157 loc) · 5.72 KB
/
MailContentMiner.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
namespace SolrKDE;
require_once 'RepositoryInformation.php';
class MailContentMiner {
public static function getProjectType ($sourceMail) {
$project = self::getProject($sourceMail);
$repoInfo = new RepositoryInformation();
$repoInfo->loadRepositoryData();
$plasma = $repoInfo->getPlasmaProjects();
$apps = $repoInfo->getApplicationProjects();
$frameworks = $repoInfo->getFrameworksProjects();
if( array_search($project, $plasma) ) {
return "Plasma";
}
else if( $project == "translation" ) {
return "Translation";
}
else if( $project == "www" ) {
return "www";
}
else if( array_search($project, $apps) ) {
return "Applications";
}
else if( array_search($project, $frameworks) ) {
return "Frameworks";
}
else {
return "Other";
}
return "Other";
}
public static function getClientIp($sourceMail) {
$ClientIp = "";
if ( preg_match_all ('/client-ip=([^;]+);/', $sourceMail->getReceived() ,$ClientIpArray) == 1) {
$ClientIp = $ClientIpArray[1][0];
}
else {
$ClientIp = "";
}
return $ClientIp;
}
public static function getTranslationLanguage($sourceMail) {
$languageCode="";
$language="";
$subject= self::getSubject ($sourceMail);
$repoInfo = new RepositoryInformation();
$repoInfo->loadRepositoryData();
$languages = $repoInfo->getLanguages();
if (self::getIstranslation($sourceMail)) {
if ( preg_match_all ('/.*(?:l10n-kf5|l10n-kde4)\/([^\/]+)\//',$subject,$languageArray) == 1) {
$languageCode = $languageArray[1][0];
}
if ( preg_match_all ('/.*(?:l10n-support\/)([^\/]+)\/summit/',$subject,$languageArray) == 1) {
$languageCode = ($languageArray[1][0] != "templates") ? $languageArray[1][0] : "";
}
}
if( array_key_exists($languageCode,$languages) ) {
$language = $languages[$languageCode];
}
else {
$language = "";
}
return $language;
}
public static function getId($sourceMail) {
return hash("md5",$sourceMail->getFileName());
}
public static function getSubject( $sourceMail) {
return $sourceMail->getSubject();
}
public static function getProject ($sourceMail) {
$project = "";
$subject = $sourceMail->getSubject();
if ( preg_match_all ('/^\[([^\]\/]+)(?:\]|\/)/',$subject, $projectArray) == 1) {
$project = $projectArray[1][0];
}
else if ( preg_match_all ('/(.*l10n.*)/',$subject, $projectArray) == 1) {
$project = "translation";
}
else if ( preg_match_all ('/(.*www\/*)/',$subject, $projectArray) == 1) {
$project = "www";
}
else {
$project = "No project found";
}
return $project;
}
public static function getFrom ($sourceMail) {
$behalfOf=self::getBehalfOf($sourceMail);
if(!empty($behalfOf)) {
return $behalfOf;
}
return rtrim(str_replace( "<[email protected]>" , "", iconv_mime_decode($sourceMail->getFrom(),0,"UTF-8")));
}
public static function getAuthorInitials ($sourceMail) {
$from = trim(self::getFrom($sourceMail));
if($from != "l10n daemon script") {
$initialsArray = preg_split("/\s+/", $from);
$initials = "";
foreach ( $initialsArray as $word) {
$initial = trim(substr($word, 0, 1));
if(!empty($initial)) {
$initials = empty($initials) ? $initial."." : $initials." ".$initial .".";
}
}
return $initials;
}
else {
return $from;
}
}
public static function getCommitDate ($sourceMail) {
$commitDate = date_create($sourceMail->getMailDate());
$commitdateFormatted = date_format($commitDate, 'Y-m-d\TH:i:s\Z');
return $commitdateFormatted;
}
public static function getMessage($sourceMail){
return $sourceMail->getContent();
}
public static function getBug($sourceMail) {
$bug = "";
if ( preg_match_all ('/BUG:\s*([0-9]+)/', self::getMessage($sourceMail) ,$bugArray) == 1) {
$bug = $bugArray[1][0];
}
else {
$bug = "";
}
return $bug;
}
public static function getFixesBug($sourceMail) {
return (self::getBug($sourceMail) != "") ? true : false;
}
public static function getRevision($sourceMail) {
$revision = "";
if ( preg_match_all ('/Differential Revision:\s*(.+)\s/', self::getMessage($sourceMail),$revisionArray) == 1) {
$revision = $revisionArray[1][0];
}
else {
$revision = "";
}
return $revision;
}
public static function getIsRevision($sourceMail) {
return (self::getRevision($sourceMail) != "") ? true : false;
}
public static function getIstranslation($sourceMail) {
return (self::getProject($sourceMail) == "translation") ? true : false;
}
public static function getBehalfOf($sourceMail) {
if ( preg_match_all ('/[bB]ehalf\s*[oO]f\s*(.+)/', self::getMessage($sourceMail),$behalfOfArray) == 1) {
$urlBehalfOf = str_replace( "=" , "%", $behalfOfArray[1][0]);
return rtrim(urldecode($urlBehalfOf),'.');
}
return "";
}
}
?>