This reference covers all APIs exposed by the `embark` object passed to every custom created plugin. Make sure to read the section on [creating a plugin](/docs/creating_plugins.html) first.
## .pluginConfig
`pluginConfig` is an object that contains the configuration for your plugin specified in the project's `embark.json`. For example, if a plugin configuration like the following:
This call will return the content of the current asset file so the plugin can transform it in some way. Typically this is used to implement pipeline plugins such as Babel, JSX, sass to css, etc.
`matchingFiles` is an array of matching files the plugin should be called with for e.g `['**/*.js', '!vendor/jquery.js']` matches all JavaScript files except `vendor/jquery.js`.
This call is used to specify a configure of one or more contracts in one or several environments. This is useful for specifying the different configurations a contract might have depending on the enviroment. For instance in the code bellow, the `DGDToken` contract code will redeployed with the arguments `100` in any environment, except for the livenet since it's already deployed there at a particular address.
Typically this call is used in combination with `embark.addContractFile`
`contractsConfig` is an object in the same structure as the one found in the contracts configuration at `config/contracts.json`. The users own configuration will be merged with the one specified in the plugins.
Typically this call is used in combination with `embark.registerContractConfiguration`. If you want to make the contract available but not automatically deployed without the user specifying so you can use `registerContractConfiguration` to set the contract config to `deploy: false`, this is particularly useful for when the user is meant to extend the contract being given (e.g `contract MyToken is StandardToken`)
`file` is the contract file to add to embark, the path should relative to the plugin.
```
module.exports = function(embark) {
embark.addContractFile("./DGDToken.sol");
}
```
## .addFileToPipeline(file, options)
This call is used to add a file to the pipeline so it's included with the dapp on the client side.
`file` is the file to add to the pipeline, the path should relative to the plugin.
`intendedPath` is the intended path outside of the plugin
Available options:
*`skipPipeline` - If `true` it will not apply transformations to the file. For
example if you have a babel plugin to transform es6 code or a minifier plugin, setting this to
This call can be used to add handler to process contract code after it was generated, but immediately before it is going to be deployed.
It is useful to replace placeholders with dynamic values.
Available options:
*`embarkDeploy` - instance of Deploy class. Has following fields: web3, contractsManager, logger, env, chainConfig, gasLimit.
*`pluginConfig` - plugin configuration object from embark.json
*`deploymentAccount` - address of account which will be used to deploy this contract
*`contract` - contract object.
*`callback` - callback function that handler must call with result object as the only argument. Result object must have field contractCode with (un)modified code from contract.code
You can use the callback argument instead of the callback option if you prefer. It needs the same result object.
expected return: ignored
```
module.exports = function(embark) {
embark.registerBeforeDeploy(function(options) {
var code = options.contract.code.replace(/deaddeaddeaddeaddeaddeaddeaddeaddeaddead/ig, 'c0dec0dec0dec0dec0dec0dec0dec0dec0dec0de');
options.callback({ contractCode: code });
});
}
```
## .registerClientWeb3Provider(callback(options))
This call can be used to override the default web3 object generation in the dapp. it's useful if you want to add a plugin to interact with services like http://infura.io or if you want to use your own web3.js library extension.
options available:
* rpcHost - configured rpc Host to connect to
* rpcPort - configured rpc Port to connect to
* blockchainConfig - object containing the full blockchain configuration for the current environment
The generated string will be used to create the contract objects in the Embark console and will be generated in `embarkArtifacts` so that the Dapp can use them.
Registers a new compiler for a specific contract extension.
Arguments:
- **extension**: The file extension (e.g: `.sol`)
- **callback**: Function called by Embark with the contract files that the plugin should process
- **contractFiles**: Array of files that need to be compiled
- **doneCallback(error, result)**: The final callback to call once every file is compiled or when there is an error
- **error**: Error string or object when something goes wrong
- **result**: An object containing the compiled contracts result (key: contractName, value: contract object) or, `false` if your plugin is not compatible
To print messages to the embark log is it better to use ``embark.logger`` instead of ``console``.
e.g ``embark.logger.info("hello")``
## .events.on(eventName, callback(*args))
This call is used to listen and react to events that happen in Embark such as contract deployment
* eventName - name of event to listen to
* available events:
*`contractsDeployed` - triggered when contracts have been deployed
*`file-add`, `file-change`, `file-remove`, `file-event` - triggered on a file change, args is (filetype, path)
*`outputDone` - triggered when dapp is (re)generated
*`firstDeploymentDone` - triggered when the dapp is deployed and generated for the first time
*`check:backOnline:serviceName` - triggered when the service with ``serviceName`` comes back online
*`check:wentOffline:serviceName` - triggered when the service with ``serviceName`` goes offline
*`log` - triggered on a log, args is (logLevel, logMsg)
*`contractsState` - list of contracts, their deployment status, address, etc..
*`servicesState` - list of services and their state
*`exit`: - triggered when embark is terminating
*`deploy:contract:deployed`: - triggered when a contract is deployed, the callback will contain the contract object
*`deploy:contract:undeployed`: - triggered when a contract was not deployed (typically because there is no need), the callback will contain the contract object
*`deploy:contract:error`: - triggered when a contract couldn't be deployed due to an error, the callback will contain the contract object
*`deploy:contract:receipt`: - triggered on a contract deployment (succefull or not), the callback will contain the resulting receipt
*`contractsState`: - triggered often, whenever there are changes to contracts, the callback will contain an object containing the contract names, address and state, etc..
*`deploy:beforeAll`: - triggered before contract deployment starts
*`contracts:deploy:afterAll`: - triggered after contract deployment starts
embark.logger.info("plugin says: you just changed the contract at " + path);
}
});
}
```
### .events.request(requestName, callback(*args))
This call is used to request a certain resource from Embark
* requestName - name of request to listen to
* available requests:
* (`deploy:contract`, contractObj) - deploys a particular contract through embark
* (`runcode:eval`, code) - runs js code in the Embark engine.
* (`runcode:register`, cmdName, cmdObj) - 'registers' a variable cmdName to correspond to a js object cmdObj (note: this should be done thourgh an emit);
* (`contracts:list`) - returns a list a callback containing (err, contractList) containing a collection of available contracts
* (`compiler:contracts`, contractFiles) - requests embark to compile a list of files, will return a compiled object in the callback
* (`services:register`, serviceName, checkCallback) - requests embark to register a service, it will execute checkCallback every 5 seconds, the callback should return an object containing the service name and status (See embark.registerServiceCheck)
* (`console:command`, cmd) - execute a command in the console
This call is used to register a service in embark so it's periodically checked.
It will be displayed in the Embark Dashboard, and will also trigger events such as ``check:backOnline:yourServiceName`` and ``check:backOffline:yourServiceName``
* serviceName - name of service (string)
* callback:
*`name` - name/text to display (string)
*`status` - status of the service (string, `on` or `off` or `warn`)
* time (optional) - ms interval to call the callback (default: 5000 ms)
This call is used to add a new cmd to ``embark upload`` to upload the dapp to a new storage service. In the example, `run` doesn't exist. You need to import a library that runs shell commands like [shelljs](https://www.npmjs.com/package/shelljs)
```
module.exports = function(embark) {
embark.registerUploadCommand("ipfs", function() {
run("ipfs add -r dist/");
});
}
```
## .addCodeToEmbarkJS(code)
This call is used to add code to the embark.js library. It's typically used to extend it with new functionality, new storage providers, new communication providers, etc..
This call is used to add code to be executed in the initialization under the condition that ``initCondition`` returns true. For example this can be used to set the storage provider of EmbarkJS to ipfs if ipfs is enabled as a provider in the config
* providerType - type of provider (string, "storage" or "communication")
* code - code to add (string)
* callback:
* "config" - config of the ``providerType``
```
module.exports = function(embark) {
let code = "\nEmbarkJS.Storage.setProvider('ipfs')";