Class: Yast::AddOnAutoClient

Inherits:
Client
  • Object
show all
Defined in:
src/clients/add-on_auto.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) main



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
299
# 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 = {}

  # Check arguments
  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>")
    )
  # Create a summary
  # return string
  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>")
  # did configuration changed
  # return boolean
  elsif @func == "GetModified"
    @ret = AddOnProduct.modified
  # set configuration as changed
  # return boolean
  elsif @func == "SetModified"
    AddOnProduct.modified = true
    @ret = true
  # Reset configuration
  # return map or list
  elsif @func == "Reset"
    AddOnProduct.add_on_products = []
    @ret = {}
  # Change configuration
  # return symbol (i.e. `finish || `accept || `next || `cancel || `abort)
  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)
  # Return configuration data
  # return map or list
  elsif @func == "Export"
    @ret = AddOnProduct.Export
  # Write configuration data
  # return boolean
  #
  #
  # **Structure:**
  #
  #
  #      <add-on>
  #     	<add_on_products config:type="list">
  #     		<listentry>
  #     			<media_url>http://software.opensuse.org/download/server:/dns/SLE_10/</media_url>
  #     			<product>buildservice</product>
  #     			<product_dir>/</product_dir>
  #     			<!-- (optional) -->
  #     			<name>User-Defined Product Name</name>
  #     			<signature-handling>
  #     				<accept_unsigned_file config:type="boolean">true</accept_unsigned_file>
  #     				<accept_file_without_checksum config:type="boolean">true</accept_file_without_checksum>
  #     				<accept_verification_failed config:type="boolean">true</accept_verification_failed>
  #     				<accept_unknown_gpg_key>
  #     					<all config:type="boolean">true</all>
  #     					<keys config:type="list">
  #     						<keyid>...</keyid>
  #     						<keyid>3B3011B76B9D6523</keyid>
  #     					</keys>
  #     				</accept_unknown_gpg_key>
  #     				<accept_non_trusted_gpg_key>
  #     				<all config:type="boolean">true</all>
  #     					<keys config:type="list">
  #     						<keyid>...</keyid>
  #     					</keys>
  #     				</accept_non_trusted_gpg_key>
  #     				<import_gpg_key>
  #     					<all config:type="boolean">true</all>
  #     					<keys config:type="list">
  #     						<keyid>...</keyid>
  #     					</keys>
  #     				</import_gpg_key>
  #     			</signature-handling>
  #     		</listentry>
  #     	</add_on_products>
  #      </add-on>
  #
  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, {}))
      # set addon specific sig-handling
      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)
          if Ops.get_boolean(prod, "ask_on_error", false)
            prod["ask_on_error"] = Popup.ContinueCancel(
              Builtins.sformat(
                _("Make the add-on \"%1\" available via \"%2\"."),
                Ops.get_string(prod, "product", ""),
                media
              )
            )
          else
            # just report error
            Report.Error(_("Failed to add add-on product."))
          end
        elsif Ops.get_boolean(prod, "confirm_license", false)
          accepted = AddOnProduct.AcceptedLicenseAndInfoFile( srcid )
          if accepted == false
            Builtins.y2warning("License not accepted, delete the repository and halt the system")
            Pkg.SourceDelete(srcid)
            SCR.Execute(path(".target.bash"), "/sbin/halt -f -n -p")
          end
        end

        Ops.set(@sources, [media, pth], srcid)
        Builtins.y2milestone("New source ID: %1", srcid)

        # bugzilla #260613
        AddOnProduct.Integrate(srcid) if srcid != -1

      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))
      # Adjust "name", bnc #434708
      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"], "")

          # Possibility to set name in control file, bnc #433981
          if Builtins.haskey(prod, "name")
            name = Ops.get_string(prod, "name", "")
            Builtins.y2milestone("Preferred name: %1", name)
            # Or use the one returned by Pkg::RepositoryScan
          else
            repos_at_url = Pkg.RepositoryScan(media)
            # [ ["Product Name", "Path" ] ]
            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

    # reread agents, redraw wizard steps, etc.
    AddOnProduct.ReIntegrateFromScratch

    @ret = true
  # Reads configuration of add-ons from the current system
  # to memory. To get that configuration, use Export() functionality.
  #
  # @return [Boolean]
  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)

  # EOF
end