Class: Deb::S3::CLI
- Inherits:
-
Thor
- Object
- Thor
- Deb::S3::CLI
- Defined in:
- lib/deb/s3/cli.rb
Instance Method Summary collapse
- #copy(package_name, to_codename, to_component) ⇒ Object
- #delete(package) ⇒ Object
- #list ⇒ Object
- #show(package_name, version, arch) ⇒ Object
- #upload(*files) ⇒ Object
- #verify ⇒ Object
Instance Method Details
#copy(package_name, to_codename, to_component) ⇒ Object
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 |
# File 'lib/deb/s3/cli.rb', line 370 def copy(package_name, to_codename, to_component) if package_name.nil? error "You must specify a package name." end if to_codename.nil? error "You must specify a codename to copy to." end if to_component.nil? error "You must specify a component to copy to." end arch = [:arch] if arch.nil? error "You must specify the architecture of the package to copy." end versions = [:versions] if versions.nil? warn "===> WARNING: Copying all versions of #{package_name}" else log "Versions to copy: #{versions.join(', ')}" end configure_s3_client # retrieve the existing manifests log "Retrieving existing manifests" from_manifest = Deb::S3::Manifest.retrieve([:codename], component, arch, [:cache_control], false, [:skip_package_upload]) to_release = Deb::S3::Release.retrieve(to_codename) to_manifest = Deb::S3::Manifest.retrieve(to_codename, to_component, arch, [:cache_control], [:fail_if_exists], [:skip_package_upload]) packages = from_manifest.packages.select { |p| p.name == package_name && (versions.nil? || versions.include?(p.full_version)) } if packages.size == 0 error "No packages found in repository." end packages.each do |package| begin to_manifest.add package, [:preserve_versions], false rescue Deb::S3::Utils::AlreadyExistsError => e error("Preparing manifest failed because: #{e}") end end begin to_manifest.write_to_s3 { |f| sublog("Transferring #{f}") } rescue Deb::S3::Utils::AlreadyExistsError => e error("Copying manifest failed because: #{e}") end to_release.update_manifest(to_manifest) to_release.write_to_s3 { |f| sublog("Transferring #{f}") } log "Copy complete." end |
#delete(package) ⇒ Object
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 |
# File 'lib/deb/s3/cli.rb', line 450 def delete(package) if package.nil? error("You must specify a package name.") end versions = [:versions] if versions.nil? warn("===> WARNING: Deleting all versions of #{package}") else log("Versions to delete: #{versions.join(', ')}") end arch = [:arch] if arch.nil? error("You must specify the architecture of the package to remove.") end configure_s3_client # retrieve the existing manifests log("Retrieving existing manifests") release = Deb::S3::Release.retrieve([:codename], [:origin], [:suite]) manifest = Deb::S3::Manifest.retrieve([:codename], component, [:arch], [:cache_control], false, [:skip_package_upload]) deleted = manifest.delete_package(package, versions) if deleted.length == 0 if versions.nil? error("No packages were deleted. #{package} not found.") else error("No packages were deleted. #{package} versions #{versions.join(', ')} could not be found.") end else deleted.each { |p| sublog("Deleting #{p.name} version #{p.full_version}") } end log("Uploading new manifests to S3") manifest.write_to_s3 {|f| sublog("Transferring #{f}") } release.update_manifest(manifest) release.write_to_s3 {|f| sublog("Transferring #{f}") } log("Update complete.") end |
#list ⇒ Object
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'lib/deb/s3/cli.rb', line 276 def list configure_s3_client release = Deb::S3::Release.retrieve([:codename]) archs = release.architectures archs &= [[:arch]] if [:arch] && [:arch] != "all" widths = [0, 0] rows = archs.map { |arch| manifest = Deb::S3::Manifest.retrieve([:codename], component, arch, [:cache_control], false, false) manifest.packages.map do |package| if [:long] package.generate else [package.name, package.full_version, package.architecture].tap do |row| row.each_with_index do |col, i| widths[i] = [widths[i], col.size].max if widths[i] end end end end }.flatten(1) if [:long] $stdout.puts rows.join("\n") else rows.each do |row| $stdout.puts "% -#{widths[0]}s % -#{widths[1]}s %s" % row end end end |
#show(package_name, version, arch) ⇒ Object
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'lib/deb/s3/cli.rb', line 311 def show(package_name, version, arch) if version.nil? error "You must specify the name of the package to show." end if version.nil? error "You must specify the version of the package to show." end if arch.nil? error "You must specify the architecture of the package to show." end configure_s3_client # retrieve the existing manifests manifest = Deb::S3::Manifest.retrieve([:codename], component, arch, [:cache_control], false, false) package = manifest.packages.detect { |p| p.name == package_name && p.full_version == version } if package.nil? error "No such package found." end puts package.generate end |
#upload(*files) ⇒ Object
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 |
# File 'lib/deb/s3/cli.rb', line 150 def upload(*files) if files.nil? || files.empty? error("You must specify at least one file to upload") end # make sure all the files exists if missing_file = files.find { |pattern| Dir.glob(pattern).empty? } error("File '#{missing_file}' doesn't exist") end # configure AWS::S3 configure_s3_client begin if [:lock] log("Checking for existing lock file") if Deb::S3::Lock.locked?([:codename], component, [:arch], [:cache_control]) lock = Deb::S3::Lock.current([:codename], component, [:arch], [:cache_control]) log("Repository is locked by another user: #{lock.user} at host #{lock.host}") log("Attempting to obtain a lock") Deb::S3::Lock.wait_for_lock([:codename], component, [:arch], [:cache_control]) end log("Locking repository for updates") Deb::S3::Lock.lock([:codename], component, [:arch], [:cache_control]) @lock_acquired = true end # retrieve the existing manifests log("Retrieving existing manifests") release = Deb::S3::Release.retrieve([:codename], [:origin], [:suite], [:cache_control]) manifests = {} release.architectures.each do |arch| manifests[arch] = Deb::S3::Manifest.retrieve([:codename], component, arch, [:cache_control], [:fail_if_exists], [:skip_package_upload]) end packages_arch_all = [] # examine all the files files.collect { |f| Dir.glob(f) }.flatten.each do |file| log("Examining package file #{File.basename(file)}") pkg = Deb::S3::Package.parse_file(file) # copy over some options if they weren't given arch = [:arch] || pkg.architecture # If they've specified an arch type that doesn't match the package let them know if .key?("arch") && [:arch] != pkg.architecture warn("You specified architecture #{[:arch]} but package #{pkg.name} has architecture type of #{pkg.architecture}") end # validate we have them error("No architcture given and unable to determine one for #{file}. " + "Please specify one with --arch [i386|amd64|armhf].") unless arch # If the arch is all and the list of existing manifests is none, then # throw an error. This is mainly the case when initializing a brand new # repository. With "all", we won't know which architectures they're using. if arch == "all" && manifests.count == 0 error("Package #{File.basename(file)} had architecture \"all\", " + "however noexisting package lists exist. This can often happen " + "if the first package you are add to a new repository is an " + "\"all\" architecture file. Please use --arch [i386|amd64|armhf] or " + "another platform type to upload the file.") end # retrieve the manifest for the arch if we don't have it already manifests[arch] ||= Deb::S3::Manifest.retrieve([:codename], component, arch, [:cache_control], [:fail_if_exists], [:skip_package_upload]) # add package in manifests begin manifests[arch].add(pkg, [:preserve_versions]) rescue Deb::S3::Utils::AlreadyExistsError => e error("Preparing manifest failed because: #{e}") end # If arch is all, we must add this package in all arch available if arch == 'all' packages_arch_all << pkg end end manifests.each do |arch, manifest| next if arch == 'all' packages_arch_all.each do |pkg| begin manifest.add(pkg, [:preserve_versions], false) rescue Deb::S3::Utils::AlreadyExistsError => e error("Preparing manifest failed because: #{e}") end end end # upload the manifest log("Uploading packages and new manifests to S3") manifests.each_value do |manifest| begin manifest.write_to_s3 { |f| sublog("Transferring #{f}") } rescue Deb::S3::Utils::AlreadyExistsError => e error("Uploading manifest failed because: #{e}") end release.update_manifest(manifest) end release.write_to_s3 { |f| sublog("Transferring #{f}") } log("Update complete.") ensure if [:lock] && @lock_acquired Deb::S3::Lock.unlock([:codename], component, [:arch], [:cache_control]) log("Lock released.") end end end |
#verify ⇒ Object
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 |
# File 'lib/deb/s3/cli.rb', line 504 def verify configure_s3_client log("Retrieving existing manifests") release = Deb::S3::Release.retrieve([:codename], [:origin], [:suite]) release.architectures.each do |arch| log("Checking for missing packages in: #{[:codename]}/#{[:component]} #{arch}") manifest = Deb::S3::Manifest.retrieve([:codename], component, arch, [:cache_control], false, [:skip_package_upload]) missing_packages = [] manifest.packages.each do |p| unless Deb::S3::Utils.s3_exists? p.url_filename_encoded sublog("The following packages are missing:\n\n") if missing_packages.empty? puts(p.generate) puts("") missing_packages << p end end if [:sign] || ([:fix_manifests] && !missing_packages.empty?) log("Removing #{missing_packages.length} package(s) from the manifest...") missing_packages.each { |p| manifest.packages.delete(p) } manifest.write_to_s3 { |f| sublog("Transferring #{f}") } release.update_manifest(manifest) release.write_to_s3 { |f| sublog("Transferring #{f}") } log("Update complete.") end end end |