Artifactory::Client - Perl client for Artifactory REST API
Version 1.8.0
This is a Perl client for Artifactory REST API: https://www.jfrog.com/confluence/display/RTF/Artifactory+REST+API Every public method provided in this module returns a HTTP::Response object.
use Artifactory::Client;
my $h = HTTP::Headers->new();
$h->authorization_basic( 'admin', 'password' );
my $ua = LWP::UserAgent->new( default_headers => $h );
my $args = {
artifactory => 'http://artifactory.server.com',
port => 8080,
repository => 'myrepository',
context_root => '/', # Context root for artifactory. Defaults to 'artifactory'.
ua => $ua # Dropping in custom UA with default_headers set. Default is a plain LWP::UserAgent.
};
my $client = Artifactory::Client->new( $args );
my $path = '/foo'; # path on artifactory
# Properties are a hashref of key-arrayref pairs. Note that value must be an arrayref even for a single element.
# This is to conform with Artifactory which treats property values as a list.
my $properties = {
one => ['two'],
baz => ['three'],
};
my $file = '/local/file.xml';
# Name of methods are taken straight from Artifactory REST API documentation. 'Deploy Artifact' would map to
# deploy_artifact method, like below. The caller gets HTTP::Response object back.
my $resp = $client->deploy_artifact( path => $path, properties => $properties, file => $file );
# Custom requests can also be made via usual get / post / put / delete requests.
my $resp = $client->get( 'http://artifactory.server.com/path/to/resource' );
# Repository override for calls that have a repository in the endpoint. The passed-in repository will not persist.
my $resp = $client->calculate_yum_repository_metadata( repository => 'different_repo', async => 1 );
carton install
# to run unit tests
prove -r t
Invokes GET request on LWP::UserAgent-like object; params are passed through.
nvokes POST request on LWP::UserAgent-like object; params are passed through.
Invokes PUT request on LWP::UserAgent-like object; params are passed through.
Invokes DELETE request on LWP::UserAgent-like object; params are passed through.
Invokes request() on LWP::UserAgent-like object; params are passed through.
Retrieves information on all builds from artifactory.
Retrieves information of a particular build from artifactory.
Upload Build
Retrieves information of a particular build number.
Retrieves diff of 2 builds
Promotes a build by POSTing payload
promote_docker_image( targetRepo => "target_repo", dockerRepository => "dockerRepository", tag => "tag", copy => 'false' )
Promotes a Docker image from one repository to another
delete_builds( name => $build_name, buildnumbers => [ buildnumbers ], artifacts => 0,1, deleteall => 0,1 )
Removes builds stored in Artifactory. Useful for cleaning up old build info data
Renames a build
Deploys builds from Artifactory to Bintray, and creates an entry in the corresponding Artifactory distribution repository specified.
Specifies retention parameters for build info.
Returns folder info
Returns file info
Returns storage summary information regarding binaries, file store and repositories
Returns item_last_modified for a given path
Returns file_statistics for a given path
Takes path and properties then get item properties.
Takes path and properties then set item properties. Supply recursive => 0 if you want to suppress propagation of properties downstream. Note that properties are a hashref with key-arrayref pairs, such as:
$prop = { key1 => ['a'], key2 => ['a', 'b'] }
Takes path and properties then delete item properties. Supply recursive => 0 if you want to suppress propagation of properties downstream.
Calculates an artifact's SHA256 checksum and attaches it as a property (with key "sha256"). If the artifact is a folder, then recursively calculates the SHA256 of each item in the folder and attaches the property to each item.
Takes path and retrieves artifact on the path. If $filename is given, artifact content goes into the $filename rather than the HTTP::Response object.
retrieve_latest_artifact( path => $path, version => $version, release => $release, integration => $integration,
flag => 'snapshot', 'release', 'integration' )
Takes path, version, flag of 'snapshot', 'release' or 'integration' and retrieves artifact
Takes payload (hashref) then retrieve build artifacts archive.
Retrieves an archive file (supports zip/tar/tar.gz/tgz) containing all the artifacts that reside under the specified path (folder or repository root). Requires Enable Folder Download to be set.
Takes path and traces artifact retrieval
Takes path and archive_path, retrieves an archived resource from the specified archive destination.
Takes path, properties then create a directory. Directory needs to end with a /, such as "/some_dir/".
Takes path on Artifactory, properties and filename then deploys the file. Note that properties are a hashref with key-arrayref pairs, such as:
$prop = { key1 => ['a'], key2 => ['a', 'b'] }
deploy_artifact_by_checksum( path => $path, properties => { key => [ values ] }, file => $file, sha1 => $sha1 )
Takes path, properties, filename and sha1 then deploys the file. Note that properties are a hashref with key-arrayref pairs, such as:
$prop = { key1 => ['a'], key2 => ['a', 'b'] }
Path is the path on Artifactory, file is path to local archive. Will deploy $file to $path.
push_a_set_of_artifacts_to_bintray( descriptor => 'foo', gpgPassphrase => 'top_secret', gpgSign => 'true' )
Push a set of artifacts to Bintray as a version. Uses a descriptor file (that must have 'bintray-info' in it's filename and a .json extension) that was deployed to artifactory, the call accepts the full path to the descriptor as a parameter.
Push Docker tag to Bintray. Calculation can be synchronous (the default) or asynchronous. You will need to enter your Bintray credentials, for more details, please refer to Entering your Bintray credentials.
Deploys artifacts from Artifactory to Bintray, and creates an entry in the corresponding Artifactory distribution repository specified
Retrieves file compliance info of a given path.
Delete $path on artifactory.
Copies an artifact from $from to $to. Note that for this particular API call, the $from and $to must include repository names as copy source and destination may be different repositories. You can also supply dry, suppressLayouts and failFast values as specified in the documentation.
Moves an artifact from $from to $to. Note that for this particular API call, the $from and $to must include repository names as copy source and destination may be different repositories. You can also supply dry, suppressLayouts and failFast values as specified in the documentation.
Get repository replication configuration
Set repository replication configuration
Update repository replication configuration
Delete repository replication configuration
Gets scheduled replication status of a repository
Schedules immediate content replication between two Artifactory instances
Creates or replaces a local multi-push replication configuration. Supported by local and local-cached repositories
Updates a local multi-push replication configuration. Supported by local and local-cached repositories
Deletes a local multi-push replication configuration. Supported by local and local-cached repositories
Enables/disables multiple replication tasks by repository or Artifactory server based in include and exclude patterns.
Returns the global system replication configuration status, i.e. if push and pull replications are blocked or unblocked.
Returns a list of all the listeners subscribed for event-based pull replication on the specified repository.
Blocks replications globally. Push and pull are true by default. If false, replication for the corresponding type is not blocked.
Unblocks replications globally. Push and pull are true by default. If false, replication for the corresponding type is not unblocked.
Downloads an artifact with or without returning the actual content to the client. When tracking the progress marks are printed (by default every 1024 bytes). This is extremely useful if you want to trigger downloads on a remote Artifactory server, for example to force eager cache population of large artifacts, but want to avoid the bandwidth consumption involved in transferring the artifacts to the triggering client. If no content parameter is specified the file content is downloaded to the client.
Get a flat (the default) or deep listing of the files and folders (not included by default) within a folder
Retrieves list of background tasks currently scheduled or running in Artifactory. In HA, the nodeId is added to each task. Task can be in one of few states: scheduled, running, stopped, canceled. Running task also shows the task start time.
Empties the trash can permanently deleting all its current contents.
Permanently deletes an item from the trash can.
Restore an item from the trash can.
Raises a flag to invoke balancing between redundant storage units of a sharded filestore following the next garbage collection.
Flexible and high performance search using Artifactory Query Language (AQL).
Artifact search by part of file name
Search archive entries for classes or any other jar resources
Search by Maven coordinates: groupId, artifactId, version & classifier
property_search( p => [ 'v1', 'v2' ], repos => [ 'repo1', 'repo2' ], result_detail => [qw(info properties)], )
Search by properties
checksum_search( md5 => '12345', repos => [ 'repo1', 'repo2' ], result_detail => [qw(info properties)], )
Artifact search by checksum (md5 or sha1)
Find all artifacts that have a bad or missing client checksum values (md5 or sha1)
artifacts_not_downloaded_since( notUsedSince => 12345, createdBefore => 12345, repos => [ 'repo1', 'repo2' ] )
Retrieve all artifacts not downloaded since the specified Java epoch in msec.
artifacts_with_date_in_date_range( from => 12345, repos => [ 'repo1', 'repo2' ], dateFields => [ 'created' ] )
Get all artifacts with specified dates within the given range. Search can be limited to specific repositories (local or caches).
Get all artifacts created in date range
Get all artifacts matching the given Ant path pattern
Find all the builds an artifact is a dependency of (where the artifact is included in the build-info dependencies)
license_search( unapproved => 1, unknown => 1, notfound => 0, neutral => 0, repos => [ 'foo', 'bar' ] )
Search for artifacts with specified statuses
Search for all available artifact versions by GroupId and ArtifactId in local, remote or virtual repositories
artifact_latest_version_search_based_on_layout( g => 'foo', a => 'bar', v => '1.0', repos => [ 'foo', 'bar' ] )
Search for the latest artifact version by groupId and artifactId, based on the layout defined in the repository
artifact_latest_version_search_based_on_properties( repo => '_any', path => '/a/b', listFiles => 1 )
Search for artifacts with the latest value in the "version" property
Find all the artifacts related to a specific build
Lists all Docker repositories hosted in under an Artifactory Docker repository.
Lists all tags of the specified Artifactory Docker repository.
Get the users list
Get the details of an Artifactory user
Get the encrypted password of the authenticated requestor
Creates a new user in Artifactory or replaces an existing user
Updates an exiting user in Artifactory with the provided user details
Removes an Artifactory user
Expires a user's password
Expires password for a list of users
Expires password for all users
Unexpires a user's password
Changes a user's password
Retrieves the password expiration policy
Sets the password expiration policy
Configures the user lock policy that locks users out of their account if the number of repeated incorrect login attempts exceeds the configured maximum allowed.
Retrieves the currently configured user lock policy.
If locking out users is enabled, lists all users that were locked out due to recurrent incorrect login attempts.
Unlocks a single user that was locked out due to recurrent incorrect login attempts.
Unlocks a list of users that were locked out due to recurrent incorrect login attempts.
Unlocks all users that were locked out due to recurrent incorrect login attempts.
Create an API key for the current user
Get the current user's own API key
Revokes the current user's API key
Revokes the API key of another user
Revokes all API keys currently defined in the system
Get the groups list
Get the details of an Artifactory Group
Creates a new group in Artifactory or replaces an existing group
Updates an exiting group in Artifactory with the provided group details
Removes an Artifactory group
Get the permission targets list
Get the details of an Artifactory Permission Target
Creates a new permission target in Artifactory or replaces an existing permission target
Deletes an Artifactory permission target
Returns a list of effective permissions for the specified item (file or folder)
Retrieve the security configuration (security.xml)
Creates a new master key and activates master key encryption
Removes the current master key and deactivates master key encryption
Sets the public key that Artifactory provides to Debian clients to verify packages
Gets the public key that Artifactory provides to Debian clients to verify packages
Sets the private key that Artifactory will use to sign Debian packages
Sets the pass phrase required signing Debian packages using the private key
Creates an access token
Refresh an access token to extend its validity. If only the access token and the refresh token are provided (and no other parameters), this pair is used for authentication. If username or any other parameter is provided, then the request must be authenticated by a token that grants admin permissions.
Revoke an access token
Provides the service ID of an Artifactory instance or cluster
Returns a list of installed SSL certificates.
Adds an SSL certificate.
Deletes an SSL certificate.
Returns a list of minimal repository details for all repositories of the specified type
Retrieves the current configuration of a repository
Creates a new repository in Artifactory with the provided configuration or replaces the configuration of an existing repository
Updates an exiting repository configuration in Artifactory with the provided configuration elements
Removes a repository configuration together with the whole repository content
Calculates/recalculates the YUM metdata for this repository, based on the RPM package currently hosted in the repository
Recalculates all the NuGet packages for this repository (local/cache/virtual), and re-annotate the NuGet properties for each NuGet package according to it's internal nuspec file
Recalculates the npm search index for this repository (local/virtual). Please see the Npm integration documentation for more details.
Calculates/caches a Maven index for the specified repositories
Calculates Maven metadata on the specified path (local repositories only)
Calculates/recalculates the Packages and Release metadata for this repository,based on the Debian packages in it. Calculation can be synchronous (the default) or asynchronous.
Calculates/recalculates the Debian packages coordinates
Calculates/recalculates the Packages and Release metadata for this repository,based on the ipk packages in it (in each feed location).
Recalculates the index for a Bower repository.
Calculates Helm chart index on the specified path (local repositories only).
Calculates/recalculates the Packages and Release metadata for this repository, based on the CRAN packages in it.
Calculates/recalculates the Conda packages and release metadata for this repository.
Get general system information
verify_connection( endpoint => 'http://server/foobar', username => 'admin', password => 'password' )
Verifies a two-way connection between Artifactory and another product
Get a simple status response about the state of Artifactory
Get the general configuration (artifactory.config.xml)
Save the general configuration (artifactory.config.xml)
Changes the Custom URL base
Retrieve information about the currently installed license
Install new license key or change the current one
Retrieve information about the currently installed licenses in an HA cluster
Install a new license key(s) on an HA cluster
Deletes a license key from an HA cluster
Retrieve information about the current Artifactory version, revision, and currently installed Add-ons
Retrieves the reverse proxy configuration
Updates the reverse proxy configuration
Gets the reverse proxy configuration snippet in text format
Starts the SHA-256 migration process.
Stops the SHA-256 migration process
Executes a named execution closure found in the executions section of a user plugin
Retrieves all available user plugin information (subject to the permissions of the provided credentials)
Retrieves all available user plugin information (subject to the permissions of the provided credentials) of the specified type
Retrieves a build staging strategy defined by a user plugin
execute_build_promotion( promotionName => 'promotion1', buildName => 'build1', buildNumber => 3, %args )
Executes a named promotion closure found in the promotions section of a user plugin
Reloads user plugins if there are modifications since the last user plugins reload. Works regardless of the automatic user plugins refresh interval
Import one or more repositories
Returned default Import Settings JSON
Import full system from a server local Artifactory export directory
Returned default Export Settings JSON
Export full system to a server local directory
Sets an alert to be ignored until next time the repository hosting the artifact about which the alert was issued, is scanned. Note that this endpoint does not affect artifacts that are blocked because they have not been scanned at all.
When a repository is configured to block downloads of artifacts, you may override that configuration (and allow download of blocked artifacts). Note that this setting cannot override the blocking of unscanned artifacts.
You may configure Artifactory to block downloads of artifacts when the connected Xray instance is unavailable. This endpoint lets you override that configuration (and allow download of artifacts).
Create a new support bundle
Lists previously created bundle currently stored in the system
Downloads a previously created bundle currently stored in the system
Downloads a previously created bundle currently stored in the system
Deletes a previously created bundle from the system.
Satoshi Yagi, <satoshi.yagi at yahoo.com>
Please report any bugs or feature requests to bug-artifactory-client at rt.cpan.org
, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Artifactory-Client. I will
be notified, and then you'll automatically be notified of progress on your bug
as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Artifactory::Client
You can also look for information at:
-
RT: CPAN's request tracker (report bugs here)
-
AnnoCPAN: Annotated CPAN documentation
-
CPAN Ratings
-
Search CPAN
Copyright 2014-2015, Yahoo! Inc.
This program is free software; you can redistribute it and/or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at:
http://www.perlfoundation.org/artistic_license_2_0
Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.
If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.
This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.
This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed.
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.