CartoDB-SQL-API/app/models/formats
Sandro Santilli 8d2347af99 Make public PostgreSQL user name a configuration parameter
Closes #56.
Updates documentation and tests and example config files
2013-11-05 17:49:10 +01:00
..
arraybuffer.js Add arraybuffer format 2013-05-28 10:37:39 +02:00
csv.js Set KML folder name to the requested filename. 2013-11-05 17:29:02 +01:00
geojson.js Refactor format objects to expose a common stream-able interface 2013-05-28 10:36:15 +02:00
index.js Refactor format objects to expose a common stream-able interface 2013-05-28 10:36:15 +02:00
json.js Improve recognition of non-standard field types names by db lookup 2013-10-02 10:22:13 +02:00
kml.js Set KML folder name to the requested filename. 2013-11-05 17:29:02 +01:00
ogr.js Make public PostgreSQL user name a configuration parameter 2013-11-05 17:49:10 +01:00
pg.js Improve recognition of non-standard field types names by db lookup 2013-10-02 10:22:13 +02:00
README Remove last bit of hard-coded format names from app controller 2013-09-05 17:10:48 +02:00
shp.js Set KML folder name to the requested filename. 2013-11-05 17:29:02 +01:00
svg.js Refactor format objects to expose a common stream-able interface 2013-05-28 10:36:15 +02:00
topojson.js Refactor format objects to expose a common stream-able interface 2013-05-28 10:36:15 +02:00

Format classes are required to expose a constructor with no arguments,
a getFileExtension() and a sendResponse(opts, callback) method.

The ``opts`` parameter contains:

 sink        Output stream to send the reponse to
 sql         SQL query requested by the user
 skipfields  Comma separate list of fields to skip from output
             really only needed with "SELECT *" queries
 gn          Name of the geometry column (for formats requiring one)
 dp          Number of decimal points of precision for geometries (if used)
 database    Name of the database to connect to
 user_id     Identifier of the user
 filename    Name to use for attachment disposition
 
The ``callback`` parameter is a function that is invoked when the
format object finished with sending the result to the sink.
If an error occurs the callback is invoked with an Error argument.