12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*
- ssl.me - SSL Plugin. This is the interface above SSL providers.
- */
- Me.load({
- targets: {
- ssl: {
- configurable: true,
- description: 'Secure Socket Layer Interface',
- discovers: [ 'mbedtls', 'openssl', 'matrixssl', 'nanossl' ],
- uses: [ 'mbedtls', 'openssl', 'matrixssl', 'nanossl' ],
- config: function (target) {
- let provider
- for each (p in target.discovers) {
- let ptarget = me.targets[p]
- if (ptarget.explicit) {
- if (ptarget.enable) {
- provider = p
- break
- } else if (ptarget.explicit != 'without') {
- throw 'Required SSL provider "' + p + '" is not enabled'
- }
- }
- }
- /*
- Select an ssl provider
- */
- for each (p in target.discovers) {
- if (p == provider) {
- continue
- }
- if (me.targets[p] && me.targets[p].enable && !provider) {
- provider = p
- } else if (provider) {
- me.targets[p].enable = false
- me.targets[p].diagnostic = 'Using the "' + provider + '" SSL provider instead.'
- }
- }
- if (provider) {
- let from = me.targets[provider]
- target.provider = provider
- for each (field in ['defines', 'includes', 'libraries', 'libpaths']) {
- if (from[field]) {
- target[field] = from[field]
- }
- }
- target.description += ' (' + me.targets[provider].description + ')'
- } else {
- throw 'No enabled SSL providers.\n'
- }
- },
- without: function(target) {
- for each (p in target.discovers) {
- me.targets[p].enable = false
- me.targets[p].diagnostic = 'configured --without ssl'
- }
- }
- }
- }
- })
|