Opened 17 years ago
Closed 10 years ago
#5310 closed enhancement (fixed)
XMLRPC interface should expose mechanism for listing and deleting media resources
Reported by: | redsweater | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 4.0 | Priority: | normal |
Severity: | normal | Version: | 2.3.1 |
Component: | XML-RPC | Keywords: | good-first-bug has-patch commit |
Focuses: | Cc: |
Description
Right now the XMLRPC interface supports the "newMediaObject" mechanism that is part of the MetaWeblog API, but lacks any method for inspecting or otherwise manipulating media objects.
I think to support a richer remote client experience, the XLMRPC interface should support at least a method for listing the media objects that have been previously uploaded (similar to what appears in the "Browse" tab of the wp-admin post editor), and for deleting a media asset that is present.
Attachments (2)
Change History (20)
#3
@
15 years ago
- Keywords needs-patch added
- Milestone changed from 2.9 to Future Release
Needs a patch.
Moving to Future Release for now.
#4
follow-up:
↓ 5
@
11 years ago
- Keywords good-first-bug added
We now have a method for listing items in the media library (wp.getMediaLibrary
) but still none for deleting media items.
#5
in reply to:
↑ 4
@
11 years ago
Replying to johnbillion:
... but still none for deleting media items.
Actually, since media items are really just a post type, you can use wp.deletePost
method to delete them. Likewise, you can use wp.editPost
to modify most of the media item fields (except image and alt-text, the latter of which is a protected meta).
It might be nice to have a simple wrapper to make this more obvious to new users, or else add some documentation to the Codex.
#10
@
10 years ago
- Keywords has-patch added; needs-patch removed
- Milestone changed from Future Release to 4.0
This ticket was mentioned in IRC in #wordpress-dev by helen. View the logs.
10 years ago
#13
@
10 years ago
- Owner set to SergeyBiryukov
- Resolution set to fixed
- Status changed from assigned to closed
In 28849:
#14
@
10 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
This ticket was mentioned in IRC in #wordpress-dev by SergeyBiryukov. View the logs.
10 years ago
#17
in reply to:
↑ 16
@
10 years ago
Replying to DrewAPicture:
+1 for swapping the aliases.
Agreed.
I think wp.deleteFile is a better name and more consistent with the others.
itching to move this in Media