-
-
Save gr2m/5463475 to your computer and use it in GitHub Desktop.
// add a new object | |
var type = 'note'; | |
var attributes = {color: 'red'}; | |
store.add(type, attributes) | |
.done(function (newObject) {}); | |
.fail(function (error) {}); | |
// update an existing object | |
var type = 'note'; | |
var id = 'abc4567'; | |
var update = {size: 2}; | |
store.update(type, id, update) | |
.done(function (updatedObject) {}); | |
// find one object | |
var type = 'note'; | |
var id = 'abc4567'; | |
store.find(type, id) | |
.done(function (object) {}); | |
// Load all objects | |
store.findAll() | |
.done(function (objects) {}); | |
// Load all objects from one type | |
var type = 'note'; | |
store.findAll(type) | |
.done(function (objects) {}); | |
// remove an existing object | |
var type = 'note'; | |
var id = 'abc4567'; | |
store.remove(type, id) | |
.done(function (removedObject) {}); | |
// EVENTS | |
// listen to store events | |
store.on('add', function (newObject) {}); | |
// new doc created | |
store.on('add', function (newObject) {}); | |
// existing doc updated | |
store.on('update', function (updatedObject) {}); | |
// doc removed | |
store.on('remove', function (removedObject) {}); | |
// any of the events above | |
store.on('change', function (event, changedObject) {}); | |
// all listeners can be filtered by type | |
store.on('add:note', function (newObject) {}); | |
store.on('update:note', function (updatedObject) {}); | |
store.on('remove:note', function (removedObject) {}); | |
store.on('change:note', function (event, changedObject) {}); | |
// ... and by type and id | |
store.on('update:note:uuid123', function (updatedObject) {}); | |
store.on('remove:note:uuid123', function (removedObject) {}); | |
store.on('change:note:uuid123', function (event, changedObject) {}); | |
// ... react on changes coming from remote | |
store.on('add:note', function (newObject, options) { | |
if (options.remote) { | |
// do something wit | |
} | |
}); |
Yup, that does and a MONAD/chainable/fluent/promise-like API (however you want to refer to it) is a nice direction to go in. I guess I'm talking about something alittle different, I'm attempting to build a backend which has 2 responsibilities: database schema and database access. So the server is essentially a JSON object describing all database object schemas and also the rules that dictate what types of users can access these database objects, then server will hand these objects out over a RESTful API - and that's ALL it will do. This then passes the responsibility over to the frontend for the rest - which will hopefully result in an easy to use backend for front-end developers.
Say my new forum app has administrators, moderators and users. At least, we require administrators to have full access, moderators can delete/edit all posts and users can only edit/delete their own posts. This logic here needs to be on the server (this is the database access part) though when creating new users, the client must say which of 3 types above they will be (you can assume the access part prevents silly things like moderators creating admins).
This could be instead defined on the server so that when you say user.create
the user type is contextually predefined depending on the current user. For me however, this is more logic that needs to be on the server, which I'm trying to move away from. So I guess our goals might diverge a bit here as I'm looking for a clean yet powerful API and you're looking for a small and simple API. The problem I see with small and simple as that if you want to abstract all of the backend away then some other developer will need to come and do the missing bits it for you. My goal is a 10% backend 90% frontend app, so one could write a complete app entirely(ish) in the front-end, whereas I think you're looking for the usual 50%, 50% approach, with backend guys just providing you with simpler APIs, which isn't really _no_Backend, thoughts ?
Anyway, that's kind of focused on the bigger picture, these APIs are good and I'll most likely write a companion front-end client to my server to achieve what you're after. I've already got a REST client which is close to what you've described: https://github.com/jpillora/jquery.rest
Currently my server is very beta, however I've got a few snippets in the README and you can get the gist of it: https://github.com/banchee/tranquil. At the moment I'm doing addResource
and other add
s though alternatively, it could be a command line tool which you point at a json file which is basically options
and [resource, resource, ...]
.
I absolutely agree and very much encourage to suggest alternative APIs that diverge from my suggestions, for example in your case to server more complicated requirements, that's exactly the direction I'd love the discussion about Dreamcode to go. I just didn't find the right tool that really encourages this kind of discussion, gist is just a temporary solution at the moment.
I guess we'll have to create something on our own, unless someone can suggest a better way. But that's an off topic discussion, I've made an issue over here: noBackend/nobackend.org#10
How should we handle storing documents using this "store" such that not all fields are supposed to be returned back to the client. For example, I have an app that guest user can post appending password to it for later editing (without logging in), how can this scoped be handled. As such encrypted password should not be sent back to the client. What is the correct approach for this?
I would suggest replacing the objects returned from most of your methods (which have "done" and "fail" methods) with ES6-compliant promises, so as to avoid recreating APIs and to make it easier to interoperate with other APIs. That should be as simple as replacing "done" with "then" and "fail" with "catch", as well as supporting a two-argument version of then(onsuccess, onfailure).
@dancully The difference between .done
& .fail
to .then
and .catch
is: they have no side effects. Especially beginners can get really hard to understand weird behavior in their apps. The methods should still return standard promises, so they can be chained using .then
and .catch
, but that's out of scope here
Whenever you think about users or moderators editing or deleting posts, also think of version history. People will contact your support about how someone stole their password and modified or removed their precious blog entry. Your lawyer will want to know whether for those five minutes yesterday evening, your blog might really have had the discount offer shown in that customer's screenshot, and how it may have come to appear there.
Thanks @jpillora, glad you like it!
I understand your security concerns: I get that feedback quite often, like here.
In general, the whole idea of noBackend is a simple, clean API, which abstracts away the backend and its complexity, including security constraints.
For example, instead of
it should be
makes sense?