|
| 1 | +/** |
| 2 | + * Copyright 2016 IBM Corp. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + **/ |
| 16 | +var cfenv = require('cfenv'); |
| 17 | +var appEnv = cfenv.getAppEnv(); |
| 18 | + |
| 19 | +function ServiceUtils() {} |
| 20 | +ServiceUtils.prototype = { |
| 21 | + //function to determine if WDC service is bound |
| 22 | + checkServiceBound: function(serviceName) { |
| 23 | + var regex = new RegExp('(http|https)(://)([^\/]+)(/)('+serviceName+').*'); |
| 24 | + var services = appEnv.getServices(); |
| 25 | + for (var service in services) { |
| 26 | + if (services[service].hasOwnProperty('credentials')) { |
| 27 | + if(services[service].credentials.hasOwnProperty('url')){ |
| 28 | + if(services[service].credentials.url.search(regex) === 0){ |
| 29 | + return true; |
| 30 | + } |
| 31 | + } |
| 32 | + } |
| 33 | + } |
| 34 | + return false; |
| 35 | + }, |
| 36 | +}; |
| 37 | + |
| 38 | +var serviceutils = new ServiceUtils(); |
| 39 | + |
| 40 | +module.exports = serviceutils; |
0 commit comments