Skip to content

StefanWallin/jStorage

 
 

Repository files navigation

#jStorage - Storage made Easy#

Build Status

jStorage helps you get started with using cloud storage (Like Dropbox or GitHub). With jStorage you just need to learn 1 API and you can easily add support for more providers in your project.

Storage Status Read more about storage
Dropbox Implemented https://www.dropbox.com/
localStorage Implemented https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Storage
GitHub In progress https://github.com/
MS Azure Planned https://account.windowsazure.com/Home/Index
SkyDrive Planned https://skydrive.live.com/
Google Drive Planned https://drive.google.com/
Box Planned https://www.box.com/

##Demo##

https://jstorage.azurewebsites.net/demo/

##Prepare provider(s)##

Depending on the storage provider you want to use you need to do some steps at the provider to prepare it for usage. Below we are listing the steps needed for every provider.

###Preparing Dropbox###

  1. Go to: https://www.dropbox.com/developers/apps
  2. Click the "Create app"
  3. Choose "Dropbox API app" and "Files and datastores".
  4. Either choose own folder for your app or access to all files in Dropbox (If you are unsure, use own folder for app. It is more secure for both you and the user)
  5. Enter app name (This name will be visible for your users so choose a good one).
  6. Write down the "App Key" for later use.
  7. Write a address into "OAuth redirect URIs", this is the address the user will be sent to after giving your app permissions. Please note that it MUST to start with "https://" to work if you are using a DNS.

###Preparing GitHub###

  1. Go to: https://github.com/settings/applications
  2. Click the "Register new application" button.
  3. Enter info about your application, most importantly the "Authorization callback URL" value.
  4. Click the "Register application" button.

##Setup##

include

<script src="jStorage.js">

and the approperate module that represent the storage you want to use. You can use all of them at the same time.

<script src="jStorage.dropbox.js">
<script src="jStorage.github.js">
<script src="jStorage.localstorage.js">

##API##

###jStorage(initConfig)###

Dropbox

var storage = jStorage({
	'name': 'dropbox',
	'appKey': 'APP KEY YOU SAVED FROM STEP 6 IN PREPARE DROPBOX SECTION',
	'callback': function(storage, callStatus) {
		if (callStatus.isOK) {
			// dropbox storage are now ready to be used.
		}
	}
});

GitHub

var storage = jStorage({
	'name': 'github',
	'clientId': 'df3a0f28472a4ad20f39',
	'tokenService': 'https://githubtokenservice-jstorage-flowertwig-org.loopiasecure.com/', // You SHOULD use your own service for additional security
	'callback': function(storage, callStatus) {
		if (callStatus.isOK) {
			// github storage are now ready to be used.
		}
	}
});

localStorage

var storage = jStorage({
	'name': 'localstorage',
	'callback': function(storage, callStatus) {
		if (callStatus.isOK) {
			// local storage are now ready to be used.
		}
	}
});

###get(file_path, callback(file, callStatus))###

Read content of file.

storage.get('testing.txt', function(file, callStatus) {
	if (callStatus.isOK) {

	}
});

###getMeta(file_path, callback(fileMeta, callStatus))###

Read metadata for file.

storage.get('testing.txt', function(fileMeta, callStatus) {
	if (callStatus.isOK) {

	}
});

###set(file_path, content, callback(callStatus))###

Write file content.

storage.set('testing.txt', 'Hello World!', function(callStatus) {
	if (callStatus.isOK) {

	}
});

###move(file_path_current, file_path_new, callback(callStatus))###

Move file from one location to a new.

storage.move('testing.txt', 'testing2.txt', function(callStatus) {
	if (callStatus.isOK) {

	}
});

###del(file_path, callback(callStatus))###

Remove file.

storage.del('testing.txt', function(callStatus) {
	if (callStatus.isOK) {

	}
});

###lists(directory_path, callback(fileMeta[], callStatus))###

List all files in directory.

storage.lists('/', function(files, callStatus) {
	if (callStatus.isOK) {
		for(var i = 0; i < files.length; i++) {
			// files[i].name
		}
	}
});

###exists(file_path, callback(bool, callStatus))###

Does file exists?

storage.exists('testing.txt', function(file_exists, callStatus) {
	if (callStatus.isOK) {
		if (file_exists) {
			// File exists
		} else {
			// File didn't exist
		}
	}
});

###initConfig###

{
	'name': 'dropbox',
	[...]
	'callback': function(callStatus) {

	}
}

###callStatus###

Indicate if the call was successfull or not. Object has the following properties:

  • isOK - is true or false, depending on if the call was successfull or not.
  • msg - human readable status message
  • code - status code, can be used to do different actions depending on value. read more on the specific method to get all possible values.
{
	'isOK': true,
	'code': 0,
	'msg': ''
}

###file###

Object used in get method, object has the following properties:

  • name - filename including extension and directory.
  • size - size in bytes, represented by long.
  • mime-type - mime type of file.
  • modified - date file was modified.
  • data - content of file as string or byte array.
{
	'name': 'testing.txt',
	'size': 1024,
	'mime-type': 'text/html',
	'modified': Wed Jan 01 2014 15:11:07 GMT+0100 (W. Europe Standard Time),
	'data': byte array or string depending on mime-type
}

###fileMeta###

Object returned for getMeta and list methods, object has the following properties:

  • name - filename including extension and directory.
  • size - size in bytes, represented by long.
  • mime-type - mime type of file.
  • modified - date file was modified.
{
	'name': 'testing.txt',
	'size': 1024,
	'mime-type': 'text/html'
	'modified': Wed Jan 01 2014 15:11:07 GMT+0100 (W. Europe Standard Time)
}

About

Simplify reading and writing data to/from storage providers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 92.9%
  • CSS 7.1%