Opened 21 months ago

Closed 20 months ago

Last modified 20 months ago

#18477 closed enhancement (fixed)

Action to return a plugin's SVN tags and tag info on API.WP.org

Reported by: sc0ttkclark Owned by: nacin
Priority: normal Milestone: WordPress.org
Component: WordPress.org site Version:
Severity: normal Keywords:
Cc: mitchoyoshitaka, lol@…, scribu, gary@…

Description

Currently, for the Plugin Beta Tester (plugin) we have to scrape data from the .org site. This is not optimal for a number of reasons, one of which that there's an API for plugin data already out there at api.wordpress.org which could instead be utilized to get back pure data vs scraping.

This plugin's goal is to be able to lookup new alpha/beta/rc versions which have been tagged.

plugins_api( 'plugin_versions', array( 'slug' => 'my-plugin' ) );

The above PHP call within WP could return an object or array of all the plugin's versions available (tagged + trunk), and each version's info. The type of information that would be very useful for our plugin in particular would be:

  • Version (version found in the plugin's main header info)
  • Date Modified
  • Download link to the ZIP

This function call data should really mirror what you'd expect to see from the "Other Versions" section of the plugin page (example: http://wordpress.org/extend/plugins/buddypress/download/)

Change History (10)

  • Cc lol@… added
  • Cc scribu added
  • Type changed from defect (bug) to enhancement
  • Milestone changed from Awaiting Review to WordPress.org
  • Cc gary@… added

Checking in to see if there's anything you need from me, thanks again @nacin!

Pods 2.0 funding has been successful and during the process of development, I'll be fleshing out the new Plugin Beta Tester version with the code mentioned in this ticket. Any chance we can get the ticket completed and closed so the plugin's tag checks are more reliable?

Just checking in, our Alpha / Beta testing period begins next week. What level of effort is this ticket and is it something you think would take a few more weeks?

  • Resolution set to fixed
  • Status changed from new to closed

Try this:

plugins_api( 'plugin_information', array( 'slug' => $plugins, 'fields' => array( 'versions' => true ) ) );

It returns the same data that's on WP.org /download/ pages.

Note that our own DB doesn't store tags; it reads these directly from SVN. So if you want modified dates you can pull them manually from SVN.

Thanks for the update, I'll get to work on using it!

Note: See TracTickets for help on using tickets.