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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
|
# File 'src/clients/add-on_auto.rb', line 19
def main
Yast.import "Pkg"
Yast.import "UI"
textdomain "add-on"
Builtins.y2milestone("----------------------------------------")
Builtins.y2milestone("add-on auto started")
Yast.import "AddOnProduct"
Yast.import "Progress"
Yast.import "AutoinstSoftware"
Yast.import "PackageCallbacks"
Yast.import "Label"
Yast.import "AutoinstGeneral"
Yast.import "PackageLock"
Yast.import "Installation"
Yast.import "String"
Yast.include self, "add-on/add-on-workflow.rb"
@progress_orig = Progress.set(false)
@ret = nil
@func = ""
@param = {}
if Ops.greater_than(Builtins.size(WFM.Args), 0) &&
Ops.is_string?(WFM.Args(0))
@func = Convert.to_string(WFM.Args(0))
if Ops.greater_than(Builtins.size(WFM.Args), 1) &&
Ops.is_map?(WFM.Args(1))
@param = Convert.to_map(WFM.Args(1))
end
end
Builtins.y2debug("func=%1", @func)
Builtins.y2debug("param=%1", @param)
if @func == "Import"
@ret = AddOnProduct.Import(
Convert.convert(@param, :from => "map", :to => "map <string, any>")
)
elsif @func == "Summary"
@ret = "<ul>\n"
Builtins.foreach(AddOnProduct.add_on_products) do |prod|
@ret = Ops.add(
Convert.to_string(@ret),
Builtins.sformat(
_("<li>Media: %1, Path: %2, Product: %3</li>\n"),
Ops.get_string(prod, "media_url", ""),
Ops.get_string(prod, "product_dir", "/"),
Ops.get_string(prod, "product", "")
)
)
end
@ret = Ops.add(Convert.to_string(@ret), "</ul>")
elsif @func == "GetModified"
@ret = AddOnProduct.modified
elsif @func == "SetModified"
AddOnProduct.modified = true
@ret = true
elsif @func == "Reset"
AddOnProduct.add_on_products = []
@ret = {}
elsif @func == "Change"
Wizard.CreateDialog
AutoinstSoftware.pmInit
PackageCallbacks.InitPackageCallbacks
@ret = RunAddOnMainDialog(
false,
true,
true,
Label.BackButton,
Label.OKButton,
Label.CancelButton,
false
)
UI.CloseDialog
return deep_copy(@ret)
elsif @func == "Export"
@ret = AddOnProduct.Export
elsif @func == "Write"
@sources = {}
AddOnProduct.add_on_products.each do |prod|
media = Ops.get_string(prod, "media_url", "")
pth = Ops.get_string(prod, "product_dir", "/")
if String.StartsWith(media, "relurl://")
base = AddOnProduct.GetBaseProductURL
media = AddOnProduct.GetAbsoluteURL(base, media)
Builtins.y2milestone("relurl changed to %1", media)
end
Ops.set(@sources, media, Ops.get(@sources, media, {}))
AddOnProduct.SetSignatureCallbacks(
Ops.get_string(prod, "product", "")
)
srcid = -1
begin
url = AddOnProduct.SetRepoUrlAlias(
media,
Ops.get_string(prod, "alias", ""),
Ops.get_string(prod, "name", "")
)
srcid = Pkg.SourceCreate(url, pth)
if (srcid == -1 || srcid == nil) &&
!Ops.get_boolean(prod, "ask_on_error", false)
Report.Error(_("Failed to add add-on product."))
elsif (srcid == -1 || srcid == nil) &&
Ops.get_boolean(prod, "ask_on_error", false)
Ops.set(
prod,
"ask_on_error",
Popup.ContinueCancel(
Builtins.sformat(
_("Make the add-on \"%1\" available via \"%2\"."),
Ops.get_string(prod, "product", ""),
media
)
)
)
end
Ops.set(@sources, [media, pth], srcid)
Builtins.y2milestone("New source ID: %1", srcid)
AddOnProduct.Integrate(srcid) if srcid != -1
AutoinstGeneral.SetSignatureHandling
end while Ops.get(@sources, [media, pth], -1) == -1 &&
Ops.get_boolean(prod, "ask_on_error", false) == true
Ops.set(prod, "media", Ops.get(@sources, [media, pth], -1))
if srcid != nil && srcid != -1
repos = Pkg.SourceEditGet
found_at = -1
counter = -1
Builtins.foreach(repos) do |one_repo|
counter = Ops.add(counter, 1)
if Ops.get_integer(one_repo, "SrcId", -1) == srcid
found_at = counter
raise Break
end
end
if found_at != -1
name = Ops.get_string(repos, [found_at, "name"], "")
if Builtins.haskey(prod, "name")
name = Ops.get_string(prod, "name", "")
Builtins.y2milestone("Preferred name: %1", name)
else
repos_at_url = Pkg.RepositoryScan(media)
Builtins.foreach(repos_at_url) do |one_repo|
if Ops.get(one_repo, 1, "") == pth
name = Ops.get(one_repo, 0, "")
raise Break
end
end
Builtins.y2milestone("Preferred name: %1", name)
end
Ops.set(repos, [found_at, "name"], name)
Pkg.SourceEditSet(repos)
end
end
if Ops.get_string(prod, "product", "") != ""
Builtins.y2milestone(
"Installing product: %1",
Ops.get_string(prod, "product", "")
)
Pkg.ResolvableInstall(Ops.get_string(prod, "product", ""), :product)
else
Builtins.y2warning("No product to install")
end
end
AddOnProduct.ReIntegrateFromScratch
@ret = true
elsif @func == "Read"
if !PackageLock.Check
Builtins.y2error("Cannot get package lock")
return false
end
Builtins.y2milestone("Reseting Pkg")
Pkg.PkgApplReset
Pkg.PkgReset
Pkg.TargetInitialize(Installation.destdir)
Pkg.TargetLoad
Pkg.SourceStartManager(true)
Pkg.PkgSolve(true)
@ret = ReadFromSystem()
else
Builtins.y2error("unknown function: %1", @func)
@ret = false
end
Progress.set(@progress_orig)
Builtins.y2debug("ret=%1", @ret)
Builtins.y2milestone("add-on_auto finished")
Builtins.y2milestone("----------------------------------------")
deep_copy(@ret)
end
|