- Created by Rajeev Sathish, last modified by Shailesh Kochhar on Jul 27, 2018
You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 8 Next »
Idea
When the idea of a plugin is conceived it is related to a specific task which is to be accomplished. The reason for someone thinking of creating a plugin is that this task cannot be accomplished using the core parts of Sunbird. The need to accomplish the same task (or a minor variant) may not be unique to the person or group who thinks up the plugin.
Thus a repository of plugins with screenshots and descriptions can be instrumental in making plugins re-useable and discoverable by the community.
Providing a template for adding screenshots and descriptions will standardise the method in which templates are published
Providing a means for rating and giving feedback on plugins will create sense of security and confidence when installing the plugin.
Collectively, this can form the foundation of an app store for Sunbird plugins. (see Envato marketplace for WordPress plugins)
Implementation Design
To design the implementation of a plugin, the plugin author will need access to a specification of extension points, one or more examples demonstrating the scope of extensibility and a specification of Sunbird core APIs available for creating a plugin
UI Design (web/mobile)
When designing the UI for a potential plugin which has web/mobile views the plugin author can be faced by a few different scenarios
- Adding elements to an existing UI view
- Creating a new UI view
- Providing an alternate implementation of an existing UI view
Adding elements
To add elements to an existing view,
- a declarative language and format is needed which can allow a plugin to provide elements for existing pages
- to accomplish this the framework should provide a vocabulary of pages which can be extended
- To simplify initial scope, there can be a fixed vocabulary of view sections (like header, footer, menu, navbar, search filters and others) where new elements can be added
- The implementation may be interrogative where the framework interrogates the plugin for elements or could be registration based where the plugin registers elements with the framework. The latter provides easier debuggability
New views
- Creating new views depends on adding elements to existing views to create navigation entry point for the new view
- Creating a new view will also require the ability to add common elements and behaviours from other parts of the web app or the mobile app
Alternate implementations
To provide an alternate implementation of a view,
- the declarative language and format which allows a plugin to provide elements for existing pages can be extended for a plugin to provide implementations for pages
- to accomplish this the framework should publish a vocabulary of pages which can be replaced
UI Consistency
- to ensure that the plugin UI is consistent with the rest of the application, the framework will need to publish styles which can be applied inside the plugin UI
- the framework will also need to inject additional assets (CSS/JS/media) created by the plugin into views where the plugin is loaded
Implementation (Code)
To provide backwards compatibility with framework upgrades, the framework must provide SDKs which exposes basic services used by the plugin. The SDK implementations will provide interface compatibility with framework. Separate SDKs may be required for UI, Web and Mobile plugins
Testing
The framework will provide the basic testing env required by any plugin to test the Integration of the plugin with the framework
Local testing
The plugin developer must be able to test the plugin locally without the need for a slow compile, package, deploy cycle. The plugin framework must support injecting a local plugin into a running application for fast iteration
Unit testing
The plugin developer will list out all the possible use cases and will write unit test cases to fulfill the use cases
Integration testing
The plugin will list all the touch-points where the plugin can affect the application and any service it is using from the framework and will write the automated test for each of the use case.
The plugin will use the framework exposed system to do automated integration testing.
Debugging
Debugging will be a strong need of any plugin development. The framework should ensure that loaded plugins can have debuggers attached within the plugin. This means that the plugin code must be reference-able from the standard debugger.
Each plugin should use an effective logging system which will provide all the logs in a central place. To accomplish this, the framework will expose logging mechanism that each plugin can extend and use to log. This will help in debugging process.
Publishing
A standard process to build and publish the plugin will be exposed by the framework so that all plugin will follow the same process. The publishing process must allow for a plugin to create its own dependencies.
Versioning
Plugins will be versioned to help in keeping the history of the plugin and helps collaboration between plugin developers.
Installation
The framework must provide a means for plugin to be installed into the application.
Web plugins
Web plugins will be installed at build-time by incorporating the plugin source code into the portal source tree and rebuilding the portal client application. The installation will require updating the root app.js code to import the appropriate plugin modules into the root of the application.
Server plugins
Server plugins can be installed as NPM modules or by incorporating the plugin source code into the backend application source tree and rebuilding the portal server application
Mobile plugins
Mobile will be installed at build-time by incorporating the plugin source code into the mobile app source tree and rebuilding the mobile application.
Activation/Loading
Runtime: UI based plugin (web/mobile)
The UI plugin framework should expose services that plugin can access like
- HTTP Service: to make API calls
- Logging Service: to add log records for debugging
- Auth Service: to get data for the current logged in user and session
- Token Service: to get a token to call a sunbird backend API
- Secrets Service: to register a secret which can be retrieved at runtime (eg: an API key for a 3rd party service)
- EventBus Service: to dispatch and listen for events
Data access from UI
During this phase, the plugin uses the basic services provided by the UI framework to load data from one or more backend APIs
JS decorate the DOM
once the data is available from the service to the plugin, plugin JS will use this data to decorate the DOM and will use two-way data binding.
User interaction with views
Once the DOM is created and updated with data now it will wait for user interaction or any event that is listened by the plugin.
Respond to interaction or event
- The framework will provide event handling and broadcasting mechanism that a plugin can use to call other plugins or to broadcast its event. The plugin must register to these events and handle accordingly
- The plugin can also emit events so that any dependant plugin can do a callback on that
Data Update from UI
Once the user interaction is handled and all the data processing is done, the data needs to be persisted. The plugin calls one or more services to do this process.
Runtime: Server Plugins (web/server/mobile)
the external library used should be properly documented and should be able to easily upgrade.
Deactivation/Unloading
Upgrade
Each plugin should have a roadmap for self-upgrade. if the framework is upgraded then it should consider for plugins backward compatibility and an alert have to be sent to the plugin contributor so that the developer can plan for a plugin upgrade.
Upgrade-Alert
if a plugin is upgraded an alert should be shown to the Integrator to inform the upgrade and the release features and any bug fixes so that the integrator can take a call to upgrade the plugin in his instance or not.
Uninstallation
The framework will expose some hook so that the plugin can uninstall any time by calling the methods.
and each plugin also should give some process to uninstall itself like Unregister from the framework.
- No labels