Overview of Framework Architecture

« Previous Topic Table of Contents Next Topic »

The Opendelight framework encompasses multi-tier architecture of web application, and is based on several design patterns including most notably Model-View-Controller (MVC). Currently, opendelight uses jQuery javascript framework and jQuery UI CSS framework with appropriate extensions for achieving UI rendering, effects, asset management, user interactions and functions at client-side (however, you are free to use any other client-side framework).

An instance of application at client-side invokes instance at server-side through HTTP request which is responsible for processing business logic of the application, and in turn, provides data back to client-side instance for further actions (rendering, effects, asset management, user interactions and functions).

Opendelight Framework Architecture
(Illustration of Opendelight Framework Architecture)

Every HTTP request is received by a Controller at the server-side, and each HTTP request is defined uniquely by the Event ID (through $_REQUEST[ID] parameter) that is passed from the client-side application instance. Based on Event ID, the Controller validates the HTTP request and the user sending the request.

The framework provided an in-built access control scheme based on user roles, called Role Based Access Control (RBAC) scheme, that allows access to application by its users depending on their roles assigned to. The basic concept of the scheme lies in treating application and user accessing the application as two objects, and basing their interaction through user's role associated with application instance.

Role Based Access Control
(Illustration of Role-Based Access Control Scheme)

Upon successful validation, parameters collected from HTTP request are passed to BL objects to execute the request. Model (consisting of classes and independent scripts - to give life to PHP old-timers : ) ) carries out BL processing, and returns resulting data in the form of arrays. After successful interaction with Model, Controller passes the available resulting data to View for composing the UI, if required. View creates the final client-side code (all in XHTML, JavaScript, CSS, etc.) and then sends the resulting code (or data) to Controller. Finally, Controller sends the final data to client-side application instance completing the server-side process of data-flow.

« Previous Topic Table of Contents Next Topic »

Opendelight Reference Guide (PDF)


(The entire online documentation is available in a single PDF for download and print.)