-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Dangerfile
220 lines (199 loc) · 8.21 KB
/
Dangerfile
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
### Helper functions
# Determine if any of the files were changed or deleted.
# Taken from samdmarshall/danger
def didModify(files_array)
files_array.each do |file_name|
if git.modified_files.include?(file_name) ||
git.deleted_files.include?(file_name)
return true
end
end
return false
end
# Determine if there are changes in files matching any of the
# path patterns provided.
def hasChangesIn(paths)
path_array = Array(paths)
path_array.each do |dir|
if !git.modified_files.grep(/#{dir}/).empty?
return true
end
end
return false
end
# Determine if any new files were added to paths matching any of the
# path patterns provided.
def hasAdditionsIn(paths)
path_array = Array(paths)
path_array.each do |dir|
if !git.added_files.grep(/#{dir}/).empty?
return true
end
end
return false
end
# Adds the provided labels to the current PR.
def addLabels(label_array)
issue_number = github.pr_json["number"]
repo_name = "firebase/firebase-ios-sdk"
github.api.add_labels_to_an_issue(repo_name, issue_number, label_array)
end
# Returns a list of all labels for a given PR. PRs that touch
# multiple directories may have multiple labels.
def labelsForModifiedFiles()
labels = []
labels.push("api: analytics") if @has_analytics_changes
labels.push("api: abtesting") if @has_abtesting_changes
labels.push("api: appcheck") if @has_appcheck_changes
labels.push("api: appdistribution") if @has_appdistribution_changes
labels.push("api: auth") if @has_auth_changes
labels.push("api: core") if @has_core_changes
labels.push("api: crashlytics") if @has_crashlytics_changes
labels.push("api: database") if @has_database_changes
labels.push("api: dynamiclinks") if @has_dynamiclinks_changes
labels.push("api: firestore") if @has_firestore_changes
labels.push("api: functions") if @has_functions_changes
labels.push("api: inappmessaging") if @has_inappmessaging_changes
labels.push("api: installations") if @has_installations_changes
labels.push("api: messaging") if @has_messaging_changes
labels.push("api: performance") if @has_performance_changes
labels.push("api: remoteconfig") if @has_remoteconfig_changes
labels.push("api: storage") if @has_storage_changes
labels.push("api: vertexai") if @has_vertexai_changes
labels.push("release-tooling") if @has_releasetooling_changes
labels.push("public-api-change") if @has_api_changes
return labels
end
### Definitions
# Label for any change that shouldn't have an accompanying CHANGELOG entry,
# including all changes that do not affect the compiled binary (i.e. script
# changes, test-only changes)
declared_trivial = github.pr_body.include? "#no-changelog"
# Whether or not there are pending changes to any changelog file.
has_changelog_changes = hasChangesIn(["CHANGELOG"])
# Whether or not the LICENSE file has been modified or deleted.
has_license_changes = didModify(["LICENSE"])
# A list of published Firebase products.
@product_list = [
"ABTesting",
"AppCheck",
"AppDistribution",
"Analytics",
"Authentication",
"Core",
"Crashlytics",
"Database",
"DynamicLinks",
"Firestore",
"Functions",
"InAppMessaging",
"Installations",
"Messaging",
"Performance",
"RemoteConfig",
"Storage",
"VertexAI"
]
## Product directories
@has_analytics_changes = hasChangesIn([
"FirebaseAnalyticsOnDeviceConversionWrapper",
"FirebaseAnalyticsWithoutAdIdSupportWrapper",
"FirebaseAnalyticsWrapper"
]) || didModify([
"FirebaseAnalytics.podspec",
"FirebaseAnalyticsOnDeviceConversion.podspec",
"GoogleAppMeasurement.podspec",
"GoogleAppMeasurementOnDeviceConversion.podspec"
])
@has_abtesting_changes = hasChangesIn("FirebaseABTesting")
@has_abtesting_api_changes = hasChangesIn("FirebaseABTesting/Sources/Public/")
@has_appcheck_changes = hasChangesIn("FirebaseAppCheck")
@has_appcheck_api_changes = hasChangesIn("FirebaseAppCheck/Sources/Public/")
@has_appdistribution_changes = hasChangesIn("FirebaseAppDistribution")
@has_appdistribution_api_changes = hasChangesIn("FirebaseAppDistribution/Sources/Public")
@has_auth_changes = hasChangesIn("FirebaseAuth")
@has_auth_api_changes = hasChangesIn("FirebaseAuth/Sources/Public/")
@has_core_changes = hasChangesIn([
"FirebaseCore",
"CoreOnly/"])
@has_core_api_changes = hasChangesIn("FirebaseCore/Sources/Public/")
@has_crashlytics_changes = hasChangesIn("Crashlytics")
@has_crashlytics_api_changes = hasChangesIn("Crashlytics/Crashlytics/Public/")
@has_database_changes = hasChangesIn("FirebaseDatabase")
@has_database_api_changes = hasChangesIn("FirebaseDatabase/Sources/Public/")
@has_dynamiclinks_changes = hasChangesIn("FirebaseDynamicLinks")
@has_dynamiclinks_api_changes = hasChangesIn("FirebaseDynamicLinks/Sources/Public/")
@has_firestore_changes = hasChangesIn(["Firestore/", "FirebaseFirestore.podspec"])
@has_firestore_api_changes = hasChangesIn("Firestore/Source/Public/")
@has_functions_changes = hasChangesIn(["FirebaseFunctions"])
@has_functions_api_changes = hasChangesIn("FirebaseFunctions/Sources/Public/")
@has_inappmessaging_changes = hasChangesIn(["FirebaseInAppMessaging"])
@has_inappmessaging_api_changes = hasChangesIn(["FirebaseInAppMessaging/Sources/Public/"])
@has_installations_changes = hasChangesIn("FirebaseInstallations")
@has_installations_api_changes = hasChangesIn("FirebaseInstallations/Source/Library/Public/")
@has_messaging_changes = hasChangesIn("FirebaseMessaging")
@has_messaging_api_changes = hasChangesIn("FirebaseMessaging/Sources/Public/")
@has_performance_changes = hasChangesIn("FirebasePerformance")
@has_performance_api_changes = hasChangesIn("FirebasePerformance/Sources/Public/")
@has_remoteconfig_changes = hasChangesIn("FirebaseRemoteConfig")
@has_remoteconfig_api_changes = hasChangesIn("FirebaseRemoteConfig/Sources/Public/")
@has_storage_changes = hasChangesIn("FirebaseStorage")
@has_vertexai_changes = hasChangesIn("FirebaseVertexAI")
@has_releasetooling_changes = hasChangesIn("ReleaseTooling/")
@has_public_additions = hasAdditionsIn("Public/")
@has_umbrella_changes =
@product_list.reduce(false) { |accum, product| accum || hasChangesIn("Firebase#{product}.h") }
# Convenient flag for all API changes.
@has_api_changes = @has_abtesting_api_changes ||
@has_appcheck_api_changes ||
@has_auth_api_changes ||
@has_appdistribution_api_changes ||
@has_core_api_changes ||
@has_crashlytics_api_changes ||
@has_database_api_changes ||
@has_dynamiclinks_api_changes ||
@has_firestore_api_changes ||
@has_functions_api_changes ||
@has_inappmessaging_api_changes ||
@has_installations_api_changes ||
@has_messaging_api_changes ||
@has_performance_api_changes ||
@has_remoteconfig_api_changes ||
@has_storage_api_changes ||
@has_gdt_api_changes
# A FileList containing ObjC, ObjC++ or C++ changes.
sdk_changes = (git.modified_files +
git.added_files +
git.deleted_files).select do |line|
line.end_with?(".h") ||
line.end_with?(".m") ||
line.end_with?(".mm") ||
line.end_with?(".cc") ||
line.end_with?(".swift")
end
# Whether or not the PR has modified SDK source files.
has_sdk_changes = !sdk_changes.empty?
### Actions
# Warn if a changelog is left out on a non-trivial PR that has modified
# SDK source files (podspec, markdown, etc changes are excluded).
if has_sdk_changes
if !has_changelog_changes && !declared_trivial
warning = "Did you forget to add a changelog entry? (Add #no-changelog"\
" to the PR description to silence this warning.)"
warn(warning)
end
end
# Warn if a new public header file is added but no umbrella header changes
# are detected. Prevents regression of #10301
if @has_public_additions && !@has_umbrella_changes
error = "New public headers were added, "\
"did you remember to add them to the umbrella header?"
warn(error)
end
# Error on license edits
fail("LICENSE changes are explicitly disallowed.") if has_license_changes
# Label PRs based on diff files
suggested_labels = labelsForModifiedFiles()
if !suggested_labels.empty?
addLabels(suggested_labels)
end