Just started fumbling with ATK4. I'd like to use it both as a backend API (if possible) as well as to create a small CMS based on the same data the API will work with. The API will be accessed by browser plugins so no rendering will be done by ATK4.

So basically my question is, does ATK4 come with support for creating your own REST API or would I basically have to create this functionality myself? I've found the API docs but they seem focused on making API methods in service of the rendering "engine".

In case I should make this myself, what's the best way of implementing this on ATK4? (in terms of future compatibility).

Thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

There is a straightforward way to solve that and a generic way.

The straightforward way is as simple as this:

class page_api_article_add extends Page {
    function init(){
         parent::init();
         try {
             $this->add('Model_Article')->set($_POST)->update();
             echo json_encode("OK");
             exit;
         }catch (BaseException $e){
             echo json_encode($e->getMessage());
             exit;
         }
    }
}

The more sophisticated solution consists of building the following items:

  • You'll need a custom API on top of ApiCLI.
  • You'll need a separate page routing
  • Inside API you'll need to define which models are accessible through API and which controller should be used
  • Controller will implement argument validation and operations on the models, such as create, update, delete, duplicate, etc
  • Support for key-authentication
  • Custom exceptions

I have implemented this on one occasion, but I'll need to negotiate with my client to make sure I can donate the code to atk4-addons.

Currently I would suggest you to go the "straightforward" route until the generic API is released.

link|improve this answer
Thanks, at this point the API will be very lightweight and straightforward, but in the future I expect it to grow a bit larger and more complex.. so I'm looking forward to hearing more about your generic API implementation :) – Naatan Oct 11 '11 at 2:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.