4

I know Nexus support REST request. Would you please tell me how to request from repository based on Nexus the size of certain artifact?

Thank you.

yart
  • 7,515
  • 12
  • 37
  • 37
  • See: http://stackoverflow.com/questions/7911620/using-the-nexus-rest-api-to-get-latest-artifact-version-for-given-groupid-artfic/7922863#7922863 and http://stackoverflow.com/questions/8513670/how-to-write-get-method-nexus-rest-api/8526453#8526453 – Mark O'Connor Jul 04 '13 at 23:05

1 Answers1

5

You have the following option: Use the full path to the artifact content URI and add the parameter describe=info

For example:

https://repository.sonatype.org/service/local/repositories/maven-sites/content/nexus-oss/css/maven-theme.css?describe=info

Returns an ArtifactInfoResourceResponse, which is an XML that contains the artifact size in KB:

<org.sonatype.nexus.rest.model.ArtifactInfoResourceResponse>
  <data>
    <presentLocally>true</presentLocally>
    <repositoryId>maven-sites</repositoryId>
    <repositoryName>maven-sites</repositoryName>
    <repositoryPath>/nexus-oss/css/maven-theme.css</repositoryPath>
    <mimeType>text/css</mimeType>
    <uploader>grid</uploader>
    <uploaded>1324414832000</uploaded>
    <lastChanged>1324414832000</lastChanged>
    <size>2801</size>
    <sha1Hash>f773e0309d4c0f7aab4aac0ec3ae50088ad02394</sha1Hash>
    <md5Hash>61d12a98b59a0fefcc3b0ed8313239de</md5Hash>
    <repositories>
      <org.sonatype.nexus.rest.model.RepositoryUrlResource>
        <repositoryId>maven-sites</repositoryId>
        <repositoryName>maven-sites</repositoryName>
        <path>/nexus-oss/css/maven-theme.css</path>
        <artifactUrl>https://repository.sonatype.org/content/repositories/maven-sites/nexus-oss/css/maven-theme.css</artifactUrl>
        <canView>true</canView>
      </org.sonatype.nexus.rest.model.RepositoryUrlResource>
    </repositories>
    <canDelete>false</canDelete>
  </data>
</org.sonatype.nexus.rest.model.ArtifactInfoResourceResponse>
messivanio
  • 2,263
  • 18
  • 24
Ido.Co
  • 5,317
  • 6
  • 39
  • 64