Opened 3 years ago
Closed 3 years ago
#15151 closed enhancement (fixed)
Add Media Library calls to XML-RPC
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.1 |
| Component: | XML-RPC | Version: | 3.1 |
| Severity: | normal | Keywords: | needs-docs |
| Cc: | westi, mtdewvirus@…, koke, frsh |
Description (last modified by westi)
Proposal: Add wp.getMediaLibrary and wp.getMediaLibraryItem calls to XML-RPC.
wp.getMediaLibrary
This call would provide a caller with the ability to get a list of items in the user's Media Library with IDs, titles, descriptions, remote links, and any other relevant metadata. A filter parameter could be provided that would allow the caller to filter based on content type, file size, or other properties.
See get_attachments in http://svn.automattic.com/wordpress/trunk/wp-app.php.
wp.getMediaItem
This call would provide a caller with the ability to get a specific item in the user's Media Library by providing an ID. The call would return the item's ID, title, description, remote link, and any other available metadata.
Attachments (2)
Change History (16)
comment:4
mtdewvirus — 3 years ago
- Cc mtdewvirus@… added
Hi, there is a proposed solution for this. Inspired by the getComments function, the getMediaLibrary calls getMediaItem for every attachment found. This results in showing more info about each item.
Maybe it needs another argument to decide how much info we want from the media library, but that would depend on the use cases.
Any suggestions on this?
- Cc frsh added
This is looking good on my 3.0.1 install. Much appreciated!
comment:10
westi — 3 years ago
Going through this now.
For reference some style comments on the patch:
- Better to use the ternary operator when setting up variable to a default of a value from elsewhere.
- Foreach ing over the results is nicer that an indexed for loop.
Committing modified version
comment:11
westi — 3 years ago
comment:12
westi — 3 years ago
- Keywords needs-docs added; media library xml-rpc has-patch dev-feedback removed
comment:13
westi — 3 years ago
comment:14
westi — 3 years ago
- Resolution set to fixed
- Status changed from accepted to closed
No negative feedback on this closing as fixed.

Proposed patch for getMediaItem/getMediaLibrary