stevenscg / napp.alloy.adapter.restapi

RestAPI Sync Adapter for Titanium Alloy Framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

napp.alloy.adapter.restapi

RestAPI Sync Adapter for Titanium Alloy Framework.

How To Use

Simple add the following to your model in PROJECT_FOLDER/app/models/.

exports.definition = {	
	config: {
		"URL": "http://example.com/api/modelname",
		//"debug": 1, 
		"adapter": {
			"type": "restapi",
			"collection_name": "mymodelname"
		}
	},		
	extendModel: function(Model) {		
		_.extend(Model.prototype, {});
		return Model;
	},	
	extendCollection: function(Collection) {		
		_.extend(Collection.prototype, {});
		return Collection;
	}		
}

Then add the restapi.js to PROJECT_FOLDER/app/assets/alloy/sync/. Create the folders if they dont exist.

Use the debug property in the above example to get logs printed with server response to debug your usage of the restapi adapter.

Changelog

v1.0.5 Added HTTP Response code and error message

v1.0.4 Added debug

v1.0.3 Alloy 1.0.0. Fix bug in rest url being global

v1.0.2 Added urlparams

v1.0.1 Android bugfixes

v1.0 init

Author

Mads Møller
web: http://www.napp.dk
email: mm@napp.dk
twitter: @nappdev

License

Copyright (c) 2010-2011 Mads Møller

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

About

RestAPI Sync Adapter for Titanium Alloy Framework