Commit 9d275a8f by Tom Laudeman

Adding more detail for the API

parent 09686021
......@@ -8,23 +8,7 @@ There is an interactive schema web site: [Schema web site](http://shannonvm.vill
### Table of contents
[Multiple names, alternate names, components](#multiple-names-alternate-names-components)
[How dates are stored](#how-dates-are-stored)
[How versioning works](#how-versioning-works)
[Foreign key related records](#foreign-key-related-records)
[Vocabulary table history and rationale](#vocabulary-table-history-and-rationale)
[Vocabulary separate SQL file](#vocabulary-separate-sql-file)
[Common fields and their meaning](#common-fields-and-their-meaning)
[Identical text tables](#identical-text-tables)
[Geographic authority](#geographic-authority)
[New DBUtil and initialization](#new-dbutil-and-initialization)
### New DBUtil and initialization
......@@ -66,11 +50,73 @@ Status is a (more or less?) controlled vocabulary. Examples include: 'published'
```
public function writeConstellation($cObj, $status, $note)
public function writeConstellation($cObj, $status, $note)
public function readConstellation($mainID, $version)
list($mainID, $version) = publishedConstellationByARK($arkID);
list($mainID, $version) = publishedConstellationByID($mainID);
list($mainID, $version) = editingConstellationByARK($arkID);
list($mainID, $version) = editingConstellationByID($mainID);
$idVersionList = editList($appUserID);
$idVersionList = array(
array('main_id' => 1, 'version' => 2),
array('main_id' => 3, 'version' => 2),
array('main_id' => 4, 'version' => 5));
$constellationList = array();
foreach ($idVersionList as $iver)
{
$cObj = readConstellation($iver['main_id'], $iver['version']);
array_push($constellationList, $cObj);
}
$versionList = allVersions($mainID);
// I don't think we need this if we universally return id and version
public function readConstellation($mainID)
public function readConstellation($mainID)
```
Given an ARK/ID, return the current publicly available constellation ID and version. This will only return the
current published version. Have equivalent functions for constellations locked-for-edit aka editing. The
"editing" will only return a list that the user has permissions to edit, and that means constellations locked
by that user. Admins can change the lock to another user, but we will not allow two users access to edit the
same constellation.
Given a user, get a list of the constellations that are currently "checked out" to that user. In other words,
constellations that user is editing. Return a list of constellation objects.
We may want a function that returns the X most recently updated constellations, where X is a parameter. That
would also be useful on the dashboard. Will this only return constellations locked by the user, or does this
list any constellation? Are these only constellations being edited, or are they published? Or a mix of
locked-for-edit and published?
Most functions return mainID and version. The application programmer calls readConstellation() to read the
full constellation. This mix and match approach is more flexible than a hoarde of functions some of which
return an id, lists of id, a version, lists of version, a single constellation, or lists of constellation.
Should functions return just enough data for the UI, or should the return a list of full constellations?
That's a tricky question. I would say let's just return full constellations. They might not all get used by
us, but I can see that as a pretty cool REST API feature for others. I'm thinking the WebUI will probably use
a name and the ID. But remember, that function needs to get the current version for that user, which might
not be public yet.
Functions return the most recent version so that a user can continue editing where they left off. By
definition, a locked-for-edit constellation is not public. By having a number of functions that only return a
mainID and version (or a list of mainID and version) the UI and dashboard programmers can use those in
combination with functions that return full constellations as the programmers wish.
The special allVersions() returns all versions (in order from lowest to highest) in a list for a given
ID. This is a utility function available to build diff and reversion user interfaces.
### Utility functions
A number of functions exist in DBUtil for testing.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment