2017 © Pedro Peláez
 

contao-bundle contao-content-api

Access Contao content via an easy to use JSON-API

image

dieschittigs/contao-content-api

Access Contao content via an easy to use JSON-API

  • Friday, May 4, 2018
  • by Padarom
  • Repository
  • 12 Watchers
  • 21 Stars
  • 142 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 1 Open issues
  • 8 Versions
  • 31 % Grown

The README.md

Contao Content API

We at Die Schittigs love Contao, but the web moves forward and static HTML templating just doesn't cut it anymore. Thus we came up with an easily digestible JSON-API to access Contao content via JavaScript (or anything else that can handle JSON)., (*1)

With the Contao Content API it is possible to write the entire Frontend of your website in React.js, Angular, vue, or any other JS-framework. All while still using the great Contao Backend., (*2)

Requirements

You'll need an up-and-running Contao 4.4.x installation. Please note that the API is not compatible with Contao 3.x., (*3)

Installation

Install composer if you haven't already, enter this command in the main directory of your Contao installation:, (*4)

composer require dieschittigs/contao-content-api

Contao Content API is now installed and ready to use., (*5)

Usage

Once installed, the following routes are available:, (*6)

/api/sitemap

Gets the sitemap including the root pages., (*7)

Example, (*8)

/api/sitemap/flat

Gets all pages as key value pairings where the key is the URL., (*9)

Example, (*10)

/api/urls[?file=sitemap]

Gets all URLs from the generated sitemap XML(s). If you define a file, only that XML will be parsed., (*11)

Example, (*12)

/api/page?url=/about/team.html

Gets the page, including all articles and contents at the url., (*13)

Example, (*14)

/api/newsreader?url=/news/detail/new-website.html

Gets the news reader content from the url, (*15)

Example, (*16)

/api/?url=/page/or/newsarticle.html

Tries to get the page at the url, and contents from any reader, (*17)

Example, (*18)

/api/user

Gets the logged-in frontend user, if available., (*19)

Example, (*20)

/api/module?id=5

Gets the content of a module by id, (*21)

Example, (*22)

/api/text?file=tl_news,modules

Gets the content of a language file by filename(s), (*23)

Example, (*24)

/api/file?path=files/uploads&depth=2

Gets the file or directory at path and also it's children, limited by depth, (*25)

Example, (*26)

All routes also take the additional lang parameter (e.g. ?lang=de). If you need to override the language., (*27)

Configuration

Disabling the API

Edit your parameters.yml., (*28)

parameters:
…
content_api_enabled:
    false
…

The API routes are now all disabled. This may be helpful if you only want to use the classes included in the bundle., (*29)

Response headers

Edit your parameters.yml., (*30)

parameters:
…
content_api_headers:
    'Access-Control-Allow-Origin': 'https://mysite.org'
…

These headers will be added to all responses from the API., (*31)

Custom readers

Contao has the concept of Reader Module (e.g. News Reader). These can be inserted anywhere inside of an article where they read the URL to display their contents. If you want to add additional Reader Modules, you can do so by adding them in your parameters.yml., (*32)

parameters:
…
    content_api_readers:
        newsreader: NewsModel
        blogreader: BlogModel
…

Please note that the second parameter is the model class, not the module class. The new reader is now available at, (*33)

/api/blogreader?url=/blog/detail/on-the-topic.html

or, if you want to include the whole page, at, (*34)

/api?url=/blog/detail/on-the-topic.html

Internally the API tries to instantiate the model with the alias found in the url. It also tries to add all ContentModels it can find., (*35)

Hooks

We provide some basic hooks:, (*36)

class Hooks{

    // $GLOBALS['TL_HOOKS']['apiBeforeInit']
    public static apiBeforeInit(Request $request){
        return $request
    }

    // $GLOBALS['TL_HOOKS']['apiAfterInit']
    public static apiAfterInit(Request $request){
        return $request
    }

    // $GLOBALS['TL_HOOKS']['apiContaoJson']
    public static apiContaoJson(ContaoJson $contaoJson, mixed $data){
        if($data instanceof ContentModel){
            $contaoJson->data = null;
            // End of the line
            return false;
        }
        // Do your thing, ContaoJson
        return true;

    }

    // $GLOBALS['TL_HOOKS']['apiResponse']
    public static apiResponse(mixed $data){
        $data->tamperedWith = true;
        return $data;

    }

    // $GLOBALS['TL_HOOKS']['apiModuleGenerated']
    public static function apiModuleGenerated(ApiModule $module, string $moduleClass)
    {
        // Override the way certain modules are handled
        if ($moduleClass != 'Contao\ModuleBlogList') {
            return;
        }
        $_module = new ModuleBlogList($module->model, null);
        $module->items = $_module->fetchItems(
            $module->category
        );
    }
}

Documentation

The classes crafted for the API might be a good starting point if you want to build anything on top of Contao., (*37)

Check out the docs here, (*38)

Contribution

Bug reports and pull requests are very welcome :), (*39)


© Die Schittigs GmbH 2019, (*40)

The Versions

04/05 2018

dev-master

9999999-dev

Access Contao content via an easy to use JSON-API

  Sources   Download

MIT License

The Requires

 

by Tobias Duehr

api json bundle contao

04/05 2018

2.0.4

2.0.4.0

Access Contao content via an easy to use JSON-API

  Sources   Download

MIT License

The Requires

 

by Tobias Duehr

api json bundle contao

28/09 2017

2.0.3

2.0.3.0

Access Contao content via an easy to use JSON-API

  Sources   Download

MIT License

The Requires

 

by Tobias Duehr

api json bundle contao

13/09 2017

2.0.2

2.0.2.0

Access Contao content via an easy to use JSON-API

  Sources   Download

MIT License

The Requires

 

by Tobias Duehr

api json bundle contao

29/08 2017

2.0.1

2.0.1.0

Access Contao content via an easy to use JSON-API

  Sources   Download

MIT License

The Requires

 

by Tobias Duehr

api json bundle contao

22/08 2017

2.0.0

2.0.0.0

Access Contao content via an easy to use JSON-API

  Sources   Download

MIT License

The Requires

 

by Tobias Duehr

api json bundle contao

05/05 2017

1.1.0

1.1.0.0

Access Contao content via an easy to use API

  Sources   Download

MIT License

by Tobias Duehr

21/04 2017

1.0.0

1.0.0.0

Access Contao content via an easy to use API

  Sources   Download

MIT License

by Tobias Duehr