Story #4087
Updated by daviddavis about 6 years ago
Currently, users have to submit three requests to upload an rpm to a repository:
<pre>
$ http --form POST :8000/pulp/api/v3/artifacts/ file@dog-4.23-1.noarch.rpm
$ http POST :8000/pulp/api/v3/content/rpm/packages/ ...
$ http POST ':8000'$REPO_HREF'versions/' add_content_units:="[\"$CONTENT_HREF\"]"
</pre>
See https://github.com/pulp/pulp_rpm/blob/master/docs/workflows/upload.rst for more info.
The goal of this story is to allow users to upload rpm packages in a single call:
<pre>
$ http --form POST :8000/pulp_rpm/upload/ repository=$REPO_HREF file@dog-4.23-1.noarch.rpm
</pre>
See this proof of concept in pulp_ansible as an example:
https://github.com/pulp/pulp_ansible/pull/65
Data to create the rpm will need to be parsed from the rpm's headers. See here how to do this:
https://github.com/pulp/pulp_rpm/blob/f79ec2965db6667c30ad6ce528b99eb8b831b797/pulp_rpm/app/viewsets.py#L91-L96