aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTommy Carpenter <tommy@research.att.com>2017-08-22 18:07:40 -0400
committerTommy Carpenter <tommy@research.att.com>2017-08-22 18:08:22 -0400
commit647addf5d6c78b2b8c941cc9cd8c57a3eb9f30b4 (patch)
tree4de88ed0c8b175b271b5d7da6076ebf3da40e466
parentc7b6dc90e4cde0ac8524539fc02ab2943c88048a (diff)
[DCAEGEN2-42] Initial commit of broker
Change-Id: I1c553c82d5b39a4c134c44e2320ac0e44785e0ef Signed-off-by: Tommy Carpenter <tommy@research.att.com>
-rw-r--r--.gitignore20
-rw-r--r--.gitreview4
-rw-r--r--Changelog.md107
-rw-r--r--Dockerfile30
-rw-r--r--LICENSE.txt31
-rw-r--r--README.md131
-rwxr-xr-xbin/build_and_check.sh5
-rwxr-xr-xbin/build_and_run.sh8
-rwxr-xr-xbin/build_and_test.sh12
-rwxr-xr-xbin/build_and_unit_test.sh5
-rw-r--r--config/sys.config86
-rw-r--r--config/vm.args9
-rw-r--r--config_template.json1
-rw-r--r--doc/cdap_broker.pngbin0 -> 351432 bytes
-rwxr-xr-xentry.sh20
-rwxr-xr-xget_version.sh3
-rw-r--r--rebar.config74
-rw-r--r--src/application.hrl28
-rw-r--r--src/cdap_interface.erl363
-rw-r--r--src/cdap_interface_tests.erl34
-rw-r--r--src/cdapbroker.app.src23
-rw-r--r--src/cdapbroker_app.erl94
-rw-r--r--src/cdapbroker_sup.erl55
-rw-r--r--src/consul_interface.erl139
-rw-r--r--src/httpabs.erl118
-rw-r--r--src/httpabs_tests.erl33
-rw-r--r--src/logging.erl157
-rw-r--r--src/resource_handler.erl465
-rw-r--r--src/util.erl192
-rw-r--r--src/util_tests.erl53
-rw-r--r--src/workflows.erl324
-rw-r--r--src/workflows_tests.erl27
-rw-r--r--swagger/swagger.html1899
-rw-r--r--swagger/swagger.json560
-rw-r--r--swagger/swagger.yaml418
-rw-r--r--test/apitest/apitest_SUITE.erl826
36 files changed, 6354 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..27bdf03
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,20 @@
+build_and_cover.sh
+Mnesia.nonode@nohost/
+rebar3.crashdump
+.DS_Store
+.rebar3
+rebar.lock
+_*
+.eunit
+*.o
+*.beam
+*.plt
+*.swp
+*.swo
+.erlang.cookie
+ebin
+log
+erl_crash.dump
+.rebar
+logs
+_build
diff --git a/.gitreview b/.gitreview
new file mode 100644
index 0000000..0699f50
--- /dev/null
+++ b/.gitreview
@@ -0,0 +1,4 @@
+[gerrit]
+host=gerrit.onap.org
+port=29418
+project=dcaegen2/platform/cdapbroker.git
diff --git a/Changelog.md b/Changelog.md
new file mode 100644
index 0000000..0794b83
--- /dev/null
+++ b/Changelog.md
@@ -0,0 +1,107 @@
+# Change Log
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/)
+and this project adheres to [Semantic Versioning](http://semver.org/).
+
+## [4.0.2] - July 26 2017
+* Make testing magical so that it runs on localhost or in Docker the same
+* Code cleanups in workflows thanks to abstraction provided by Garry
+
+## [4.0.1] - July 7 2017
+* Work with config binding service 1.0.0.
+
+## [4.0.0] - June 28 2017
+* Policy reconfiguration work. There are two new reconfiguration endpoints: smart and app-preferences.
+* The smart interface allows you to send a JSON of keys that are either in app_preferences, app_config, or both. The broker figures out the overlaps, refreshes them in Consul, and makes the appropriate CDAP reconfiguration calls. The preferences API allows you to simply reset a CDAP app's application preferences (analagous to the call that was already in here for app_config).
+* I broke the original app_config API to make all three reconfiguration APIs consistent. You give it "reconfiguration_type" and "config" for all three APIs. And hopefully for any future reconfiguration APIs, e.g., for hydrator pipelines.
+* Hardcodes the cute short name "config_binding_service", now that DCAE is using short names. Obliterates usage of the env variable and removes passing it around all over the place.
+
+## [3.4.8] - May 16 2017
+* support JARs hosted at https webservers
+* trim JAR URLs to prevent problems due to whitespace
+* add a primitive get_version.sh script for the build team to use.. needs to be actually implemented instead of printing a fixed version right now..
+
+## [3.4.7] - May 15 2017
+* EELF part 6... pretty much done at this point, some less-important logs could still be cleaned up maybe.
+* All HTTP requests made from the broker to another HTTP API now include the XER.
+* All functions in `src/workflows` are now EELF compliant, and produce detailed metrics logs. Workflows is the workhorse of all the major API calls so this tracks pretty much all requests the broker makes to to it's job.
+* App Config reconfiguration is now a workflow
+
+## [3.4.6] - May 12 2017
+* All HTTP GETs issued by this broker now pass an/the XER... even if the downstream server is not expecting it #ExpectUs..
+
+## [3.4.5] - May 10 2017
+* error EELF field implemented, three important Metrics EELF fields added
+* src/workflows has no more lager (non EELF) statements... though it could use *more* EELF statements because part of it is not covered by logs..
+
+## [3.4.4] - Apr 28 2017
+* four more EELF fields implemented, one ignored.
+
+## [3.4.3] - Apr 27 2017
+* Fixes audit records not being used at the end of API calls (they now are, and elapsed time is computed)
+* Implements ISO8601 timestamps in all log records
+* Implements a few more of the EELF fields, still more to go
+
+## [3.4.2] - Apr 26 2017
+* Towards Implementing the "ONAP logging requirements" aka "EELF":
+* Logs are now written to /tmp/log/cdapbroker/... and are in three files: error.log, audit.log, metrics.log (logs are still also written to stdout)
+* X-ECOMP-RequestID is now parsed and logged, and generated if missing, for all main broker APIs. It does not yet generate it's own for the call to the CBS.
+* EELF logging functions added to a new source file `src/logging`.
+* The field list formats and delimiters in each of those follow version 1.0 of the ONAP logging requirements. However, many required fields are left blank right now, this needs to be fixed. Parsing the fields should work though as each has the correct positional arguments and correct number of positions.
+* Only functions in `src/resource_handler` are using the EELF logging functions right now, this needs to be fixed
+
+## [3.4.1]
+* Move tests, update README
+
+## [3.4.0]
+* Only healthcheck programs that are part of an intial program-flowlet PUT. The use case for this was a CDAP application that had flows that were purposely not wanting to be started by the component developer (whether that is valid is another question...)
+ The broker thought their application was in an unhealthy state because it was sourcing the programs to get the health of from CDAP itself, and not the intial PUT request.
+ This actually goes back to the way healthcheck used to work, but this now does it in a better way, because the application table is now used for multiple types of CDAP apps
+* To accomplish the above, this creates a "supplementary" table for program-flowlet apps, that right now stores the programs that are in the intial PUT, but could be extended later with more properties.
+* Paves the way for a "hydrator supplemental" table if that is ever needed
+* Starts the painful process of adding function and type definitions so that the Erlang Dialyzer ("bolt on" static typing tool) is of some use; sick of huge positional tuples
+* Fixes a bug where undeploy would not "plow through" if CDAP was totally unreachable (or gone)
+
+## [3.3.0]
+* Broker now includes it's own API version in information endpoint
+
+## [3.2.1]
+* Fix an error found in HTTP error reporting (a bad request type of error is now correctly caught)
+* Fix errors in test cases found while testing a new version of CDAP. Tests are now more agnostic to json key ordering.
+
+## [3.2.0]
+* Returns more information in the "infomation endpoint" ('/'). Specifically, now returns the CDAP GUI port and the CDAP cluster version.
+This is mostly to aid component developers in testing that are hitting the broker via the DCAE CLI tool.
+* Introduces the first unit test (eunit; the rest of the test suite is ran via common_test).
+
+## [3.1.0]
+* Persistence. This is an important feature. This persists the MNesia database to disk so that you can stop and start the broker without losing state. NOTE: Catching Docker SIGTERM is not yet implemented. It turns out this is non-trivial to do in Erlang. So, in rare cases, if `docker stop` is called immediately after `delete`, the deletion may not persist to the database.
+* Erlang 19.3 is supposed to handle SIGTERM at the BEAM level. That is not out yet as Docker (it was just announced a week ago.).
+The proper way to shut down an Erlang node is to execute a command to the BEAM.
+I don't know what Erlang developers did for 20 years, but to date the BEAM does not handle SIGTERM, so a wrapper script is needed if you want to kill the BEAM gracefully on a SIGTERM.
+This was needed because this broker runs in Docker. With database persistence, the broker has a graceful stop function that ensures any transactions in cache (RAM) are persisted to disk before the shutdown.
+I need this function called, so I need SIGTERM to be handled in a way that gracefully terminates the VM, which in turn gracefully shuts down my application, which in turn calls this function. Supposedly, this will be no longer necessary soon: http://www.erlang.org/news/110
+
+## [3.0.0]
+* Waterfall CDAP_CLUSTER_TO_MANAGE
+* Handle CBS moving while broker is up
+* For program-flowlet apps, return configuration when info requested
+* make /application only return the appnames (API change)
+* make testing more stable by not using order-dependent Expected JSONs
+* Reconfiguring with an invalid request returns a 4xx instead of 5xx now (bugfix)
+* Dead programs/flowlets now triggers a failing healthcheck (bugfix)
+* Rename "reconfigure_app_config" to make way for reconfiguring preferences (API change)
+
+## [2.2.0]
+* Implements healthchecking for Pipelines based on Terry S's healthCheck.py script
+
+## [2.1.0]
+* Added a text file of some example commands that can be useful for demos and understanding this repo
+* Fixed a bug in a workaround for https://issues.cask.co/browse/CDAP-7191?filter=-2
+* Added the ability to deploy Pipelines that contain custom JARs
+
+## [2.0.0]
+
+* Add support for primitive CDAP Pipelines. Required an API break because the API caller has to specify whether the application is a program-flowlet style app or a hydrator pipeline.
+* Changelog did not exist before this...
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..ef4f76e
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,30 @@
+FROM erlang:19.2
+MAINTAINER tommy at research dot eh tee tee dot com
+
+ENV TERM=xterm
+
+#copy files into repo
+ADD src /tmp/src
+ADD test /tmp/test
+ADD rebar.config /tmp
+ADD entry.sh /tmp
+ADD config /tmp/config
+
+WORKDIR /tmp
+
+#make sure there is no leftover release
+RUN rm -rf _build/
+
+#build
+RUN rebar3 upgrade
+RUN rebar3 release
+
+#fail the docker build if unit tests fail
+RUN rebar3 eunit
+
+#set the broker test type so the integration test can be run inside Docker
+ENV BROKER_TEST_TYPE=DOCKER
+
+#run
+EXPOSE 7777
+ENTRYPOINT ["/tmp/entry.sh"]
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..7c1e63a
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,31 @@
+============LICENSE_START=======================================================
+org.onap.dcae
+================================================================================
+Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+================================================================================
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+============LICENSE_END=========================================================
+
+ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+===================================================================
+Licensed under the Creative Commons License, Attribution 4.0 Intl. (the "License");
+you may not use this documentation except in compliance with the License.
+You may obtain a copy of the License at
+ https://creativecommons.org/licenses/by/4.0/
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..14aa99c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,131 @@
+# cdapbroker
+This repo is the thing in red:
+![Alt text](doc/cdap_broker.png?raw=true)
+
+The high level workflow for how this broker is to be used in the DCAE platform is as follows
+<ol>
+<li> CLoudify wants to deploy a new CDAP app. It deploys it via the broker. </li>
+<li> This broker registers with Consul and lights up a metrics, health, and configuration change endpoint for the app </li>
+<li> The broker pushes the app's configuration into Consul for the Ops view layer (documentation purposes)
+<li> At periodic intervals the health endpoints (plural when mutliple CDAP apps are registered), provided by this broker, are pinged by consul </li>
+<li> At peridic intervals, some metrics system (TBD) pulls then pushes metrics from the apps </li>
+<li> Occasionaly some higher power decides to update configuration for a running CDAP app. They make the change via the broker. </li>
+<li> Finally on a service undeploy Cloudify deletes the CDAP app via the broker </li>
+</ol>
+
+# Purpose & Responsibilities
+The purposes of this broker are as follows:
+
+1. To isolate CDAP developers from the complexity of the DCAE platform. The only thing CDAP developers should need to interface with are the CDAP APIs. They should not need to know about concepts like "service discovery" or "confiuration discovery". They should specify what external systems they should talk to in their configuration template and the rest should be hidden from them. </li>
+
+2. To minimize the onboarding process for CDAP developers. Their *only* deliverables should be a JAR (with built in metrics), and their configuration template. </li>
+
+3. Provide Consul interfacing, metrics, healthchecks, and configuration updates bewtween CDAP applications and the rest of the platform. Specifically, this has northbound interfaces for
+ <ol>
+ <li> providing initial configuration of a CDAP app</li>
+ <li> changing configuration of a CDAP app</li>
+ <li> getting the custom metrics of a CDAP app</li>
+ <li> healthchecking a CDAP app</li>
+ </ol>
+ And talks to the CDAP APIs in various ways southbound to achieve these objectives.
+
+# CDAP service discovery
+When registering an application (`appname`) with the broker, the broker registeres *itself* as the Address and Port of that CDAP application. That is because a CDAP application can have multiple services behind it, so there is no way to register a CDAP application in Consul.
+
+The CDAP client library for collectors (or anything upstream of a CDAP app) will be required to do the following:
+
+1. do a consul service discovery GET on `appname`
+2. Take that serviceaddress and port, and form `serviceaddress:port/application/appname`
+3. Do a GET on that, which is the broker
+4. Parse out `connectionurl` and `serviceendpoints`, which is input and output connection information for the CDAP app. See the swagger spec (in the swagger folder in this repo) for the schema of those.
+
+# Special charcters: hackaround
+CDAP application names cannot have special characters in them.
+When this broker talks southbound to CDAP, it maps `APPNAME` into `APPNAME_WITHOUT_SPECIAL_CHARACTERS`. So in CDAP you will see the latter. However,
+ when communicating with this broker API, you should still pass in `APPNAME`. The conversion is handled internally.
+
+# Logs
+The broker conforms to ONAP/ECOMP logging requirements (aka EELF). The logs are written to `/tmp/log/cdapbroker/..`. If running in Docker, you'll want to mount this outside into a safe store.
+
+# Running and testing
+
+## Runtime Assumptions
+In a real deployment setting, these assumptions are handled by the ONAP Docker plugin when this is launched.
+When doing local testing, you must set up these assumptions yourself.
+
+1. `HOSTNAME` is set as an env variable in this runtime environment and is a Consul key that holds this broker's configuration.
+
+2. `CONSUL_HOST` is set as an env variable and is either an IP address or a resolvable name (Via real DNS whereever you are running this). It should not include the port, the broker currently hardcodes 8500.
+
+3. `CDAP_CLUSTER_TO_MANAGE` is an env variable, and cooresponds to a CDAP cluster registered in `CONSUL_HOST`. This is the CDAP cluster the broker will manage when it runs. The CDAP API port must be registered as well, that is, the broker does *not* hardcode "well known ports" and retrieves it from Consul. (Currently for CDAP 3 that port is 10000 and CDAP 4 it is 11011.)
+
+4. `CONFIG_BINDING_SERVICE` is set as an env variable, and cooresponds to the name that the CBS is registered in `CONSUL_HOST`.
+
+5. The user that runs this application needs write access to the directory '/var/mnesia'. This works in Docker, but on your local machine, this may not be owned by your local user.In this case, create the dictory and CHOWN it to your user. The broker writes it's database backup to that location.
+
+## The integration test suite
+Bestides the unit tests, the broker comes with an integration suite that touches both Consul and CDAP (the ones pointed to via `CONSUL_HOST` and `CDAP_CLUSTER_TO_MANAGE`. It will actually deploy test apps, test configurations into Consul, and then delete them after the test suite is over. Please note that this is not a unit test, it touches the real systems the broker is connected to. It can be used to verify a signifigant portion of the DCAE, including CDAP, Consul, the broker, and the config binding service.
+
+The integration test suite requires several test artifacts to be loaded into a Nexus Raw Webserver. In the test suite, the root of this server is read from the env `NEXUS_RAW_ROOT`. Thus, in order to run the integration suite, in addition to the above runtime assumptions, this env must be set.
+(TODO: Talk about the specific artifacts to be loaded in)
+
+## Docker
+
+### Build
+Note: doing a Docker build *automatically* runs the unit tests. In fact, the docker container will fail to build if any unit tests fail.
+
+ docker build --rm -t cdapbroker:VERSION .
+
+### Run
+
+ docker run -v /tmp/log/cdapbroker/:/tmp/log/cdapbroker/ -d -e CDAP_CLUSTER_TO_MANAGE="cdap_cluster" -e HOSTNAME="cdap_broker" -e CONSUL_HOST="XXXX" -e CONFIG_BINDING_SERVICE="config_binding_service" -p 7777:7777 DOCKER_REGISTRY/cdapbroker:VERSION
+
+(Fill in `CONSUL_HOST` and `DOCKER_REGISTRY`)
+
+### Running the Integration Suite in Docker
+
+ docker exec -it CONTAINER_ID_HERE /bin/bash
+ export NEXUS_RAW_ROOT=XXXX
+ rebar3 ct
+
+## Local Development
+The below is for building, running, and testing on your local machine. This requires Erlang 19+ and rebar3 on your machine. These scripts require the runtime assumptions mentioned above.
+
+### Running locally
+To use this script, you will have to modify `CONSUL_HOST` for your enviornment.
+
+./bin/build_and_run.sh
+
+### Running the integration test suite
+To use this script, you will have to modify `CONSUL_HOST` and `NEXUS_RAW_ROOT` for your enviornment.
+
+ ./bin/build_and_test.sh
+
+### Running the unit tests
+
+ ./bin/build_and_unit_test.sh
+
+### Running the Dialyzer
+This is a type checking tool that attempts to find errors based on types.
+Warning, right now very few things are typed/specs, so the usefulness of this is limited:
+
+ ./bin/build_and_check.sh
+
+# On "Leave No Trace"
+The CDAP broker does not currently implement "leave no trace", because it is not really clear in DCAE when this should be done, or whether the orchestrator should be allowed to invoke such deadly operations, i.e., maybe this should be done by an operations team.
+Leave No Trace here means deleting streams and datasets after an application is deleted from the broker.
+The problem is that streams and datasets can be shared between applications, like a shared Kafka queue used by two CDAP applications.
+Streams and datasets are created by the CDAP deployment API when an application that uses a streamname or a dataset name for the first time, however subsequent apps can be deployed using those, without re-creating them.
+Moreover, subsequently deployed apps may be *expecting* that data already exists in some dataset.
+Consider the case of deplyoying A1 that creates S1, then deploying A2 that uses S1, then wanting to undeploy A1. Deleting the stream or it's data on the deletion of A1 would clobber A2.
+
+This leaves the question of who/what/when/where/why/how streams and datasets should be cleaned up from CDAP clusters in DCAE.
+For now, this is an open question. It can always be done on the CDAP management interface by an operations team in the meantime.
+
+# On Version Bumping (Development)
+Currently the CDAP Broker Version is in four places in this repo..
+1. rebar.config
+2. src/cdapbroker.app.src
+3. get_version.sh (could be made smarter, parse rebar.config)
+4. swagger spec
+If you make a developmemt change, please bump in all places until this is resolved..
diff --git a/bin/build_and_check.sh b/bin/build_and_check.sh
new file mode 100755
index 0000000..7d8b4e1
--- /dev/null
+++ b/bin/build_and_check.sh
@@ -0,0 +1,5 @@
+#!/usr/local/bin/fish
+rm -rf _build/;
+rebar3 upgrade;
+rebar3 release;
+dialyzer -r _build/default/lib/cdapbroker/ebin/
diff --git a/bin/build_and_run.sh b/bin/build_and_run.sh
new file mode 100755
index 0000000..8d48716
--- /dev/null
+++ b/bin/build_and_run.sh
@@ -0,0 +1,8 @@
+#!/usr/local/bin/fish
+rm -rf /tmp/log/cdapbroker/*;
+rebar3 release;
+set -x CDAP_CLUSTER_TO_MANAGE "cdap";
+set -x CONSUL_HOST "XXXX";
+set -x CONFIG_BINDING_SERVICE "config_binding_service";
+set -x HOSTNAME "cdap_broker";
+./_build/default/rel/cdapbroker/bin/cdapbroker
diff --git a/bin/build_and_test.sh b/bin/build_and_test.sh
new file mode 100755
index 0000000..b0456f4
--- /dev/null
+++ b/bin/build_and_test.sh
@@ -0,0 +1,12 @@
+#!/usr/local/bin/fish
+rm -rf /tmp/log/cdapbroker/*;
+rebar3 release;
+set -x NEXUS_RAW_ROOT "XXXX";
+set -x CDAP_CLUSTER_TO_MANAGE "cdap";
+set -x CONSUL_HOST "XXXX";
+set -x CONFIG_BINDING_SERVICE "config_binding_service";
+set -x HOSTNAME "cdap_broker";
+set -x REBAR3_ERL_ARGS "-sname cdapbroker@localhost";
+rebar3 local install;
+env DEBUG=1 ~/.cache/rebar3/bin/rebar3 ct;
+rebar3 eunit
diff --git a/bin/build_and_unit_test.sh b/bin/build_and_unit_test.sh
new file mode 100755
index 0000000..7a2c757
--- /dev/null
+++ b/bin/build_and_unit_test.sh
@@ -0,0 +1,5 @@
+#!/usr/local/bin/fish
+rm -rf _build/;
+rebar3 upgrade;
+rebar3 release;
+rebar3 eunit
diff --git a/config/sys.config b/config/sys.config
new file mode 100644
index 0000000..3b8edc0
--- /dev/null
+++ b/config/sys.config
@@ -0,0 +1,86 @@
+[
+ {sasl, [{utc_log, true}]},
+
+ %% {size, 10485760}, {date, "$D0"}, {count, 5} -> This tells lager to log error and above messages to error.log and to rotate the file at midnight or when it reaches 10mb, whichever comes first, and to keep 5 rotated logs in addition to the current one
+
+ {lager, [
+ {colored, true},
+ {log_root, "/tmp/log/cdapbroker"},
+
+ %%Any logs just starting with lager: will go into stdout and cdapbroker.log. These are the default for non-EELF caught logs
+ {handlers,
+ [
+ {lager_console_backend, info},
+ {lager_file_backend, [{file, "cdapbroker.log"},
+ {level, debug},
+ {formatter, lager_default_formatter},
+ {size, 10485760},
+ {date, "$D0"},
+ {count, 5},
+ %% Message will hold the delimited fields that the logging standard actually wants
+ {formatter_config, [message, "--", module ,":", function, ":", line, "\n"]}
+ ]}
+ ]
+ },
+ %%EELF logs have special sink names: error:, audit:, metrics:, and optionally debug:
+ %%these sinks will log to their respective files, and for sanity reasons, stdout as well
+ {extra_sinks,
+ [
+ {audit_lager_event,
+ [{handlers,
+ [
+ {lager_console_backend, debug},
+ {lager_file_backend,
+ [{file, "audit.log"},
+ %regarding level, we want the lowest becaue audit:anything will show up in audit.log
+ {level, debug},
+ {formatter, lager_default_formatter},
+ {size, 10485760},
+ {date, "$D0"},
+ {count, 5},
+ %% Message will hold the delimited fields that the logging standard actually wants
+ {formatter_config, [message, "--", module ,":", function, ":", line, "\n"]}]
+ }
+ ]
+ }]
+ },
+ {metrics_lager_event,
+ [{handlers,
+ [
+ {lager_console_backend, debug},
+ {lager_file_backend,
+ [{file, "metrics.log"},
+ %regarding level, we want the lowest becaue metrics:anything will show up in metrics.log
+ {level, debug},
+ {formatter, lager_default_formatter},
+ {size, 10485760},
+ {date, "$D0"},
+ {count, 5},
+ %% Message will hold the delimited fields that the logging standard actually wants
+ {formatter_config, [message, "--", module ,":", function, ":", line, "\n"]}]
+ }
+ ]
+ }]
+ },
+ {error_lager_event,
+ [{handlers,
+ [
+ {lager_console_backend, debug},
+ {lager_file_backend,
+ [{file, "error.log"},
+ %regarding level, we want the lowest becaue error:anything will show up in error.log
+ {level, debug},
+ {formatter, lager_default_formatter},
+ {size, 10485760},
+ {date, "$D0"},
+ {count, 5},
+ %% Message will hold the delimited fields that the logging standard actually wants
+ {formatter_config, [message, "--", " [",severity,"] ", module ,":", function, ":", line, "\n"]}]
+ }
+ ]
+ }]
+ }
+ ]
+ }
+ ]}
+].
diff --git a/config/vm.args b/config/vm.args
new file mode 100644
index 0000000..cbe012c
--- /dev/null
+++ b/config/vm.args
@@ -0,0 +1,9 @@
+# only show the programmed prompt
+-noshell
+
+## Name of the node
+-sname cdapbroker@localhost
+
+## Cookie for distributed erlang
+-setcookie cdapbroker
+
diff --git a/config_template.json b/config_template.json
new file mode 100644
index 0000000..1775b8f
--- /dev/null
+++ b/config_template.json
@@ -0,0 +1 @@
+{"autoderegisterafter": "10m", "cdap_cluster_to_manage": "{{cdap_cluster}}", "bindingttw": 5, "hcinterval": "5s"}
diff --git a/doc/cdap_broker.png b/doc/cdap_broker.png
new file mode 100644
index 0000000..712cdc2
--- /dev/null
+++ b/doc/cdap_broker.png
Binary files differ
diff --git a/entry.sh b/entry.sh
new file mode 100755
index 0000000..2b60caf
--- /dev/null
+++ b/entry.sh
@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+echo "if testing locally send SIGTERM to $$"
+
+term_handler() {
+ echo "Stopping the Erlang VM gracefully"
+ #/usr/local/Cellar/erlang/19.1/lib/erlang/lib/erl_interface-3.9.1/bin/erl_call -c cdapbroker -s -a 'init stop' -n 'cdapbroker@localhost'
+ /usr/local/lib/erlang/lib/erl_interface-3.9.2/bin/erl_call -c cdapbroker -s -a 'init stop' -n 'cdapbroker@localhost'
+ echo "Erlang VM Stopped"
+}
+
+trap term_handler SIGQUIT SIGINT SIGTERM
+
+./_build/default/rel/cdapbroker/bin/cdapbroker &
+PID=$!
+
+echo "Erlang VM Started"
+#wait $PID
+while kill -0 $PID ; do wait $PID ; EXIT_STATUS=$? ; done
+echo "Exiting Wrapper."
+exit $EXIT_STATUS
diff --git a/get_version.sh b/get_version.sh
new file mode 100755
index 0000000..6883146
--- /dev/null
+++ b/get_version.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+#todo... build this so that it parses automatically
+echo "4.0.3
diff --git a/rebar.config b/rebar.config
new file mode 100644
index 0000000..b62c0da
--- /dev/null
+++ b/rebar.config
@@ -0,0 +1,74 @@
+{relx, [
+ {release,
+ {cdapbroker,"4.0.3"},
+ [cdapbroker]
+ },
+ %{extend_start_script,true},
+ %
+ %for the following two fancyiness see https://www.rebar3.org/docs/releases
+ %Supply our own vm.args
+ {vm_args, "config/vm.args"},
+ %supply our own application configuration
+ {sys_config, "config/sys.config"}
+ ]}.
+
+{deps, [
+ {jiffy, ".*", {git, "git://github.com/davisp/jiffy.git", {branch, "master"}}},
+ %{leptus, ".*", {git, "git://github.com/s1n4/leptus.git", {branch, "master"}}},
+ {leptus, ".*", {git, "git://github.com/tommyjcarpenter/leptus.git", {branch, "version"}}},
+ {lager, ".*", {git, "git://github.com/basho/lager.git", {branch, "master"}}},
+ %generate RFC compliant UUIDs
+ {uuid, ".*", {git, "https://github.com/avtobiff/erlang-uuid.git", {branch, "master"}}},
+ %generate ISO8601 timestamps
+ {iso8601, {git, "https://github.com/erlsci/iso8601.git", {tag, "1.2.3"}}}
+ ]}.
+
+%%% Require OTP 19.2 at a bare minimum
+{minimum_otp_vsn, "19"}.
+
+%% Plugins
+{shell, [
+ {apps, [lager, sync, gen_rpc]}
+]}.
+
+% Erlang options
+{erl_opts,
+ [
+ %%lager first
+ %%support lager introspecting module/line/function
+ {parse_transform, lager_transform},
+ %%support EELF sinks
+ {lager_extra_sinks, [audit,metrics,error]},
+
+ %other opts
+ %warnings_as_errors,
+ debug_info,
+ {warn_format, 1},
+ bin_opt_info,
+ inline_list_funcs,
+ report_warnings,
+ warn_export_vars,
+ warn_export_all,
+ warn_shadow_vars,
+ warn_obsolete_guard,
+ warn_unused_import,
+ warn_deprecated_function,
+ warn_unused_vars,
+ warn_unused_function,
+ warn_bif_clash,
+ warn_unused_record,
+ warn_exported_vars
+ ]
+}.
+
+%% Code coverage
+{cover_enabled, true}.
+{cover_export_enabled, true}.
+{cover_opts, [verbose]}.
+
+%% EUnit options
+{eunit_compile_opts, [debug_info, export_all]}.
+{eunit_opts, [verbose,
+ no_tty,
+ {report, {eunit_progress, [colored, profile]}}
+]}.
diff --git a/src/application.hrl b/src/application.hrl
new file mode 100644
index 0000000..fc7c80e
--- /dev/null
+++ b/src/application.hrl
@@ -0,0 +1,28 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-record(program, {type :: binary(), id :: binary()}).
+-type lprogram() :: [#program{}].
+-type status_code() :: 100..101 | 200..206 | 300..307 | 400..417 | 500..505. %stolen from leptus
+-type httpstat() :: {status_code(), string()}.
+-record(application, {appname, apptype, namespace, healthcheckurl, metricsurl, url, connectionurl, serviceendpoints, creationtime}).
+-record(prog_flow_supp, {appname, programs::lprogram()}).
+
+
diff --git a/src/cdap_interface.erl b/src/cdap_interface.erl
new file mode 100644
index 0000000..7ce3b37
--- /dev/null
+++ b/src/cdap_interface.erl
@@ -0,0 +1,363 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(cdap_interface).
+-export([get_app_metrics/4,
+ get_app_healthcheck/4,
+ push_down_config/5,
+ form_service_json_from_service_tuple/4,
+ form_stream_url_from_streamname/3,
+ exec_programs/6,
+ push_down_program_preferences/5,
+ push_down_app_preferences/5,
+ deploy_app/8,
+ deploy_pipeline/5,
+ delete_app/4,
+ %get_app_programs/3,
+ exec_pipeline/5,
+ exec_pipeline_workflow/5,
+ get_pipeline_healthcheck/5,
+ get_pipeline_metrics/3,
+ deploy_pipeline_dependencies/4,
+ deploy_pipeline_dependencies_properties/4,
+ create_namespace/3,
+ get_app_config/4,
+ get_app_preferences/4,
+ get_cdap_cluster_version/2,
+ get_cdap_gui_port_from_version/1
+ ]).
+-include("application.hrl").
+-define(SC(L), util:concat(L)).
+-define(BAD_HEALTH_CODE, 400). %%not sure if this is the best status code for "unhealthy". I don't like 500 because I am able to complete the user's request (healthcheck)
+
+%helpful: https://robhirschfeld.com/2012/08/15/erlang-http-client-restful-api-post-example-code/
+
+%%%
+%%%INTERNAL
+%%%
+map_appname(Appname) ->
+ %CDAP APIs do not allow app names with any special characters. Here we will map the
+ %name to ensure it does not contain special characters using a regex whitelist
+ %see http://stackoverflow.com/questions/3303420/regex-to-remove-all-special-characters-from-string
+ re:replace(Appname, "[^0-9a-zA-Z]+", "", [{return, binary}, global]).
+
+get_metrics_list_for_app(XER, Appname, Namespace, CDAPURL) ->
+ URL = ?SC([CDAPURL, "/v3/metrics/search?target=metric&tag=namespace:", Namespace, "&tag=app:", map_appname(Appname)]),
+ {ReturnCode, RetBody} = httpabs:post(XER, URL, "application/json", ""),
+ case ReturnCode of
+ 200 -> [ X || X <- jiffy:decode(RetBody),binary:match(X, <<"user.">>) /= nomatch];
+ _ -> 504 %must bubble this up
+ end.
+
+-spec get_app_healthcheck_program(string(), binary(), binary(), string(), #program{}) -> integer().
+get_app_healthcheck_program(XER, Appname, Namespace, CDAPURL, P) ->
+ %helper function: checks for a partocular program from an app
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/", P#program.type, "/", P#program.id]),
+ {RC, _} = httpabs:get(XER, URL),
+ case RC of
+ 200 ->
+ %Next make sure it's status is running
+ {RC2, RB2} = httpabs:get(XER, ?SC([URL, "/status"])),
+ case RC2 of
+ 200 ->
+ S = jiffy:decode(RB2, [return_maps]),
+ case maps:is_key(<<"status">>, S) andalso maps:get(<<"status">>, S) == <<"RUNNING">> of
+ true -> 200; %return 200
+ false -> ?BAD_HEALTH_CODE %return
+ end;
+ _ -> ?BAD_HEALTH_CODE
+ end;
+ _ -> ?BAD_HEALTH_CODE
+ end.
+
+-spec exec_program(string(), binary(), binary(), string(), #program{}, string()) -> httpstat().
+exec_program(XER, Appname, Namespace, CDAPURL, P, Exec) ->
+ %Exec should be 'start' or 'stop'
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/", P#program.type, "/", P#program.id, "/", Exec]),
+ httpabs:post(XER, URL, "application/json", "").
+
+push_down_program_preference(XER, Appname, Namespace, CDAPURL, {PT, PI, PP}) ->
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/", PT, "/", PI, "/", "preferences"]),
+ httpabs:put(XER, URL, "application/json", jiffy:encode(PP)).
+
+deploy_pipeline_dependency(XER, Namespace, CDAPURL, {ArtExtendsHeader, ArtName, ArtVerHeader, ArtURL, _}) ->
+ %deploys a single dependency
+ %TODO! I should really be using Erlang records more and not relying on positional arguments so much. For example, I could add a record that represents a Dependency instead of using a positionally-based tuple.
+ {200, JarBody} = httpabs:get(XER, ArtURL),
+ Headers = [{"Artifact-Extends", ArtExtendsHeader}, {"Artifact-Version", ArtVerHeader}],
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/artifacts/", ArtName]),
+ httpabs:post(XER, URL, Headers, "application/octet-stream", JarBody).
+
+deploy_pipeline_dependency_property(XER, Namespace, CDAPURL, {_, ArtName, ArtVerHeader, _, UIPropertiesURL}) ->
+ %TODO! I should really be using Erlang records more and not relying on positional arguments so much. For example, I could add a record that represents a Dependency instead of using a positionally-based tuple.
+ case UIPropertiesURL of
+ none -> {200, ""}; %nothing to do
+ _ ->
+ {200, PropertiesJSON} = httpabs:get(XER, UIPropertiesURL),
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/artifacts/", ArtName, "/versions/", ArtVerHeader, "/properties"]),
+ httpabs:put(XER, URL, "application/json", PropertiesJSON)
+ end.
+
+%%%
+%%%EXTERNAL
+%%%
+get_app_metrics(XER, Appname, Namespace, CDAPURL) ->
+ %Namespace should be a binary
+ MetricsList = get_metrics_list_for_app(XER, Appname, Namespace, CDAPURL), %assert 200 or bomb
+ case MetricsList of
+ 504 -> {504, []};
+ %TODO! cdap seems to return a {200, []} for above call even if the app is not deployed. Is that OK? for now return empty list but maybe we should determine this and error with a 404 or something
+ [] -> {200, []};
+ _ ->
+ URL = ?SC([CDAPURL, "/v3/metrics/query"]),
+ Body = jiffy:encode(
+ {[{<<"appmetrics">>,
+ {[{<<"tags">>, {[{<<"namespace">>, Namespace}, {<<"app">>, map_appname(Appname)}]}},
+ {<<"metrics">>, MetricsList}]}
+ }]}),
+ {ReturnCode, RetBody} = httpabs:post(XER, URL, "application/json", Body), %even when app does not exist this seems to return a 200 so assert it!
+ case ReturnCode of
+ 200 -> {200, jiffy:decode(RetBody)};
+ 504 -> {504, []}
+ end
+ end.
+
+%THIS FUNCTION WAS ONCE NEEDED
+%It gets the list of all programs in a running CDAP app.
+%However this is no longer used due to a feature request where people want to start/healthcheck only *some* programs in their application
+%So now this information is sourced from the initial PUT request, where those programs are saved as supplemntal state
+%However, leaving it here because maybe one day it will be useful
+%%%get_app_programs(Appname, Namespace, CDAPURL) ->
+%%% %fetch the list of programs from a running CDAP app.
+%%% %Parse this into a list of [{ProgramType, ProgramID}] tuples.
+%%% %Used as part of healthcheck, and also as part of undeploy so I don't have to keep Programs in MNesia pipeline.
+%%% %get informaation about application
+%%% URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname)]),
+%%% {ReturnCode, RetBody} = httpabs:http_get(URL),
+%%% case ReturnCode of
+%%% 504 -> 504;
+%%% 404 -> 404;
+%%% 400 -> 400;
+%%% 200 ->
+%%% Drb = jiffy:decode(RetBody, [return_maps]),
+%%% Programs = maps:get(<<"programs">>, Drb),
+%%% lists:map(fun(X) -> #program{
+%%% %stupid CDAP APIs require a different get call then what is returned as the Program Type. For example you need to get "flows" to get a program of type Flow. im filing a bug with them. see program-typeOne of flows, mapreduce, services, spark, workers, or workflows here: http://docs.cask.co/cdap/current/en/reference-manual/http-restful-api/lifecycle.html#details-of-a-deployed-application. I filed an issue: https://issues.cask.co/browse/CDAP-7191?filter=-2
+%%% %From http://docs.cask.co/cdap/current/en/developers-manual/building-blocks/program-lifecycle.html
+%%% %All the uppercase ones are: Flow, MapReduce, Service, Spark, Worker, Workflow
+%%% %From http://docs.cask.co/cdap/current/en/reference-manual/http-restful-api/lifecycle.html#details-of-a-program
+%%% %All the lowercase ones are: flows, mapreduce, services, spark, workers, or workflows
+%%% program_type = case maps:get(<<"type">>, X) of
+%%% <<"Flow">> -> <<"flows">>; %cdap api fail man
+%%% <<"Mapreduce">> -> <<"mapreduce">>;
+%%% <<"Service">> -> <<"services">>;
+%%% <<"Spark">> -> <<"spark">>;
+%%% <<"Worker">> -> <<"workers">>;
+%%% <<"Workflow">> -> <<"workflows">>
+%%% end,
+%%% program_id = maps:get(<<"id">>, X)
+%%% }
+%%% end, Programs)
+%%% end.
+%%%
+-spec get_app_healthcheck(string(), binary(), binary(), string()) -> integer().
+get_app_healthcheck(XER, Appname, Namespace, CDAPURL) ->
+ %cdap does not provide a simple "heathcheck" api for apps like it does metrics
+ %what I am using is:
+ % making sure the application is there
+ % making sure all programs (flows, services, etc) are there
+ %for now. From: http://docs.cask.co/cdap/current/en/reference-manual/http-restful-api/lifecycle.html#details-of-a-deployed-application
+
+ Programs = util:get_programs_for_pfapp_from_db(Appname),
+ %check each program
+ M = lists:map(fun(X) -> get_app_healthcheck_program(XER, Appname, Namespace, CDAPURL, X) end, Programs),
+ case lists:foldl(fun(X, Y) -> X == 200 andalso Y end, true, M) of %check all 200s
+ true -> 200;
+ false -> ?BAD_HEALTH_CODE
+ end.
+
+push_down_config(XER, Appname, Namespace, CDAPURL, ConfigJson) ->
+ %http://docs.cask.co/cdap/current/en/reference-manual/http-restful-api/lifecycle.html#update-an-application
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/update"]),
+ Body = jiffy:encode(
+ {[
+ {<<"config">>, ConfigJson}
+ ]}),
+ httpabs:post(XER, URL, "application/json", Body). %returns {ReturnCode, ReturnBody}
+
+push_down_program_preferences(XER, Appname, Namespace, CDAPURL, ParsedProgramPreferences) ->
+ FClosure = fun(X) -> push_down_program_preference(XER, Appname, Namespace, CDAPURL, X) end,
+ workflows:all_200s_else_showerror(FClosure, ParsedProgramPreferences).
+
+form_service_json_from_service_tuple(Appname, Namespace, CDAPURL, {SN, SE, EM}) ->
+ %transforms {SN, SE, EM} into {url: foo, method: bar}
+ URL = list_to_binary(?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/services/", SN, "/methods/", SE])),
+ {[{<<"url">>, URL},
+ {<<"method">>, EM}
+ ]}.
+
+form_stream_url_from_streamname(CDAPURL, Namespace, Streamname) ->
+ list_to_binary(?SC([CDAPURL, "/v3/namespaces/", Namespace, "/streams/", Streamname])).
+
+-spec exec_programs(string(), binary(), binary(), string(), lprogram(), string()) -> httpstat().
+exec_programs(XER, Appname, Namespace, CDAPURL, Programs, Exec) ->
+ FClosure = fun(X) -> exec_program(XER, Appname, Namespace, CDAPURL, X, Exec) end,
+ workflows:all_200s_else_showerror(FClosure, Programs).
+
+push_down_app_preferences(XER, Appname, Namespace, CDAPURL, AppPreferences) ->
+ %use app level preferences API if specified
+ %http://docs.cask.co/cdap/current/en/reference-manual/http-restful-api/preferences.html
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/preferences"]),
+ httpabs:put(XER, URL, "application/json", jiffy:encode(AppPreferences)).
+
+deploy_app(XER, Appname, Namespace, CDAPURL, JarBody, ArtifactName, ArtifactVersion, AppConfig) ->
+ %Create Artifact
+ %Deploy App
+
+ %post the artifact, OK if already exists, no check
+ %explicitly set artifact version becausme some JARS do not have it
+ httpabs:post(XER, ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/artifacts/", ArtifactName]), [{"Artifact-Version", erlang:binary_to_list(ArtifactVersion)}], "application/octet-stream", JarBody),
+
+ %deploy the application
+ PutBody = jiffy:encode(
+ {[
+ {<<"artifact">>, {[
+ {<<"name">>, ArtifactName},
+ {<<"version">>, ArtifactVersion},
+ {<<"scope">>, <<"user">>}
+ ]}},
+ {<<"config">>, AppConfig}
+ ]}),
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname)]),
+ httpabs:put(XER, URL, "application/json", PutBody).
+
+delete_app(XER, Appname, Namespace, CDAPURL) ->
+ %delete an application; works for prog-flow and hydrator
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname)]),
+ httpabs:delete(XER, URL).
+
+deploy_pipeline(XER, Appname, Namespace, CDAPURL, PipelineJson) ->
+ %Deploy a hydrator pipeline, assumes namespace has already been set up
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname)]),
+ httpabs:put(XER, URL, "application/json", PipelineJson).
+
+exec_pipeline(XER, Appname, Namespace, CDAPURL, Exec) ->
+ %Exec assumed to be: "resume" or "suspend"
+ %TODO! REVISIT WHETHER datapipelineschedule is a parameter
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/schedules/dataPipelineSchedule/", Exec]),
+ httpabs:post(XER, URL, "application/json", ""). %this CDAP API is a POST but there is no body.
+
+exec_pipeline_workflow(XER, Appname, Namespace, CDAPURL, Exec) ->
+ %Exec assumed to be: "stop" or
+ %TODO! REVISIT WHETHER DataPipelineWorkflow is a parameter
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/workflows/DataPipelineWorkflow/", Exec]),
+ httpabs:post(XER, URL, "application/json", ""). %this CDAP API is a POST but there is no body.
+
+get_pipeline_healthcheck(XER, Appname, Namespace, CDAPURL, PipelineHealthLimit) ->
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/schedules/dataPipelineSchedule/status"]),
+ {RC, RB} = httpabs:get(XER, URL),
+ case RC /= 200 of
+ true -> ?BAD_HEALTH_CODE; %failed to even hit the status.
+ false ->
+ Status = jiffy:decode(RB, [return_maps]),
+ case maps:is_key(<<"status">>, Status) andalso maps:get(<<"status">>, Status) == <<"SCHEDULED">> of
+ false -> ?BAD_HEALTH_CODE; %status is malformed or the pipeline is not scheduled, both not good
+ true ->
+ %Next, check the last <LIMIT> number of runs, and report a failure if they were not sucessful, or report of more than one of them is running at the same time.
+ %This logic came from Terry.
+ %His logic is essentially that, if your application is running, but is failing, that should be interpeted as unhealthy and needs investigation.
+ %His logic was also that if you have two runs running at the same time, that requires investigation as that should not happen.
+ %RE list_to_binary(integer_to_list( see http://stackoverflow.com/questions/4010713/integer-to-binary-erlang
+ L = list_to_binary(integer_to_list(PipelineHealthLimit)),
+ {RC2, RB2} = httpabs:get(XER, ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/workflows/DataPipelineWorkflow/runs?limit=", L])),
+ case RC2 /= 200 of
+ true -> RC2; %failed to even hit the status
+ false ->
+ LRST = lists:map(fun(S) ->
+ case maps:is_key(<<"status">>, S) of
+ false -> critical;
+ true -> case maps:get(<<"status">>, S) of <<"COMPLETED">> -> ok; <<"RUNNING">> -> running; <<"FAILED">> -> critical end
+ end end, jiffy:decode(RB2, [return_maps])),
+ %now process the transformed list
+ %check if any had failed or if the status JSONs were malformed, or check if more than 2 running at once
+ case lists:any(fun(X) -> X == critical end, LRST) orelse length(lists:filter(fun(X) -> X == running end, LRST)) > 1 of
+ true -> ?BAD_HEALTH_CODE;
+ false -> 200 %ALL TESTS PASS
+ end
+ end
+ end
+ end.
+
+get_pipeline_metrics(_Appname, _Namespace, _CDAPURL) ->
+ lager:warning("WARNING, metrics not actually implemented yet for pipelines!!"),
+ {200, []}.
+
+deploy_pipeline_dependencies(XER, Namespace, CDAPURL, ParsedDependencies) ->
+ FClosure = fun(X) -> deploy_pipeline_dependency(XER, Namespace, CDAPURL, X) end,
+ workflows:all_200s_else_showerror(FClosure, ParsedDependencies).
+
+deploy_pipeline_dependencies_properties(XER, Namespace, CDAPURL, ParsedDependencies) ->
+ FClosure = fun(X) -> deploy_pipeline_dependency_property(XER, Namespace, CDAPURL, X) end,
+ workflows:all_200s_else_showerror(FClosure, ParsedDependencies).
+
+create_namespace(_XER, <<"default">>, _) -> {200, ""}; %no-op, already exists
+create_namespace(XER, Namespace, CDAPURL) ->
+ httpabs:put(XER, ?SC([CDAPURL, "/v3/namespaces/", Namespace]), "", "").
+
+get_app_config(XER, Appname, Namespace, CDAPURL) ->
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname)]),
+ {RC, RB} = httpabs:get(XER, URL),
+ case RC of
+ 200 -> {200, maps:get(<<"configuration">>, jiffy:decode(RB, [return_maps]))};
+ _ -> {RC, RB}
+ end.
+
+get_app_preferences(XER, Appname, Namespace, CDAPURL) ->
+ URL = ?SC([CDAPURL, "/v3/namespaces/", Namespace, "/apps/", map_appname(Appname), "/preferences"]),
+ {RC, RB} = httpabs:get(XER, URL),
+ case RC of
+ 200 -> {200, jiffy:decode(RB, [return_maps])};
+ _ -> {RC, RB}
+ end.
+
+get_cdap_cluster_version(XER, CDAPURL) ->
+ %CDAP decided to change their port numbers between release 3 and 4.
+ %The broker works with both.
+ %In order to add the correct GUI information into the broker "info endpoint", I have to know what CDAP version we are connected to.
+ %The GUI information is a convinence function for component developers that hit the broker via the CLI tool.
+ URL = ?SC([CDAPURL, "/v3/version"]),
+ {RC, RB} = httpabs:get(XER, URL),
+ case RC of
+ 200 -> maps:get(<<"version">>, jiffy:decode(RB, [return_maps]));
+ _ -> <<"UNKNOWN CDAP VERSION">>
+ end.
+
+-spec get_cdap_gui_port_from_version(binary() | string()) -> 9999 | 11011 | binary().
+get_cdap_gui_port_from_version(Version) ->
+ %given the cdap clsuter version, return the GUI port
+ case re:run(Version, "3\.\[0-9]+\.[0-9]+") of
+ nomatch ->
+ case re:run(Version, "4\.\[0-9]+\.[0-9]+") of
+ nomatch -> <<"UNKNOWN CDAP VERSION">>;
+ _ -> 11011
+ end;
+ _ -> 9999
+ end.
+
diff --git a/src/cdap_interface_tests.erl b/src/cdap_interface_tests.erl
new file mode 100644
index 0000000..37926a6
--- /dev/null
+++ b/src/cdap_interface_tests.erl
@@ -0,0 +1,34 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(cdap_interface_tests).
+-include_lib("eunit/include/eunit.hrl").
+
+get_cdap_gui_port_from_version_test() ->
+ ?assert(9999 == cdap_interface:get_cdap_gui_port_from_version("3.0.0")),
+ ?assert(9999 == cdap_interface:get_cdap_gui_port_from_version("3.10.0")),
+ ?assert(9999 == cdap_interface:get_cdap_gui_port_from_version("3.0.10")),
+ ?assert(9999 == cdap_interface:get_cdap_gui_port_from_version("3.10.10")),
+ ?assert(11011 == cdap_interface:get_cdap_gui_port_from_version(<<"4.0.0">>)),
+ ?assert(11011 == cdap_interface:get_cdap_gui_port_from_version(<<"4.10.0">>)),
+ ?assert(11011 == cdap_interface:get_cdap_gui_port_from_version(<<"4.0.10">>)),
+ ?assert(11011 == cdap_interface:get_cdap_gui_port_from_version(<<"4.10.10">>)),
+ ?assert(<<"UNKNOWN CDAP VERSION">> == cdap_interface:get_cdap_gui_port_from_version("5.0.0")).
+
diff --git a/src/cdapbroker.app.src b/src/cdapbroker.app.src
new file mode 100644
index 0000000..1d04330
--- /dev/null
+++ b/src/cdapbroker.app.src
@@ -0,0 +1,23 @@
+{application, cdapbroker,
+ [{description, "Interface between Consul and CDAP in DCAE"},
+ {vsn, "4.0.3"},
+ {registered, []},
+ {mod, { cdapbroker_app, []}},
+ {applications,
+ [kernel,
+ stdlib,
+ lager,
+ inets,
+ ssl,
+ jiffy,
+ mnesia,
+ leptus,
+ uuid,
+ iso8601
+ ]},
+ {env,[]},
+ {modules, []},
+ {maintainers, []},
+ {licenses, []},
+ {links, []}
+ ]}.
diff --git a/src/cdapbroker_app.erl b/src/cdapbroker_app.erl
new file mode 100644
index 0000000..13256b0
--- /dev/null
+++ b/src/cdapbroker_app.erl
@@ -0,0 +1,94 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+%%%-------------------------------------------------------------------
+%% @doc cdapbroker public API
+%% @end
+%%%-------------------------------------------------------------------
+
+-module(cdapbroker_app).
+
+-behaviour(application).
+
+%% Application callbacks
+-export([start/2, stop/1]).
+
+%for application state
+-include("application.hrl").
+-define(SC(L), util:concat(L)).
+
+%%====================================================================
+%% API
+%%====================================================================
+
+start(_StartType, _StartArgs) ->
+ %starting inets to make request calls
+ inets:start(),
+ %from the HTTPC page:
+ %"If the scheme https is used, the SSL application must be started.
+ ssl:start(),
+
+ %EELF hello
+ audit:info("Audit log initlized"),
+ metrics:info("Metrics log initlized"),
+ error:info("Error log initlized"),
+
+ %fail fast; check all failure conditions first
+ PE = util:get_platform_envs_and_config(),
+ case PE of
+ [] -> %crash and burn. Need to exit else supervisor will restart this endlessly.
+ exit("fatal error, either HOSTNAME or CONSUL_HOST or CONFIG_BINDING_SERVICE is not set as an env variable");
+ [_, ConsulURL, CDAPUrl, BoundConfigMap] ->
+ try
+ S = dict:new(),
+ S1 = dict:store("consulurl", ConsulURL, S),
+ S2 = dict:store("configmap", BoundConfigMap, S1),
+ State = dict:store("cdapurl", CDAPUrl, S2),
+
+ %initialize database
+ ok = util:initialize_database(),
+
+ %print out currently registered apps at startup
+ lager:info("Currently installed apps: ~p~n", [util:get_all_appnames_from_db()]),
+
+ %start the REST server
+ leptus:start_listener(http, [{'_', [{resource_handler, State}]}], [{port, 7777}, {ip, {0,0,0,0}}]),
+
+ %start the supervisor
+ lager:info("Starting supervisor"),
+ cdapbroker_sup:start_link()
+ catch Class:Reason ->
+ lager:error("~nError Stacktrace:~s", [lager:pr_stacktrace(erlang:get_stacktrace(), {Class, Reason})]),
+ exit(Reason)
+ end
+ end.
+
+%%--------------------------------------------------------------------
+stop(_State) ->
+ %need to make sure there are no pending transcations in RAM not written to disk yet on shutdown.
+ %Two hard problems in CS, this is one of then...
+ lager:info("Stop recieved."),
+ case mnesia:sync_log() of
+ ok -> ok;
+ {error, Reason} ->
+ lager:error(io_lib:format("While stopping, MNESIA could not by syncd due to: ~s. This means on bootup the database may be in a bad state!!", [Reason])),
+ notok
+ end.
+
diff --git a/src/cdapbroker_sup.erl b/src/cdapbroker_sup.erl
new file mode 100644
index 0000000..b0894e8
--- /dev/null
+++ b/src/cdapbroker_sup.erl
@@ -0,0 +1,55 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+%%%-------------------------------------------------------------------
+%% @doc cdapbroker top level supervisor.
+%% @end
+%%%-------------------------------------------------------------------
+
+-module(cdapbroker_sup).
+
+-behaviour(supervisor).
+
+%% API
+-export([start_link/0]).
+
+%% Supervisor callbacks
+-export([init/1]).
+
+-define(SERVER, ?MODULE).
+
+%%====================================================================
+%% API functions
+%%====================================================================
+
+start_link() ->
+ supervisor:start_link({local, ?SERVER}, ?MODULE, []).
+
+%%====================================================================
+%% Supervisor callbacks
+%%====================================================================
+
+%% Child :: {Id,StartFunc,Restart,Shutdown,Type,Modules}
+init([]) ->
+ {ok, { {one_for_all, 0, 1}, []} }.
+
+%%====================================================================
+%% Internal functions
+%%====================================================================
diff --git a/src/consul_interface.erl b/src/consul_interface.erl
new file mode 100644
index 0000000..e52abd8
--- /dev/null
+++ b/src/consul_interface.erl
@@ -0,0 +1,139 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(consul_interface).
+-export([consul_register/8,
+ consul_deregister/3,
+ consul_get_configuration/3,
+ consul_get_preferences/3,
+ consul_get_service_ip_port/3,
+ consul_push_config/4,
+ consul_push_preferences/4,
+ consul_bind_config/3,
+ consul_delete_config/3,
+ consul_delete_preferences/3
+ ]).
+
+-define(SC(L), util:concat(L)).
+-define(PrefKey(Appname), ?SC([Appname, ":preferences"])).
+
+%the Erlang library linked on the Consul webpage does not seem to be equivelent to python-consul. It does something else: https://github.com/undeadlabs/discovery
+%and this one seems to be just elixer: https://github.com/undeadlabs/consul-ex
+%so, for now, I'm just doing some HTTP calls directly against the REST API.
+
+consul_get_service(XER, Appname, ConsulURL) ->
+ %returns a list of maps
+ URL = ?SC([ConsulURL, "/v1/catalog/service/", Appname]),
+ {200, ReturnBody} = httpabs:get(XER, URL),
+ jiffy:decode(ReturnBody, [return_maps]).
+
+consul_write_kv(XER, Key, Value, ConsulURL) ->
+ %generic helper function to write a value into Consul
+ URL = ?SC([ConsulURL,"/v1/kv/", Key]),
+ httpabs:put(XER, URL, "application/json", Value).
+
+consul_read_kv(XER, Key, ConsulURL) ->
+ %does a get on the KV store, see https://www.consul.io/docs/agent/http/kv.html
+ %Appname MUST be a binary not a string!
+ URL = ?SC([ConsulURL, "/v1/kv/", Key]),
+ {RC, RB} = httpabs:get(XER, URL),
+ case RC of
+ 200 ->
+ [Drb] = jiffy:decode(RB, [return_maps]),
+ {200, base64:decode(maps:get(<<"Value">>, Drb))}; %NOTE! Does not do a JSON decode here in case you want to read non-JSON from Consul. Leaves the decode to the caller.
+ _ ->
+ {RC, RB}
+ end.
+
+consul_delete_kv(XER, Key, ConsulURL) ->
+ %the config has not been jiffy'd prior to this function
+ URL = ?SC([ConsulURL,"/v1/kv/", Key]),
+ httpabs:delete(XER, URL).
+
+%%%%%%%%%%%%%%%%%
+%PUBLIC FUNCTIONS
+%%%%%%%%%%%%%%%%%
+
+consul_register(XER, Appname, ConsulURL, SDIP, SDPort, HealthURL, HCInterval, AutoDeregisterAfter) ->
+ %uses the agent api to register this app as a service and it's healthcheck URL, which is this broker as a proxy.
+ %/v1/agent/service/register from https://www.consul.io/docs/agent/http/agent.html#agent_service_register
+ URL = ?SC([ConsulURL, "/v1/agent/service/register"]),
+ Body = jiffy:encode(
+ {[{<<"Name">>, Appname},
+ {<<"Address">>, SDIP},
+ {<<"Port">>, SDPort},
+ {<<"Check">> ,
+ {[{<<"HTTP">>, HealthURL}, {<<"Interval">>, HCInterval}, {<<"DeregisterCriticalServiceAfter">>, AutoDeregisterAfter}]}
+ }
+ ]}),
+ httpabs:put(XER, URL, "application/json", Body).
+
+consul_deregister(XER, Appname, ConsulURL) ->
+ %/v1/agent/service/deregister/<serviceId> from https://www.consul.io/docs/agent/http/agent.html#agent_service_register
+ URL = ?SC([ConsulURL, "/v1/agent/service/deregister/", Appname]),
+ httpabs:put(XER, URL, "application/json", ""). %kinda weird that this isnt a DELETE
+
+consul_get_configuration(XER, Appname, ConsulURL) ->
+ %fetch configuration from consul, assumes it is a json
+ %returns it as a map. can be encoded again.
+ {RC, RB} = consul_read_kv(XER, Appname, ConsulURL),
+ case RC of
+ 200 -> {200, jiffy:decode(RB, [return_maps])}; %configuration is a JSON
+ _ -> {RC, RB}
+ end.
+
+consul_get_preferences(XER, Appname, ConsulURL) ->
+ %This function is currently only used in testing and is not used in resource_handler, but could be useful later
+ %returns it as a map. can be encoded again.
+ {RC, RB} = consul_read_kv(XER, ?PrefKey(Appname), ConsulURL),
+ case RC of
+ 200 -> {200, jiffy:decode(RB, [return_maps])}; %configuration is a JSON
+ _ -> {RC, RB}
+ end.
+
+consul_get_service_ip_port(XER, Appname, ConsulURL) ->
+ %use when you are expecting consul_get_service to return a list of exactly one service and all you want is ip:port
+ M = lists:nth(1, consul_get_service(XER, Appname, ConsulURL)),
+ {maps:get(<<"ServiceAddress">>, M), maps:get(<<"ServicePort">>, M)}.
+
+consul_push_config(XER, Appname, ConsulURL, Config) ->
+ %pushes Config into Consul under the key "Appname".
+ %TODO: Possibly this should be under "Appname:config" to be consistent with preferences but this came first and that's an invasive change.
+ %the config has not been jiffy'd prior to this function
+ consul_write_kv(XER, Appname, jiffy:encode(Config), ConsulURL).
+
+consul_push_preferences(XER, Appname, ConsulURL, Preferences) ->
+ %pushes the preferences into Consul under the key "Appname:preferences"
+ %the config has not been jiffy'd prior to this function
+ consul_write_kv(XER, ?PrefKey(Appname), jiffy:encode(Preferences), ConsulURL).
+
+consul_delete_config(XER, Appname, ConsulURL) ->
+ consul_delete_kv(XER, Appname, ConsulURL).
+
+consul_delete_preferences(XER, Appname, ConsulURL) ->
+ consul_delete_kv(XER, ?PrefKey(Appname), ConsulURL).
+
+consul_bind_config(XER, Appname, ConsulURL) ->
+ URL = ?SC([util:resolve_cbs(XER, ConsulURL), "/service_component/", Appname]),
+ {ReturnCode, ReturnBody} = httpabs:get(XER, URL),
+ case ReturnCode of
+ 200 -> {200, jiffy:decode(ReturnBody)};
+ _ -> {ReturnCode, ReturnBody} %do not try to decode if not correct
+ end.
diff --git a/src/httpabs.erl b/src/httpabs.erl
new file mode 100644
index 0000000..bc9e068
--- /dev/null
+++ b/src/httpabs.erl
@@ -0,0 +1,118 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(httpabs).
+-export([get/2,
+ post/4, %I miss python's default arguments..
+ post/5,
+ put/4,
+ delete/2
+ ]).
+-include("application.hrl").
+-define(SC(L), util:concat(L)).
+
+%NOTE
+%Consider the Erlang statement:
+%
+%{ok, {{"HTTP/1.1",ReturnCode, State}, Head, Body}} = httpc:get(URL).
+%CDAP returns error messages in the “Body” field above.
+%
+%However, Consul:
+%1) Always (in all HTTP failures I’ve tested) returns Body == “500\n”
+%2) Returns the error message in the State field
+%
+%Example:
+%
+%{{"HTTP/1.0",404,"Client Error: Not Found for url: http://consul.[...].com:8500/v1/kv/hwtestYOUHAVEFAILEDME:rel"},[{"date","Mon, 14 Nov 2016 14:41:03 GMT"},{"server","Werkzeug/0.11.11 Python/3.5.1"},{"content-length","4"},{"content-type","application/json"}],"500\n"}
+%
+%This means that error handling in HTTP is not consistent across CDAP and Consul.
+%
+%Thus below, on a failure, I return the concatenation of State and Body
+
+%%%
+%%%HELPER
+%%%
+-spec parse_response({error|ok, any()}, string()) -> httpstat().
+parse_response({Status, Response}, URL) ->
+ case Status of
+ error ->
+ lager:error("httpc error: cannot hit: ~s", [URL]),
+ case Response of
+ no_scheme -> {400, io_lib:format("ERROR: The following URL is malformed: ~s", [URL])};
+ {bad_body, _} -> {400, "ERROR: The request Body is malformed"};
+ {bad_body_generator,_} -> {400, "ERROR: The request Body is malformed"};
+ _ ->
+ lager:error(io_lib:format("Unexpected ERROR hitting ~s", [URL])),
+ {504, list_to_binary(io_lib:format("ERROR: The following URL is unreachable or the request was unable to be parsed due to an unknown error: ~s", [URL]))} %Are there other reasons other than bad body and unreachable that crash request? (Sneak peak: the answer is probably)
+ end;
+ ok ->
+ {{_, ReturnCode, State}, _Head, Body} = Response,
+ case ReturnCode of
+ 200 ->
+ {ReturnCode, Body};
+ _ ->
+ lager:error("Error While hitting ~s, Non-200 status code returned. HTTP Code ~p, State ~s, ResponseBody ~s:", [URL, ReturnCode, State, Body]),
+ %see Note at the top of this file
+ RetBody = ?SC(["State: ", State, ". Return Body: ", Body]),
+ {ReturnCode, RetBody}
+ end
+ end.
+
+sanitize(URL) ->
+ %allow URL to look like "www.foo.com" or <<"www.foo.com">>, trim it
+ case is_binary(URL) of
+ true -> string:strip(binary_to_list(URL));
+ false -> string:strip(URL)
+ end.
+
+%anywhere you see any() is essentially lazy typing.. fix these someday when time is abundant
+-spec post(string(), string()|binary(), string(), any()) -> httpstat().
+post(XER, URL, ContentType, Body) ->
+ %post that sends the XER, no headers signature
+ Headers = [{"x-ecomp-requestid", XER}],
+ U = sanitize(URL),
+ parse_response(httpc:request(post, {U, Headers, ContentType, Body}, [],[]), U).
+
+-spec post(string(), string()|binary(), list(), string(), any()) -> httpstat().
+post(XER, URL, Headers, ContentType, Body) ->
+ %post that sends XER, appends the header onto the list of desired headers
+ U = sanitize(URL),
+ parse_response(httpc:request(post, {U, [{"x-ecomp-requestid", XER} | Headers], ContentType, Body}, [],[]), U).
+
+-spec get(string(), string()|binary()) -> httpstat().
+get(XER, URL) ->
+ %http get that always sends the XER.. even if the server doesn't want it; maybe this will blow up on me one day.
+ U = sanitize(URL),
+ Headers = [{"x-ecomp-requestid", XER}],
+ parse_response(httpc:request(get, {U, Headers}, [], []), U).
+
+-spec put(string(), string()|binary(), string(), any()) -> httpstat().
+put(XER, URL, ContentType, Body) ->
+ %http put that always sends the XER
+ U = sanitize(URL),
+ Headers = [{"x-ecomp-requestid", XER}],
+ parse_response(httpc:request(put, {U, Headers, ContentType, Body}, [],[]), U).
+
+-spec delete(string(), string()|binary()) -> httpstat().
+delete(XER, URL) ->
+ %http delete that always sends the XER
+ U = sanitize(URL),
+ Headers = [{"x-ecomp-requestid", XER}],
+ parse_response(httpc:request(delete, {U, Headers}, [],[]), U).
diff --git a/src/httpabs_tests.erl b/src/httpabs_tests.erl
new file mode 100644
index 0000000..d8ad529
--- /dev/null
+++ b/src/httpabs_tests.erl
@@ -0,0 +1,33 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(httpabs_tests).
+-include_lib("eunit/include/eunit.hrl").
+-import(httpabs, [
+ sanitize/1
+ ]
+ ).
+
+sanitize_test() ->
+ ?assert(sanitize(<<" www.foo.com ">>) == "www.foo.com"),
+ ?assert(sanitize(" www.foo.com ") == "www.foo.com"),
+ ?assert(sanitize(<<"www.foo.com">>) == "www.foo.com").
+
+
diff --git a/src/logging.erl b/src/logging.erl
new file mode 100644
index 0000000..942637d
--- /dev/null
+++ b/src/logging.erl
@@ -0,0 +1,157 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(logging).
+-export([
+ audit/3,
+ metrics/3,
+ err/2
+ ]).
+
+-import(util, [iso/0, iso_elapsed/2, to_str/1, ip_to_str/1]).
+%..lazy macros
+-define(SC(L), util:concat(L)).
+-define(PV(Name, PL), proplists:get_value(Name, PL, "")).
+
+%This module is intended to support the logging format standard for ONAP/ECOMP components. SOmetimes that is reffered to as "EELF".
+
+%levels are none | debug | info | notice | warning | error | critical | alert | emergency.
+
+%%%
+%%%Helper functions
+%%%
+pid() -> pid_to_list(self()).
+%they wanted milleseconds but they are getting seconds rounded to ms because I don't have an erlang BIF that gives me this
+elapsed(Endtime, Starttime) -> to_str(iso_elapsed(Endtime, Starttime)*1000).
+
+start_end_elapsed(ArgPropl) ->
+ %returns start time, end time,... and elapsed time
+ EndT = iso(),
+ StartT = ?PV(bts, ArgPropl),
+ ElapT = elapsed(EndT, StartT),
+ {StartT, EndT, ElapT}.
+
+%things this logging class can compute based on the Req so need not be in every logging function
+server_add(Req) ->
+ {MyUrl, _} = cowboy_req:host_url((leptus_req:get_req(Req))),
+ %discard HTTP portion using Erlang binary matching
+ <<_:7/binary, URL/binary>> = MyUrl,
+ URL.
+
+ip(Req) -> ip_to_str(leptus_req:peer(Req)).
+
+path(Req) ->
+ %get us the method and API path that was hit from the request
+ {Path, {_,_,_,_,_,Method,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_}} = cowboy_req:path(leptus_req:get_req(Req)),
+ ?SC([Method, " ", Path]).
+
+%%%
+%%%External
+%%%
+
+audit(Sev, Req, ArgPropl) ->
+ F = case Sev of
+ info -> fun(M)->audit:info(M) end; %cant use the shorthand "fun -> audit:info/2" because of parse_transform
+ warning -> fun(M)->audit:warning(M) end
+ end,
+ %The audit field list:
+ %
+ %1 BeginTimestamp Implemented (bts)
+ %2 EndTimestamp Auto Injected when this is called
+ %3 RequestID Implemented (xer)
+ %4 serviceInstanceID
+ %5 threadId Auto Injected... however this is a VM language and so this is the Erlang process PID, not the "OS level thread id". Unclear what they want here.
+ %6 physical/virtual server name 
+ %7 serviceName Implemented (from Req)
+ %8 PartnerName
+ %9 StatusCode
+ %10 ResponseCode Implemented (rcode)
+ %11 Response Description Will not implement. This says "human readable description of the *code*. They don't want the response here. I won't do that because this is a generic function that gets called no matter what the code is, so I can't do that. But since this is supposed to be human readable, they can look up the code in the swagger spec.
+ %12 instanceUUID
+ %13 Category log level Implemented (Sev)
+ %14 Severity
+ %15 Server IP address Implemented (from Req)
+ %16 ElapsedTime Auto Injected but THIS IS SO DUMB TO BE IN THE STANDARD WASTING DISK SPACE THIS IS DIRECTLY COMPUTABLE FROM 1,2 WTF
+ %17 Server
+ %18 ClientIPaddress Implemented (from Req)
+ %19 class name Implemented (mod), though docs say OOP, I am using the Erlang module here
+ %20 Unused Implemented..
+ %21 ProcessKey
+ %22 CustomField1
+ %23 CustomField2
+ %24 CustomField3
+ %25 CustomField4
+ %26 detailMessage Implemented (msg)
+
+ {StartT, EndT, ElapT} = start_end_elapsed(ArgPropl),
+ %compute message
+ Message = ?SC([StartT, "|", EndT, "|", ?PV(xer, ArgPropl), "||", pid(), "||", path(Req), "|||", to_str(?PV(rcode, ArgPropl)), "|see swagger spec||", to_str(Sev), "||", server_add(Req), "|", ElapT, "||", ip(Req), "|", ?PV(mod, ArgPropl), "|||||||", ?PV(msg, ArgPropl)]),
+ F(Message).
+
+metrics(Sev, Req, ArgPropl) ->
+ F = case Sev of
+ debug -> fun(M)->metrics:debug(M) end;
+ info -> fun(M)->metrics:info(M) end;
+ warning -> fun(M)->metrics:warning(M) end
+ end,
+ %The metrics field list:
+ %SAME AS METRICS 1-8
+ %_____
+ %9 TargetEntity Implemented (tgte)
+ %10 TargetServiceName Implemented (tgts)
+ %11 Status Code Implemented (tgtrsc)
+ %_____
+ %SAME AS METRICS 9 ->
+ %total 29 fields
+
+ {StartT, EndT, ElapT} = start_end_elapsed(ArgPropl),
+ %compute message
+ Message = ?SC([StartT, "|", EndT, "|", ?PV(xer, ArgPropl), "||", pid(), "||", path(Req), "||", ?PV(tgte, ArgPropl), "|", ?PV(tgts, ArgPropl), "|", to_str(?PV(tgtrsc, ArgPropl)), "|", to_str(?PV(rcode, ArgPropl)), "|see swagger spec||", to_str(Sev), "||", server_add(Req), "|", ElapT, "||", ip(Req), "|", ?PV(mod, ArgPropl), "||||||||", ?PV(msg, ArgPropl)]),
+ F(Message).
+
+err(Sev, ArgPropl) ->
+ F = case Sev of
+ warning -> fun(M)->error:warning(M) end;
+ error -> fun(M)->error:error(M) end;
+ critical -> fun(M)->error:critical(M) end;
+ alert -> fun(M)->error:alert(M) end;
+ emergency -> fun(M)->error:emergency(M) end
+ end,
+ SevInLog = case Sev of
+ warning -> "WARN";
+ error -> "ERROR";
+ _ -> "FATAL"
+ end,
+ %Error field list:
+ %1 Timestamp Auto Injected when this is called
+ %2 RequestID Implemented
+ %3 ThreadId Auto Injected... however this is a VM language and so this is the Erlang thread PID. Not the "OS level pid". Unclear what they want here.
+ %4 ServiceName Implemented
+ %5 PartnerName
+ %6 TargetEntity
+ %7 TargetServiceName
+ %8 ErrorCategory Implemented
+ %9 ErrorCode
+ %10 ErrorDescription This is what I'm using detailMessage for, these seem to be the same to me.
+ %11 detailMessage Implemented
+
+ Message = ?SC([iso(), "|", ?PV(xer, ArgPropl), "|", pid(), "|", ?PV(servn, ArgPropl), "||||", SevInLog, "|||", ?PV(msg, ArgPropl)]),
+ F(Message).
+
diff --git a/src/resource_handler.erl b/src/resource_handler.erl
new file mode 100644
index 0000000..a9703fc
--- /dev/null
+++ b/src/resource_handler.erl
@@ -0,0 +1,465 @@
+-module(resource_handler).
+-compile({parse_transform, leptus_pt}).
+
+%% leptus callbacks
+-export([init/3]).
+-export([terminate/4]).
+-export([get/3, put/3, delete/3, post/3]).
+-export([cross_domains/3]).
+
+%%for keeping state
+%%The application record is defined in application.hrl
+%%In Mnesia, the first element is the type of record and the second element is the key
+%%http://erlang.org/doc/apps/mnesia/Mnesia_chap2.html
+-include("application.hrl").
+
+-define(CONSURL, dict:fetch("consulurl", State)).
+-define(CDAPURL, dict:fetch("cdapurl", State)).
+%below come from config map
+-define(HCInterval, maps:get(<<"hcinterval">>, dict:fetch("configmap", State))).
+-define(AutoDeregisterAfter, maps:get(<<"autoderegisterafter">>, dict:fetch("configmap", State))).
+-define(PipelineHealthLimit, maps:get(<<"pipelinehealthlimit">>, dict:fetch("configmap", State))).
+-define(PUBLICFIELDS, [<<"appname">>, <<"apptype">>, <<"namespace">>, <<"healthcheckurl">>, <<"metricsurl">>, <<"url">>, <<"connectionurl">>, <<"serviceendpoints">>]).
+
+%super lazy macros/imports...
+-import(logging, [audit/3, metrics/3, err/2]).
+-import(util, [iso/0, to_str/1]).
+%lazy concat
+-define(SC(L), util:concat(L)).
+%lazy shorthand to write info audit records. man I miss defines in python. c ftw.
+-define(AUDI(Req, Bts, XER, Rcode), audit(info, Req, [{bts, Bts}, {xer,XER}, {rcode, RCode}, {mod, mod()}])).
+
+
+%%%
+%%Helper functions
+%%%
+mod() -> to_str(?MODULE).
+
+get_request_id(Req) ->
+ %ECOMP request tracing
+ %see if we got a X-ECOMP-REQUESTID, or generate a new one if not
+ HXER = leptus_req:header(Req, <<"x-ecomp-requestid">>),
+ case HXER of
+ undefined ->
+ XER = util:gen_uuid(),
+ %LOL, use the client ip here to shame them into their request id
+ audit(warning, Req, [{bts, iso()}, {xer, XER}, {mod, mod()}, {msg, "Request is missing requestID. Assigned this one."}]), %eelf documentation says to log this message if requestid was missing
+ XER;
+ _ ->
+ binary_to_list(HXER) %httpc expects strings as headers, so this needs to be str for subsequent passing
+ end.
+
+%shared-code function initlization that creates a begining timestamp and gets or generates a request ID
+init_api_call(Req) ->
+ Bts = iso(), %record begining timestamp
+ XER = get_request_id(Req), %get or generate XER
+ {Bts, XER}.
+
+lookup_application(Appname) ->
+ %do a lookup in mnesia of an appname
+ Ret = mnesia:transaction(fun() -> mnesia:match_object(application, {application, Appname, '_', '_', '_', '_', '_', '_', '_', '_'}, read) end),
+ case Ret of
+ {atomic, []} -> none; %no matches
+ {atomic, [Rec]} -> Rec
+ %fail hard if there was more than one result
+ end.
+
+appname_to_application_map(Appname) ->
+ %return a Map of an Mnesia record
+ Rec = lookup_application(Appname),
+ case Rec of
+ none -> none;
+ {application, Appname, AppType, Namespace, Healthcheckurl, Metricsurl, Url, Connectionurl, ServiceEndpoints, CreationTime} ->
+ #{<<"appname">> => Appname,
+ <<"apptype">> => AppType,
+ <<"namespace">> => Namespace,
+ <<"healthcheckurl">> => Healthcheckurl,
+ <<"metricsurl">> => Metricsurl,
+ <<"url">> => Url,
+ <<"connectionurl">> => Connectionurl,
+ <<"serviceendpoints">> => ServiceEndpoints,
+ <<"creationtime">> => CreationTime
+ }
+ end.
+
+appname_to_field_vals(Appname, FieldList) ->
+ %Return just a list of values of an application with fields FieldList
+ M = appname_to_application_map(Appname),
+ case M of
+ none -> none;
+ _ -> [maps:get(F, M) || F <- FieldList]
+ end.
+
+appname_to_application_http(XER, Appname, State) ->
+ %Return an HTTP response of an application record. If this is a program flowlet style app, additionally return it's bound and unbound config
+ A = appname_to_application_map(Appname),
+ case A of
+ none -> {404, "", State};
+ _ ->
+ Body = maps:with(?PUBLICFIELDS, A),
+ case maps:get(<<"apptype">>, Body) of
+ %if program-flowlet style app, append the bound and unbound config into the return JSON
+ <<"program-flowlet">> ->
+ UB = case consul_interface:consul_get_configuration(XER, Appname, ?CONSURL) of
+ {200, Unbound} -> Unbound;
+ {_, _} -> <<"WARNING: COULD NOT FETCH CONFIG FROM CONSUL">>
+ end,
+ B = case cdap_interface:get_app_config(XER, Appname, maps:get(<<"namespace">>, Body), ?CDAPURL) of
+ {200, Bound} -> Bound;
+ {_, _} -> <<"WARNING: COULD NOT FETCH CONFIG FROM CDAP">>
+ end,
+ CM = #{<<"unbound_config">> => UB,
+ <<"bound_config">> => B},
+ {200, {json, maps:merge(Body, CM)}, State};
+ %TODO! can we do something for hydrator apps?
+ <<"hydrator-pipeline">> ->
+ {200, {json, Body}, State}
+ end
+ end.
+
+-spec parse_progflow_put_body_map(map()) ->
+ {binary(), binary(), string(), binary(), binary(), map(), map(), any(), lprogram(), any()}. %TODO! Spec parsedservices and parsedprogrampreferences so we don't have any() here...
+parse_progflow_put_body_map(Body) ->
+ Namespace = maps:get(<<"namespace">>, Body),
+ Streamname = maps:get(<<"streamname">>, Body),
+ JarURL = maps:get(<<"jar_url">>, Body),
+ ArtifactName = maps:get(<<"artifact_name">>, Body),
+ ArtifactVersion = maps:get(<<"artifact_version">>, Body),
+ AppConfig = maps:get(<<"app_config">>, Body),
+ AppPreferences = maps:get(<<"app_preferences">>, Body),
+ ParsedServices = lists:map(fun(S) -> {maps:get(<<"service_name">>, S),
+ maps:get(<<"service_endpoint">>, S),
+ maps:get(<<"endpoint_method">>, S)}
+ end, maps:get(<<"services">>, Body)),
+ Programs = lists:map(fun(P) -> #program{type=maps:get(<<"program_type">>, P),
+ id= maps:get(<<"program_id">>, P)}
+ end, maps:get(<<"programs">>, Body)),
+ ParsedProgramPreferences = lists:map(fun(P) -> {maps:get(<<"program_type">>, P),
+ maps:get(<<"program_id">>, P),
+ maps:get(<<"program_pref">>, P)}
+ end, maps:get(<<"program_preferences">>, Body)),
+ {Namespace, Streamname, JarURL, ArtifactName, ArtifactVersion, AppConfig, AppPreferences, ParsedServices, Programs, ParsedProgramPreferences}.
+
+parse_hydrator_pipeline_put_body_map(Body) ->
+ Namespace = maps:get(<<"namespace">>, Body),
+ Streamname = maps:get(<<"streamname">>, Body),
+ PipelineConfigJsonURL = maps:get(<<"pipeline_config_json_url">>, Body),
+
+ %Dependencies is optional. This function will normalize it's return with [] if the dependencies key was not passed in.
+ ParsedDependencies = case maps:is_key(<<"dependencies">>, Body) of
+ true ->
+ D = maps:get(<<"dependencies">>, Body),
+ %crash and let caller deal with it if not a list or if required keys are missing. Else parse it into
+ % {artifact-extends-header, artifact_name, artifact-version-header, artifact_url}
+ %tuples
+ %
+ %regarding the binart_to_lists: these all come in as binaries but they need to be "strings" (which are just lists of integers in erlang)
+ %for headers requiring strings, see http://stackoverflow.com/questions/28292576/setting-headers-in-a-httpc-post-request-in-erlang
+ %
+ lists:map(fun(X) -> {binary_to_list(maps:get(<<"artifact_extends_header">>, X)),
+ maps:get(<<"artifact_name">>, X),
+ binary_to_list(maps:get(<<"artifact_version_header">>, X)),
+ maps:get(<<"artifact_url">>, X),
+ %even if dependencies is specified, ui_properties is optional. This will normalize it's return with 'none' if not passed in
+ case maps:is_key(<<"ui_properties_url">>, X) of true -> maps:get(<<"ui_properties_url">>, X); false -> none end
+ } end, D);
+ false -> [] %normalize optional user input into []; just prevents user from having to explicitly pass in []
+ end,
+
+ {Namespace, Streamname, PipelineConfigJsonURL, ParsedDependencies}.
+
+parse_put_body(B) ->
+ Body = jiffy:decode(B, [return_maps]),
+ Type = maps:get(<<"cdap_application_type">>, Body),
+ case Type of
+ <<"program-flowlet">> ->
+ {pf, <<"program-flowlet">>, parse_progflow_put_body_map(Body)};
+ <<"hydrator-pipeline">> ->
+ {hp, <<"hydrator-pipeline">>, parse_hydrator_pipeline_put_body_map(Body)};
+ _ ->
+ unsupported
+ end.
+
+delete_app_helper(Appname, State, XER, Req) ->
+ %Helper because it is used by both delete and rollback on failed deploy
+ %
+ %%Internal Crisis Alert:
+ %
+ %I pondered this for some time. There are three points of state for this: the cdap cluster, consul, and the broker's internal database
+ %The question is, if something in the delete fails, do we:
+ %1) Tell the user to try again later
+ %2) Clean up as much as we can, log the error, and keep going
+ %
+ %I have decided for now on taking number 2). This is the "Cloudify" way of doing things where you don't raise a NonRecoerable in a Delete operation.
+ %This has the benefit that this delete operation can be used as the *rollback*, so if anything fails in the deploy, this delete function is called to clean up any dirty state.
+ %
+ %Number 1 is not so straitforward, because "putting back things the way they were" is difficult. For example, the deletion from CDAP succeeds, but Consul can't be reached.
+ %What happens? Do I *redeploy* the CDAP app to try to make their state as it was before the botched delete was called?
+ %
+ %My conclusion is that transactions across distributed systems is hard. It's much easier if it is all local (e.g., Transactions in a single Postgres DB)
+ %
+ %SO, as a result of this decision, the broker does *NOT* assert the status code of any delete operations to be 200.
+ %The only way this function does not return a 200 is if I can't even delete from my own database.
+ %
+ metrics(info, Req, [{bts, iso()}, {xer, XER}, {mod, mod()}, {msg, io_lib:format("Delete recieved for ~s", [Appname])}]),
+ case appname_to_field_vals(Appname, [<<"apptype">>, <<"namespace">>]) of
+ none -> {404, "Tried to delete an application that was not registered", State};
+ [AppType, Namespace] ->
+ try
+ case AppType of
+ <<"program-flowlet">> ->
+ ok = workflows:undeploy_cdap_app(Req, XER, Appname, ?CDAPURL, ?CONSURL, Namespace),
+ %delete from the program-flowlet supplementary table
+ {atomic, ok} = mnesia:transaction(fun() -> mnesia:delete(prog_flow_supp, Appname, write) end);
+ <<"hydrator-pipeline">> -> ok = workflows:undeploy_hydrator_pipeline(Req, XER, Appname, Namespace, ?CDAPURL, ?CONSURL)
+ end,
+ %delete from application table (shared between both types of apps)
+ {atomic, ok} = mnesia:transaction(fun() -> mnesia:delete(application, Appname, write) end),
+ {200, "", State} %Return
+ catch
+ %this is really bad, means I can't even delete from my own database. For now, log and pray.
+ %generic failure catch-all, catastrophic
+ Class:Reason ->
+ err(emergency, [{xer, XER}, {msg, io_lib:format("Catastrophic failure, can't delete ~s from my database. ~s:~s", [Appname, Class, Reason])}]),
+ err(error, [{xer, XER}, {msg, io_lib:format("~nError Stacktrace:~s", [lager:pr_stacktrace(erlang:get_stacktrace(), {Class, Reason})])}]),
+ {500, "Please report this error", State}
+ end
+ end.
+
+%%%CALLBACKS %%%
+init(_Route, _Req, State) ->
+ {ok, State}.
+terminate(_Reason, _Route, _Req, _State) ->
+ ok.
+%%%FOR Cors support
+%%%Note! only matches on host. Does not handle ports. See: https://github.com/s1n4/leptus/issues/55
+cross_domains(_Route, _Req, State) ->
+ {['_'], State}.
+
+%%%GET Methods
+get("/", Req, State) ->
+ %The broker's "info" endpoint; returns some possibly useful information
+ {Bts, XER} = init_api_call(Req),
+ Apps = util:get_all_appnames_from_db(),
+ {UT, _} = statistics(wall_clock),
+ CDAPVer = cdap_interface:get_cdap_cluster_version(XER, ?CDAPURL),
+ RB = {[
+ {<<"cdap cluster version">>, CDAPVer},
+ {<<"managed cdap url">>, ?CDAPURL},
+ {<<"cdap GUI port">>, cdap_interface:get_cdap_gui_port_from_version(CDAPVer)},
+ {<<"number of applications registered">>, length(Apps)},
+ {<<"uptime (s)">>, UT/1000},
+ {<<"broker API version">>, util:get_my_version()}
+ ]},
+ {RCode, RBody, RState} = {200, {json, RB}, State},
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState};
+get("/application", Req, State) ->
+ %get a list of all registered apps
+ {Bts, XER} = init_api_call(Req),
+ {RCode, RBody, RState} = {200, {json, util:get_all_appnames_from_db()}, State},
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState};
+get("/application/:appname", Req, State) ->
+ %get information about a registered application
+ {Bts, XER} = init_api_call(Req),
+ Appname = leptus_req:param(Req, appname),
+ {RCode, RBody, RState} = appname_to_application_http(XER, Appname, State),
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState};
+get("/application/:appname/metrics", Req, State) ->
+ %get metrics for a registered application
+ {Bts, XER} = init_api_call(Req),
+ Appname = leptus_req:param(Req, appname),
+ {RCode, RBody, RState} = case appname_to_field_vals(Appname, [<<"apptype">>, <<"namespace">>]) of
+ none -> {404, "", State};
+ [<<"program-flowlet">>, Namespace] ->
+ {ReturnCode, ReturnBody} = cdap_interface:get_app_metrics(XER, Appname, Namespace, ?CDAPURL), %warning, see note in README, this always reutrns 200
+ {ReturnCode, {json, ReturnBody}, State};
+ [<<"hydrator-pipeline">>, Namespace] ->
+ lager:warning("WARNING, metrics not actually implemented yet for pipelines!!"),
+ {ReturnCode, ReturnBody} = cdap_interface:get_pipeline_metrics(Appname, Namespace, ?CDAPURL),
+ {ReturnCode, {json, ReturnBody}, State}
+ end,
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState};
+get("/application/:appname/healthcheck", Req, State) ->
+ %get healthcheck of an application
+ {Bts, XER} = init_api_call(Req),
+ Appname = leptus_req:param(Req, appname),
+ lager:info(io_lib:format("Get Healthcheck recieved for ~s", [Appname])),
+ {RCode, RBody, RState} = case appname_to_field_vals(Appname, [<<"apptype">>, <<"namespace">>]) of
+ none -> {404, "", State};
+ [<<"program-flowlet">>, Namespace] ->
+ {cdap_interface:get_app_healthcheck(XER, Appname, Namespace, ?CDAPURL), "", State};
+ [<<"hydrator-pipeline">>, Namespace] ->
+ {cdap_interface:get_pipeline_healthcheck(XER, Appname, Namespace, ?CDAPURL, ?PipelineHealthLimit), "", State}
+ end,
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState}.
+
+%%%DELETE Methods
+delete("/application/:appname", Req, State) ->
+ %Uninstall and delete a CDAP app
+ {Bts, XER} = init_api_call(Req),
+ Appname = leptus_req:param(Req, appname),
+ {RCode, RBody, RState} = delete_app_helper(Appname, State, XER, Req),
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState}.
+
+%%%PUT Methods
+put("/application/:appname", Req, State) ->
+ %create a new registration; deploys and starts a cdap application
+ {Bts, XER} = init_api_call(Req),
+ Appname = leptus_req:param(Req, appname),
+ {RCode, RBody, RState} = case appname_to_field_vals(Appname, [<<"appname">>]) of
+ [Appname] ->
+ {400, "Put recieved on /application/:appname but appname is already registered. Call /application/:appname/reconfigure if trying to reconfigure or delete first", State};
+ none -> %no matches, create the resource, return the application record
+ %Initial put requires the put body parameters
+ case try parse_put_body(leptus_req:body_raw(Req)) catch _:_ -> invalid end of
+ %could not parse the body
+ invalid -> {400, "Invalid PUT Body or unparseable URL", State};
+
+ %unsupported cdap application type
+ unsupported -> {404, "Unsupported CDAP Application Type", State};
+
+ {Type, AppType, Params} ->
+ %form shared info
+ %hateaos cuz they aintaos
+ {RequestUrl,_} = cowboy_req:url((leptus_req:get_req(Req))),
+ Metricsurl = <<RequestUrl/binary, <<"/metrics">>/binary>>,
+ Healthcheckurl = <<RequestUrl/binary, <<"/healthcheck">>/binary>>,
+
+ try
+ case Type of
+ hp ->
+ {Namespace, Streamname, PipelineConfigJsonURL, ParsedDependencies} = Params,
+ ConnectionURL = cdap_interface:form_stream_url_from_streamname(?CDAPURL, Namespace, Streamname),
+
+ %TODO: This!
+ ServiceEndpoints = [], %unclear if this is possible with pipelines
+
+ %write into mnesia, deploy
+ A = #application{appname = Appname, apptype = AppType, namespace = Namespace, healthcheckurl = Healthcheckurl, metricsurl = Metricsurl, url = RequestUrl, connectionurl = ConnectionURL, serviceendpoints = ServiceEndpoints, creationtime=erlang:system_time()},
+ {atomic,ok} = mnesia:transaction(fun() -> mnesia:write(A) end),
+ ok = workflows:deploy_hydrator_pipeline(Req, XER, Appname, Namespace, ?CDAPURL, PipelineConfigJsonURL, ParsedDependencies, ?CONSURL, RequestUrl, Healthcheckurl, ?HCInterval, ?AutoDeregisterAfter),
+ metrics(info, Req, [{bts, iso()}, {xer, XER}, {mod, mod()}, {msg, io_lib:format("New Hydrator Application Created: ~p", [lager:pr(A, ?MODULE)])}]), %see Record Pretty Printing: https://github.com/basho/lager
+ ok;
+ pf ->
+ {Namespace, Streamname, JarURL, ArtifactName, ArtifactVersion, AppConfig, AppPreferences, ParsedServices, Programs, ParsedProgramPreferences} = Params,
+ %Form URLs that are part of the record
+ %NOTE: These are both String concatenation functions and neither make an HTTP call so not catching normal {Code, Status} return here
+ ConnectionURL = cdap_interface:form_stream_url_from_streamname(?CDAPURL, Namespace, Streamname),
+ ServiceEndpoints = lists:map(fun(X) -> cdap_interface:form_service_json_from_service_tuple(Appname, Namespace, ?CDAPURL, X) end, ParsedServices),
+
+ %write into mnesia. deploy
+ A = #application{appname = Appname, apptype = AppType, namespace = Namespace, healthcheckurl = Healthcheckurl, metricsurl = Metricsurl, url = RequestUrl, connectionurl = ConnectionURL, serviceendpoints = ServiceEndpoints, creationtime=erlang:system_time()},
+ ASupplemental = #prog_flow_supp{appname = Appname, programs = Programs},
+ {atomic,ok} = mnesia:transaction(fun() -> mnesia:write(A) end), %warning, here be mnesia magic that knows what table you want to write to based on the record type
+ {atomic,ok} = mnesia:transaction(fun() -> mnesia:write(ASupplemental) end), %warning: ""
+ ok = workflows:deploy_cdap_app(Req, XER, Appname, ?CONSURL, ?CDAPURL, ?HCInterval, ?AutoDeregisterAfter, AppConfig, JarURL, ArtifactName, ArtifactVersion, Namespace, AppPreferences, ParsedProgramPreferences, Programs, RequestUrl, Healthcheckurl),
+ metrics(info, Req, [{bts, iso()}, {xer, XER}, {mod, mod()}, {msg, io_lib:format("New Program-Flowlet Application Created: ~p with supplemental data: ~p", [lager:pr(A, ?MODULE), lager:pr(ASupplemental, ?MODULE)])}]),
+ ok
+ end,
+ appname_to_application_http(XER, Appname, State)
+
+ catch
+ %catch a bad HTTP error code
+ error:{badmatch, {BadErrorCode, BadStatusMsg}} ->
+ err(error, [{xer, XER}, {msg, io_lib:format("Badmatch caught in Deploy. Rolling Back. ~p ~s", [BadErrorCode, BadStatusMsg])}]),
+ {_,_,_} = delete_app_helper(Appname, State, XER, Req),
+ {BadErrorCode, BadStatusMsg, State}; %pass the bad error/status back to user
+ Class:Reason ->
+ %generic failure catch-all, catastrophic
+ err(error, [{xer, XER}, {msg, io_lib:format("~nUnexpected Exception caught in Deploy. Error Stacktrace:~s", [lager:pr_stacktrace(erlang:get_stacktrace(), {Class, Reason})])}]),
+ {_,_,_} = delete_app_helper(Appname, State, XER, Req),
+ {500, "Please report this error", State}
+ end
+ end
+ end,
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState};
+put("/application/:appname/reconfigure", Req, State) ->
+ %if appname already is registerd, trigger a consul pull and reconfigure
+ {Bts, XER} = init_api_call(Req),
+ Appname = leptus_req:param(Req, appname),
+ {RCode, RBody, RState} = case appname_to_field_vals(Appname, [<<"namespace">>]) of
+ none -> {404, "Reconfigure recieved but the app is not registered", State};
+ [Namespace] ->
+ D = jiffy:decode(leptus_req:body_raw(Req), [return_maps]),
+ case try maps:get(<<"config">>, D) catch _:_ -> invalid end of
+ invalid -> {400, "Invalid PUT Reconfigure Body: key 'config' is missing", State};
+ Config ->
+ case try maps:get(<<"reconfiguration_type">>, D) catch _:_ -> invalid end of
+ invalid -> {400, "Invalid PUT Reconfigure Body: key 'reconfiguration_type' is missing", State};
+ <<"program-flowlet-app-config">> ->
+ %reconfigure a program-flowlet style app's app config
+ try
+ ok = workflows:app_config_reconfigure(Req, XER, Appname, Namespace, ?CONSURL, ?CDAPURL, Config),
+ {200, "", State}
+ catch Class:Reason ->
+ err(error, [{xer,XER}, {msg, io_lib:format("~nError Stacktrace:~s", [lager:pr_stacktrace(erlang:get_stacktrace(), {Class, Reason})])}]),
+ {500, "", State}
+ end;
+ <<"program-flowlet-app-preferences">> ->
+ %reconfigure a program-flowlet style app's app config
+ try
+ ok = workflows:app_preferences_reconfigure(Req, XER, Appname, Namespace, ?CONSURL, ?CDAPURL, Config),
+ {200, "", State}
+ catch Class:Reason ->
+ err(error, [{xer,XER}, {msg, io_lib:format("~nError Stacktrace:~s", [lager:pr_stacktrace(erlang:get_stacktrace(), {Class, Reason})])}]),
+ {500, "", State}
+ end;
+ <<"program-flowlet-smart">> ->
+ %try to "figure out" whether the supplied JSON contains keys in appconfig, app preferences, or both
+ try
+ ok = workflows:smart_reconfigure(Req, XER, Appname, Namespace, ?CONSURL, ?CDAPURL, Config),
+ {200, "", State}
+ catch
+ %catch a bad HTTP error code; also catches the non-overlapping configuration case
+ error:{badmatch, {BadErrorCode, BadStatusMsg}} ->
+ err(error, [{xer, XER}, {msg, io_lib:format("~p ~s", [BadErrorCode, BadStatusMsg])}]),
+ {BadErrorCode, BadStatusMsg, State};
+ Class:Reason ->
+ err(error, [{xer,XER}, {msg, io_lib:format("~nError Stacktrace:~s", [lager:pr_stacktrace(erlang:get_stacktrace(), {Class, Reason})])}]),
+ {500, "", State}
+ end;
+ NI ->
+ %TODO! Implement other types of reconfig once CDAP APIs exis
+ {501, io_lib:format("This type (~s) of reconfiguration is not implemented", [NI]), State}
+ end
+ end
+ end,
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState}.
+
+%%%POST methods
+post("/application/delete", Req, State) ->
+ %This follows the AWS S3 Multi Key Delete: http://docs.aws.amazon.com/AmazonS3/latest/API/multiobjectdeleteapi.html
+ %Except I added an additional special value called "*"
+ {Bts, XER} = init_api_call(Req),
+ {RCode, RBody, RState} = case try
+ B = maps:get(<<"appnames">>, jiffy:decode(leptus_req:body_raw(Req), [return_maps])),
+ true = erlang:is_list(B),
+ B
+ catch _:_ ->
+ invalid
+ end
+ of
+ invalid -> {400, "Invalid PUT Body", State};
+ IDs ->
+ case IDs of
+ [] -> {200, "EMPTY PUT BODY", State};
+ _ ->
+ %<<"*">> ->
+ %this block deleted all apps, but decided this backdoor wasn't very RESTy
+ %% {atomic, Apps} = mnesia:transaction(fun() -> mnesia:match_object(application, {application, '_', '_', '_', '_', '_', '_', '_', '_', '_'}, read) end),
+ % AppsToDelete = lists:map(fun(X) -> {application, Appname, _,_,_,_,_,_,_,_} = X, Appname end, Apps),
+ Returns = lists:map(fun(X) -> delete_app_helper(X, State, XER, Req) end, IDs),
+ RL = lists:map(fun({RC, _, _}) -> RC end, Returns),
+ {200, jiffy:encode(RL), State}
+ end
+ end,
+ ?AUDI(Req, Bts, XER, Rcode),
+ {RCode, RBody, RState}.
diff --git a/src/util.erl b/src/util.erl
new file mode 100644
index 0000000..d96675b
--- /dev/null
+++ b/src/util.erl
@@ -0,0 +1,192 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(util).
+-include("application.hrl").
+
+-export([concat/1,
+ get_platform_envs_and_config/0,
+ resolve_cbs/2,
+ initialize_database/0,
+ get_all_appnames_from_db/0,
+ get_my_version/0,
+ get_programs_for_pfapp_from_db/1,
+ gen_uuid/0,
+ iso/0,
+ iso_elapsed/2,
+ to_str/1,
+ ip_to_str/1,
+ update_with_new_config_map/2,
+ ejson_to_map/1
+ ]).
+
+%http://stackoverflow.com/questions/39757020/erlang-drying-up-stringbinary-concatenation
+%NOTE! Does not work or bomb when an element in the list is an atom. Must be a string or binary. Maybe add a check for this
+to_string(Value) when is_binary(Value) -> binary_to_list(Value);
+to_string(Value) -> Value.
+concat(List) ->
+ lists:flatten(lists:map(fun to_string/1, List)).
+
+resolve_cbs(XER, ConsulURL) ->
+ %Ideally this function would dissapear if we get real DNS. This essentially is doing an SRV record lookup every time someone needs the bindng URL
+ %This allows the broker to handle the case where the CBS moves IP or Ports
+ %New as of 6/28/17: Uses the hardcoded short name for the CBS
+ {IP, Port} = consul_interface:consul_get_service_ip_port(XER, "config_binding_service", ConsulURL),
+ concat(["http://", IP, ":", integer_to_binary(Port)]).
+
+get_platform_envs_and_config() ->
+ %Get platform envs needed for broker operation, then fetch my config.
+ %If something critical fails, returns [], else [ConsulURL, CDAPUrl, BoundConfigMap]
+ MyName = os:getenv("HOSTNAME"),
+ ConsulHost = os:getenv("CONSUL_HOST"),
+ case MyName == false orelse ConsulHost == false of
+ true -> [];
+ false ->
+ %build Consul URL
+ ConsulURL = concat(["http://", ConsulHost, ":8500"]),
+
+ %Bind my own config map
+ %generate my own XER here
+ XER = gen_uuid(),
+ {200, BoundConfig} = consul_interface:consul_bind_config(XER, MyName, ConsulURL),
+ BoundConfigMap = jiffy:decode(jiffy:encode(BoundConfig), [return_maps]), %kind of an interesting way to turn an erlang proplist into a map
+
+ %Here, we waterfall looking for "CDAP_CLUSTER_TO_MANAGE".
+ %First, we will check for environmnental variables for a cluster *NAME*
+ %If that is not found, then we will check out bound config for a fully bound URL
+ %If that is also not found, let it crash baby.
+ CDAPURL = case os:getenv("CDAP_CLUSTER_TO_MANAGE") of
+ false ->
+ list_to_binary(concat(["http://", lists:nth(1, maps:get(<<"cdap_cluster_to_manage">>, BoundConfigMap))])); %cbs returns ip:port. need http:// or will get "no adaptors found" error
+ CDAPName ->
+ {IP, Port} = consul_interface:consul_get_service_ip_port(XER, CDAPName, ConsulURL),
+ list_to_binary(concat(["http://", IP, ":", integer_to_binary(Port)]))
+ end,
+ [MyName, ConsulURL, CDAPURL, BoundConfigMap]
+ end.
+
+initialize_database() ->
+ %Create the database (currently MNesia) if it does not exist, and the application table.
+ %Or, do nothing.
+ N = node(),
+ lager:info(io_lib:format("Initializing database. My node name is ~s", [N])),
+
+ %set MNesia dir
+ application:set_env(mnesia, dir, "/var/mnesia/"),
+
+ %stop if running, can't create schema if it is. Dont check status, OK if stopped
+ mnesia:stop(),
+
+ %create the schema if it does not already exist. Dont check status, ok if exists
+ %erlang:display(mnesia:delete_schema([N])),
+ mnesia:create_schema([N]),
+ %start MNesia, assert it works
+
+ ok = mnesia:start(), %start MNesia, bomb if alreay started, should not happen
+ lager:info("Mnesia started"),
+
+ %try to create the table, or if it exists, do nothing
+ %erlang:display(mnesia:delete_table(application)),
+ case mnesia:create_table(application, [{attributes, record_info(fields, application)}, {disc_copies, [N]}]) of
+ {aborted,{already_exists,application}} ->
+ lager:info("Application table already exists");
+ {atomic,ok} ->
+ lager:info(io_lib:format("Created application table on ~s", [N]))
+ end,
+
+ %try to create the app supplementaty table, or if it exists, do nothing
+ %erlang:display(mnesia:delete_table(application)),
+ case mnesia:create_table(prog_flow_supp, [{attributes, record_info(fields, prog_flow_supp)}, {disc_copies, [N]}]) of
+ {aborted,{already_exists, prog_flow_supp}} ->
+ lager:info("prog_flow_supp table already exists");
+ {atomic,ok} ->
+ lager:info(io_lib:format("Created prog_flow_supp table on ~s", [N]))
+ end,
+
+ %wait up to 30s for the table to come up. Usually instantaneous. If it takes more crash abd burn
+ ok = mnesia:wait_for_tables([application, prog_flow_supp], 30000),
+ ok.
+
+get_all_appnames_from_db() ->
+ {atomic, Apps} = mnesia:transaction(fun() -> mnesia:match_object(application, #application{_ = '_'}, read) end),
+ lists:map(fun(X) -> {application, Appname,_,_,_,_,_,_,_,_} = X,
+ Appname
+ end, Apps).
+
+-spec get_programs_for_pfapp_from_db(binary()) -> lprogram().
+get_programs_for_pfapp_from_db(Appname) ->
+ {atomic, [#prog_flow_supp{appname = Appname, programs=Programs}]} = mnesia:transaction(fun() -> mnesia:match_object(prog_flow_supp, #prog_flow_supp{appname = Appname, _ = '_'}, read) end),
+ Programs.
+
+get_my_version() ->
+ %stolen from the SO post I asked about: http://stackoverflow.com/questions/43147530/erlang-programmatically-get-application-version/43152182#43152182
+ case lists:keyfind(cdapbroker, 1, application:loaded_applications()) of
+ {_, _, Ver} -> list_to_binary(Ver);
+ false -> <<"error">>
+ end.
+
+gen_uuid() ->
+ %generate an RFC compliant v1 uuid using lib
+ uuid:to_string(uuid:uuid1()).
+
+iso() ->
+ %generate 8601 ts
+ iso8601:format(erlang:timestamp()).
+
+iso_elapsed(Endtime, Starttime) ->
+ %%%...subtract two isos and return the number of seconds elapsed between Starttime and Endtime
+ Edt = iso8601:parse(Endtime),
+ Sdt = iso8601:parse(Starttime),
+ Egs = calendar:datetime_to_gregorian_seconds(Edt),
+ Sgs = calendar:datetime_to_gregorian_seconds(Sdt),
+ Egs - Sgs.
+
+to_str("") -> "";
+to_str(Term) -> lists:flatten(io_lib:format("~p", [Term])).
+
+-spec ip_to_str({inet:ip_address(), inet:port_number()}) -> binary().
+%nasty.. I miss pythons x <= Foo <= Y syntax.. or something mathematical like Foo in [X..Y].. erlang not good 4 math
+ip_to_str({{A,B,C,D}, Port}) when A >= 0 andalso A =< 255 andalso B >= 0 andalso B =< 255 andalso C >= 0 andalso C =< 255 andalso D >= 0 andalso D =< 255 andalso port >= 0 andalso Port =<65535 ->
+ concat([to_str(A),".",to_str(B),".", to_str(C),".",to_str(D),":",to_str(Port)]);
+ip_to_str({_,_}) -> invalid.
+
+update_with_new_config_map(NewConfig, OldConfig) ->
+ %helper for smart_reconfigure, broken out so we can unit test it.
+ %
+ %Takes in a new config, some keys in which may be shared with OldConfig, and returns a new map with the same keys as OldConfig, except values that had overlap were replaced by NewConfig
+ %if no keys in NewConfig overlap with OldConfig, returns the atom 'nooverlap'
+ %
+ %This is very similar to the maps:merge/2 builtin but that will inject keys of newconfig that were not in oldconfig. We need a "RIGHT JOIN"
+ NCKeys = maps:keys(NewConfig),
+ ConfigOverlaps = [X || X <- NCKeys, maps:is_key(X, OldConfig)],
+ case ConfigOverlaps of
+ [] -> nooverlap;
+ _ ->
+ %we have an entry that should be in app config
+ %build a new map with just the keys to update
+ Pred = fun(X,_) -> lists:member(X, ConfigOverlaps) end,
+ NewVals = maps:filter(Pred, NewConfig),
+ maps:merge(OldConfig, NewVals)
+ end.
+
+ejson_to_map(E) ->
+ %takes the jiffy "ejson: format of {[{<<"foo">>, <<"bar">>}, {<<"foo2">>, <<"bar2">>}]} and turns it into a map,
+ %usefu because ejsons do not appear to be order-independent-comparable, but maps are (e.g., two maps are equal if all their k+v are equal but agnostic to order)
+ jiffy:decode(jiffy:encode(E), [return_maps]).
diff --git a/src/util_tests.erl b/src/util_tests.erl
new file mode 100644
index 0000000..e37e492
--- /dev/null
+++ b/src/util_tests.erl
@@ -0,0 +1,53 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(util_tests).
+-include_lib("eunit/include/eunit.hrl").
+-import(util, [
+ iso_elapsed/2,
+ ip_to_str/1,
+ update_with_new_config_map/2,
+ ejson_to_map/1]).
+
+iso_elapsed_test() ->
+ ?assert(iso_elapsed(<<"2017-04-27T18:38:10Z">>, <<"2017-04-27T18:38:08Z">>) == 2),
+ ?assert(iso_elapsed(<<"2017-04-29T18:38:10Z">>, <<"2017-04-27T18:38:08Z">>) == 60*60*24*2+2).
+
+ip_to_str_test() ->
+ ?assert(ip_to_str({{6,6,6,6}, 666}) == "6.6.6.6:666"),
+ ?assert(ip_to_str({{196,196,196,196}, 1}) == "196.196.196.196:1"),
+ ?assert(ip_to_str({{6,6,6,6666}, 666}) == invalid),
+ ?assert(ip_to_str({{6,6,6,6}, 66666}) == invalid),
+ ?assert(ip_to_str({{6,6,-6,6}, 666}) == invalid),
+ ?assert(ip_to_str({{6,6,six,6}, 666}) == invalid).
+
+update_with_new_config_map_test() ->
+ ?assert(update_with_new_config_map(#{<<"foo">>=><<"smartbar">>, <<"preffoo">>=><<"smartprefbar">>}, #{<<"foo">>=><<"bar">>}) == #{<<"foo">>=><<"smartbar">>}),
+ ?assert(update_with_new_config_map(#{<<"fooD">>=><<"smartbar">>}, #{<<"foo">>=><<"bar">>}) == nooverlap),
+ ?assert(update_with_new_config_map(#{<<"foo">>=><<"smartbar">>,<<"foo2">>=><<"smartbar2">>}, #{<<"foo">>=><<"bar">>, <<"foo2">>=><<"bar2">>}) == #{<<"foo">>=><<"smartbar">>, <<"foo2">>=><<"smartbar2">>}).
+
+ejson_to_map_test() ->
+ EJ1 = {[{<<"foo">>, <<"bar">>}, {<<"foo2">>, <<"bar2">>}]},
+ EJ2 = {[{<<"foo2">>, <<"bar2">>}, {<<"foo">>, <<"bar">>}]},
+ M1 = ejson_to_map(EJ1),
+ M2 = ejson_to_map(EJ2),
+ ?assert(EJ1 /= EJ2), %HERE LIES THE PROBLEM HUDSON
+ ?assert(M1 == M2). %GREAT SUCCESS!
+
diff --git a/src/workflows.erl b/src/workflows.erl
new file mode 100644
index 0000000..a8c6abb
--- /dev/null
+++ b/src/workflows.erl
@@ -0,0 +1,324 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(workflows).
+
+%Module holds functions that execute big workflows, like deploying a CDAP application.
+
+-include("application.hrl").
+-export([deploy_cdap_app/17, %super offensive arity.. should probably start using some structs to cut this
+ undeploy_cdap_app/6,
+ undeploy_hydrator_pipeline/6,
+ deploy_hydrator_pipeline/12,
+ all_200s_else_showerror/2,
+ app_config_reconfigure/7,
+ app_preferences_reconfigure/7,
+ smart_reconfigure/7
+ ]).
+
+-import(util, [iso/0, to_str/1]).
+-import(logging, [metrics/3]).
+
+-define(MET(Sev, Req, Bts, XER, TgtE, TgtS, TgtRSC, Msg), metrics(Sev, Req, [{bts, Bts}, {xer,XER}, {tgte, TgtE}, {tgts, TgtS}, {tgtrsc, TgtRSC}, {mod, to_str(?MODULE)}, {msg, Msg}])).
+-define(CDAPE, "cdap cluster").
+-define(CNSE, "consul cluster").
+
+%private
+attempt( Req, XER, { Mod, Func, Args }, ServiceName, Action, LogResponse) ->
+ %Thanks Garry!!
+ %Helper function to
+ %1. log the start timestamp
+ %2. Do an action specificed by mod:func(args). Assumes XER always first arg
+ %3. Log a metrics info statement about the API cll
+ %4. assert the return code was a 200, let it crash otehrwise, caller catches
+ Start = iso(),
+ {RC, RB} = apply( Mod, Func, [XER | Args] ),
+ ?MET(info, Req, Start, XER, ServiceName, Action, RC, case LogResponse of true -> to_str(RB); false -> "" end),
+ {RC, RB}.
+
+%public
+-spec all_200s_else_showerror(fun((any()) -> httpstat()), list()) -> httpstat().
+all_200s_else_showerror(FClosure, ListToMap) ->
+ %Takes a "partial" with the spec: f(X) -> {HTTP_Status_Code, HTTP_Response}, maps it onto ListToMap, and either
+ %returns {200, ""} or else the first error encountered after executing the entire list (does not short circuit!)
+ %
+ %I say "partial" because there are no real "partials" in Erlang but you can make them using Closure's out of funs (anonymous functions), so FClosure is a Closure just waiting for the last argument
+ %See:
+ %https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0ahUKEwjtyeiC6LbSAhVH0FQKHffhAr0QFggcMAA&url=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F13355544%2Ferlang-equivalents-of-haskell-where-partial-lambda&usg=AFQjCNHnEZjQHtQhKXN67DBKKoJpqRXztg&cad=rja
+ %http://stackoverflow.com/questions/16183971/currying-functions-erlang
+ L = lists:filter(fun({X, _}) -> X /= 200 end, lists:map(FClosure, ListToMap)),
+ case L of
+ [] -> {200, ""};
+ _ -> lists:nth(1, L)
+ end.
+
+deploy_cdap_app(Req, XER, Appname, ConsulURL, CDAPURL, HCInterval, AutoDeregisterAfter, AppConfig, JarURL, ArtifactName, ArtifactVersion, Namespace, AppPreferences, ParsedProgramPreferences, Programs, RequestUrl, Healthcheckurl) ->
+ %push the UNBOUND config and preferences into Consul.
+ %I don't think we should push bound configs because triggering a "rebind" will suffer if the templating language is lost.
+ {200,_} = attempt(Req, XER, { consul_interface, consul_push_config, [ Appname, ConsulURL, AppConfig ] }, ?CNSE, "push config", true),
+
+ %push the preferences
+ {200,_} = attempt(Req, XER, { consul_interface, consul_push_preferences, [ Appname, ConsulURL, AppPreferences ] }, ?CNSE, "push preferences", true),
+
+ %get the bound config
+ {200,BoundConfig} = attempt(Req, XER, { consul_interface, consul_bind_config, [ Appname, ConsulURL ] }, "config binding service", "bind config", false),
+
+ %fetch the JAR.
+ {200,JarBody} = attempt(Req, XER, { httpabs, get, [ JarURL ] }, "nexus", "file get", false),
+
+ %create the Namespace
+ {200,_} = attempt( Req, XER, { cdap_interface, create_namespace, [ Namespace, CDAPURL ] }, ?CDAPE, "create namespace", true),
+
+ %deploy the application
+ {200,_} = attempt( Req, XER, { cdap_interface, deploy_app, [ Appname, Namespace, CDAPURL, JarBody, ArtifactName, ArtifactVersion, BoundConfig ] }, ?CDAPE, "deploy application", true),
+
+ %set app preferences
+ {200,_} = attempt( Req, XER, { cdap_interface, push_down_app_preferences, [ Appname, Namespace, CDAPURL, AppPreferences ] }, ?CDAPE, "set app preferences", true),
+
+ %push down the program preferences
+ {200,_} = attempt( Req, XER, { cdap_interface, push_down_program_preferences, [ Appname, Namespace, CDAPURL, ParsedProgramPreferences ] }, ?CDAPE, "set program preferences", true),
+
+ %start the CDAP application services
+ {200,_} = attempt( Req, XER, { cdap_interface, exec_programs, [ Appname, Namespace, CDAPURL, Programs, "start" ] }, ?CDAPE, "start program", true),
+
+ %Parse my IP and port
+ {ok, {http, _, IPaS, Port, _, _}} = http_uri:parse(binary_to_list(RequestUrl)),
+
+ %register with Consul; We will register the broker's URL as the address in Consul then the upstream service can do a GET on this Broker to get the resource object
+ {200,_} = attempt( Req, XER, { consul_interface, consul_register, [ Appname, ConsulURL, list_to_binary(IPaS), Port, Healthcheckurl, HCInterval, AutoDeregisterAfter ] }, ?CNSE, "service register", true),
+
+ ok. %if got to here, all went well.
+
+-spec undeploy_cdap_app(any(), string(), binary(), string(), string(), binary()) -> ok.
+undeploy_cdap_app(Req, XER, Appname, CDAPURL, ConsulURL, Namespace) ->
+ %stop the CDAP programs assuming they are valid
+ Programs = util:get_programs_for_pfapp_from_db(Appname),
+ Bts = iso(), %record begining timestamp
+ {RC, RB} = cdap_interface:exec_programs(XER, Appname, Namespace, CDAPURL, Programs, "stop"),
+ case RC of
+ 200 -> ?MET(info, Req, Bts, XER, ?CDAPE, "program stop", RC, "OK");
+ 400 -> ?MET(warning, Req, Bts, XER, ?CDAPE, "program stop", RC, io_lib:format("Delete called on ~s but it's programs were not running, probably indicates the app crashed in some way: ~s", [Appname, RB]));
+ 404 -> ?MET(warning, Req, Bts, XER, ?CDAPE, "program stop", RC, io_lib:format("Delete called on ~s but it's gone, probably indicates a horrible manual deletion from CDAP: ~s", [Appname, RB]));
+ _ -> ?MET(warning, Req, Bts, XER, ?CDAPE, "program stop", RC, io_lib:format("Delete called on ~s but CDAP returned a ~p. This likely means things will NOT be cleaned up properly!! ~s", [Appname, RC, RB]))
+ end,
+
+ %delete the application
+ Bts2 = iso(),
+ {RC2, RB2} = cdap_interface:delete_app(XER, Appname, Namespace, CDAPURL),
+ case RC2 of
+ 200 -> ?MET(info, Req, Bts2, XER, ?CDAPE, "app delete", RC2, "OK");
+ 404 -> ?MET(warning, Req, Bts2, XER, ?CDAPE, "app delete", RC2, io_lib:format("Delete called on ~s but it's gone, probably indicates a horrible manual deletion from CDAP: ~s", [Appname, RB2]));
+ _ -> ?MET(warning, Req, Bts2, XER, ?CDAPE, "app delete", RC2, io_lib:format("Delete called on ~s but CDAP returned a ~p. This likely means things will NOT be cleaned up properly!! ~s", [Appname, RC2, RB2]))
+ end,
+
+ %deregister with consul
+ Bts3 = iso(),
+ {RC3, RB3} = consul_interface:consul_deregister(XER, Appname, ConsulURL),
+ case RC3 of
+ 200 -> ?MET(info, Req, Bts3, XER, ?CNSE, "service deregister", RC3, "OK");
+ _ -> ?MET(warning, Req, Bts3, XER, ?CNSE, "service deregister", RC3, io_lib:format("Delete called on ~s but Consul returned a ~p. This likely means a service is not cleaned up properly! ~s", [Appname, RC3, RB3]))
+ end,
+
+ %delete the config key stored earlier
+ Bts4 = iso(),
+ {RC4, RB4} = consul_interface:consul_delete_config(XER, Appname, ConsulURL),
+ case RC4 of
+ 200 -> ?MET(info, Req, Bts4, XER, ?CNSE, "key (config) delete", RC4, "OK");
+ 404 -> ?MET(warning, Req, Bts4, XER, ?CNSE, "key (config) delete", RC4, io_lib:format("Delete called on ~s but it's consul key is gone, probably indicates a horrible manual deletion from Consul: ~s", [Appname, RB4]));
+ _ -> ?MET(warning, Req, Bts4, XER, ?CNSE, "key (config) delete", RC4, io_lib:format("Delete called on ~s but Consul returned a ~p. This likely means a key is not cleaned up properly! ~s", [Appname, RC4, RB4]))
+ end,
+
+ %delete the config key stored earlier
+ Bts5 = iso(),
+ {RC5, RB5} = consul_interface:consul_delete_preferences(XER, Appname, ConsulURL),
+ case RC5 of
+ 200 -> ?MET(info, Req, Bts5, XER, ?CNSE, "key (preferences) delete", RC5, "OK");
+ 404 -> ?MET(warning, Req, Bts5, XER, ?CNSE, "key (preferences) delete", RC5, io_lib:format("Delete called on ~s but it's consul key is gone, probably indicates a horrible manual deletion from Consul: ~s", [Appname, RB5]));
+ _ -> ?MET(warning, Req, Bts5, XER, ?CNSE, "key (preferences) delete", RC5, io_lib:format("Delete called on ~s but Consul returned a ~p. This likely means a key is not cleaned up properly! ~s", [Appname, RC5, RB5]))
+ end,
+
+ ok.
+
+deploy_hydrator_pipeline(Req, XER, Appname, Namespace, CDAPURL, PipelineConfigJsonURL, Dependencies, ConsulURL, RequestUrl, Healthcheckurl, HCInterval, AutoDeregisterAfter) ->
+ %fetch the JSON
+ {200,PipelineJson} = attempt(Req, XER, { httpabs, get, [ PipelineConfigJsonURL ] }, "nexus", "file get", false),
+
+ %TODO! Config
+
+ %create the Namespace
+ {200,_} = attempt( Req, XER, { cdap_interface, create_namespace, [ Namespace, CDAPURL ] }, ?CDAPE, "create namespace", true),
+
+ %deploy pipeline dependencies%
+ {200,_} = attempt( Req, XER, { cdap_interface, deploy_pipeline_dependencies, [ Namespace, CDAPURL, Dependencies ] }, ?CDAPE, "deploy dependencies", true),
+
+ %deploy pipeline dependencies UI properties
+ %NOTE! There is a bit of redundancy with the above call. I debated merging the two.
+ %I decided against it because I want failures to load the deps seperated from failures to load the properties files, because they are different URLs.
+ %Splitting them like this allows me to return the error to the user on the exact step that failed
+ {200,_} = attempt( Req, XER, { cdap_interface, deploy_pipeline_dependencies_properties, [ Namespace, CDAPURL, Dependencies ] }, ?CDAPE, "deploy dependency properties", true),
+
+ %deploy the pipeline
+ {200,"Deploy Complete"} = attempt( Req, XER, { cdap_interface, deploy_pipeline, [ Appname, Namespace, CDAPURL, PipelineJson ] }, ?CDAPE, "deploy pipeline", true),
+
+ %start the pipeline
+ {200,_} = attempt( Req, XER, { cdap_interface, exec_pipeline, [ Appname, Namespace, CDAPURL, "resume" ] }, ?CDAPE, "start pipeline", true),
+
+ %Parse my IP and port
+ {ok, {http, _, IPaS, Port, _, _}} = http_uri:parse(binary_to_list(RequestUrl)),
+
+ %register with Consul; We will register the broker's URL as the address in Consul, then the upstream service can do a GET on this Broker to get the resource object
+ {200,_} = attempt( Req, XER, { consul_interface, consul_register, [ Appname, ConsulURL, list_to_binary(IPaS), Port, Healthcheckurl, HCInterval, AutoDeregisterAfter] }, ?CNSE, "service register", true),
+
+ ok.
+
+undeploy_hydrator_pipeline(Req, XER, Appname, Namespace, CDAPURL, ConsulURL) ->
+ %UNDEPLOY NOTES:
+ % 1 Never fail on undeploy, log and continue.
+ % 2 Leave artifact dependencies on the cluster. We can revisit this if we need a "LEAVE NO TRACE" solution. TODO.
+ % 3 I noticed an asymetry in deploy/undeplopy here: there is no need to start workflows. Terry clarified this is correct: "Batch pipelines contain a schedule, but deploying the pipeline does not activate the schedule. Resuming the schedule makes it active so the pipeline will run at its next scheduled time. When undeploying, if you only suspend the schedule which prevents future runs from starting, then any currently active runs will continue until they finish (or not finish if they are hung). So we follow up with a stop workflow to kill any run that may be in progress so the following commands will not fail (delete pipeline or delete namespace).
+ %We avoid a race condition by suspending the schedule first.
+
+ %suspend the pipeline
+ Bts = iso(),
+ {RC1, RB1} = cdap_interface:exec_pipeline(XER, Appname, Namespace, CDAPURL, "suspend"),
+ case RC1 of
+ 200 -> ?MET(info, Req, Bts, XER, ?CDAPE, "pipeline suspend", RC1, "OK");
+ 400 -> ?MET(warning, Req, Bts, XER, ?CDAPE, "pipeline suspend", RC1, io_lib:format("Pipeline suspend called on ~s but it's was not running, probably OK, probably it is on a schedule ~s", [Appname, RB1]));
+ 404 -> ?MET(warning, Req, Bts, XER, ?CDAPE, "pipeline suspend", RC1, io_lib:format("Pipeline suspend called on ~s but it's gone, probably indicates a horrible manual deletion from CDAP: ~s", [Appname, RB1]));
+ _ -> ?MET(warning, Req, Bts, XER, ?CDAPE, "pipeline suspend", RC1, io_lib:format("Pipeline suspend called on ~s but CDAP unexpectedly return a ~p. This likely means things will NOT be cleaned up properly!! ~s", [Appname, RC1, RB1]))
+ end,
+
+ %stop the workflow
+ Bts2 = iso(),
+ {RC2, RB2} = cdap_interface:exec_pipeline_workflow(XER, Appname, Namespace, CDAPURL, "stop"),
+ case RC2 of
+ 200 -> ?MET(info, Req, Bts2, XER, ?CDAPE, "workflow stop", RC2, "OK");
+ 400 -> ?MET(warning, Req, Bts2, XER, ?CDAPE, "workflow stop", RC2, io_lib:format("Workflow stop called on ~s but it's was not running, probably OK, probably it is on a schedule ~s", [Appname, RB2]));
+ 404 -> ?MET(warning, Req, Bts2, XER, ?CDAPE, "workflow stop", RC2, io_lib:format("Workflow stop called on ~s but it's gone, probably indicates a horrible manual deletion from CDAP: ~s", [Appname, RB2]));
+ _ -> ?MET(warning, Req, Bts2, XER, ?CDAPE, "workflow stop", RC2, io_lib:format("Workflow stop called on ~s but CDAP unexpectedly return a ~p. This likely means things will NOT be cleaned up properly!! ~s", [Appname, RC2, RB2]))
+ end,
+
+ %?MET(warning, Req, Bts2, XER, ?CDAPE, "workflow stop", RC2, io_lib:format());
+
+ %TODO! Delete config (Configs are currently not pushed for hydrator pipelines, so have to do that first)
+
+ %delete the application
+ Bts3 = iso(),
+ {RC3, RB3} = cdap_interface:delete_app(XER, Appname, Namespace, CDAPURL),
+ case RC3 of
+ 200 -> ?MET(info, Req, Bts3, XER, ?CDAPE, "app delete", RC3, "OK");
+ 404 -> ?MET(warning, Req, Bts3, XER, ?CDAPE, "app delete", RC3, io_lib:format("Delete called on ~s but it's gone, probably indicates a horrible manual deletion from CDAP: ~s", [Appname, RB3]));
+ _ -> ?MET(warning, Req, Bts3, XER, ?CDAPE, "app delete", RC3, io_lib:format("Delete called on ~s but CDAP returned a ~p. This likely means things will NOT be cleaned up properly!! ~s", [Appname, RC3, RB3]))
+ end,
+
+ %deregister with consul
+ Bts4 = iso(),
+ {RC4, RB4} = consul_interface:consul_deregister(XER, Appname, ConsulURL),
+ case RC4 of
+ 200 -> ?MET(info, Req, Bts4, XER, ?CNSE, "service deregister", RC4, "OK");
+ _ -> ?MET(warning, Req, Bts4, XER, ?CNSE, "service deregister", RC3, io_lib:format("Delete called on ~s but Consul returned a ~p. This likely means a service is not cleaned up properly! ~s", [Appname, RC4, RB4]))
+ end,
+ ok.
+
+app_config_reconfigure(Req, XER, Appname, Namespace, ConsulURL, CDAPURL, AppConfig) ->
+ %Reconfigure CDAP App's App Config
+
+ %push the UNBOUND config into Consul. I don't think we should push bound configs because triggering a "rebind" will suffer if the templating language is lost.
+ {200,_} = attempt( Req, XER, { consul_interface, consul_push_config, [ Appname, ConsulURL, AppConfig ] }, ?CNSE, "push config", true),
+
+ %get the bound config
+ {200,BoundConfig} = attempt(Req, XER, { consul_interface, consul_bind_config, [ Appname, ConsulURL ] }, "config binding service", "bind config", false),
+
+ %push it to CDAP
+ %TODO! What happens when we push to consul but connection to CDAP fails? Then CDAP and Consul are out of sync.
+ %Maybe create a "BACKUP" key in Consul for the old config and "rollback" if the below fails
+ %Transactions across distributed systems is hard =(
+ {200,_} = attempt( Req, XER, { cdap_interface, push_down_config, [ Appname, Namespace, CDAPURL, BoundConfig ] }, ?CDAPE, "reconfigure app config", true),
+
+ ok.
+
+app_preferences_reconfigure(Req, XER, Appname, Namespace, ConsulURL, CDAPURL, AppPreferences) ->
+ %Workflow:
+ % 1) push the new preferences to Cosnul
+ % 2) stop all the programs
+ % 3) push the programs to CDAP
+ % 4) start all the programs
+ %
+ % NOTE! Currently it is assumed that preferences do not need to be bound by the config_binding_service,
+ % as only app config contains service discovery items.
+
+ Programs = util:get_programs_for_pfapp_from_db(Appname),
+
+ %1 push the new prefs up to Consul
+ {200,_} = attempt(Req, XER, { consul_interface, consul_push_preferences, [ Appname, ConsulURL, AppPreferences ] }, ?CNSE, "push preferences", true),
+
+ %2 stop the programs
+ {200,_} = attempt( Req, XER, { cdap_interface, exec_programs, [ Appname, Namespace, CDAPURL, Programs, "stop" ] }, ?CDAPE, "stop programs", true),
+
+ %3 set app preferences
+ {200,_} = attempt( Req, XER, { cdap_interface, push_down_app_preferences, [ Appname, Namespace, CDAPURL, AppPreferences ] }, ?CDAPE, "set app preferences", true),
+
+ %4 start er' up again
+ {200,_} = attempt( Req, XER, { cdap_interface, exec_programs, [ Appname, Namespace, CDAPURL, Programs, "start" ] }, ?CDAPE, "start program", true),
+
+ ok.
+
+smart_reconfigure(Req, XER, Appname, Namespace, ConsulURL, CDAPURL, NewConfig) ->
+ %Smart reconfigure takes in a JSON (NewConfig) and tries to be "smart"; it tries to figure out whether Config is a reconfiguration of
+ %app config, app preferences, or both.
+ %
+ %Specifically this workflow works as follows;
+ %1) pull down AppConfig in consul
+ %2) pull down Prefernces in consul
+ %3) see if any keynames in this function's input (NewConfig) are keynames in AppConfig
+ % 3a if so, reconfigure it
+ % 3b write the delta'd AppConfig back to consul
+ %4) see if any keynames in this fucntion's input (NewConfig) are keynames in Preferences
+ % 4a if so, reconfigure ppreferences
+ % 4b write the delta'd preferences back to consul
+ %5) Return a status
+
+
+ %see if we have app config overlaps
+ {200, ConsulAppConfig} = consul_interface:consul_get_configuration(XER, Appname, ConsulURL),
+ NewAppConfig = util:update_with_new_config_map(NewConfig, ConsulAppConfig),
+ WasNewAppConfig = case NewAppConfig of
+ nooverlap -> nooverlap;
+ _ ->
+ ok = app_config_reconfigure(Req, XER, Appname, Namespace, ConsulURL, CDAPURL, NewAppConfig)
+ end,
+
+ %see if we have preferences overlap
+ {200, ConsulPreferences} = consul_interface:consul_get_preferences(XER, Appname, ConsulURL),
+ NewAppPreferences = util:update_with_new_config_map(NewConfig, ConsulPreferences),
+ WasNewAppPreferences = case NewAppPreferences of
+ nooverlap -> nooverlap;
+ _ ->
+ ok = app_preferences_reconfigure(Req, XER, Appname, Namespace, ConsulURL, CDAPURL, NewAppPreferences)
+ end,
+
+ case WasNewAppConfig == nooverlap andalso WasNewAppPreferences == nooverlap of
+ true ->
+ {400, "non-overlapping configuration was sent"};
+ false ->
+ ok
+ end.
+
+
diff --git a/src/workflows_tests.erl b/src/workflows_tests.erl
new file mode 100644
index 0000000..1b7b51c
--- /dev/null
+++ b/src/workflows_tests.erl
@@ -0,0 +1,27 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+
+-module(workflows_tests).
+-include_lib("eunit/include/eunit.hrl").
+
+all_200s_else_showerror_test() ->
+ ?assert({200, ""} == workflows:all_200s_else_showerror(fun(_) -> {200, "all good"} end, [1,"A", foo])),
+ ?assert({500, "constant dissapointment"} == workflows:all_200s_else_showerror(fun(X) -> if X < 5 -> {200, "all good"}; true -> {500, "constant dissapointment"} end end, [0,10])).
+
diff --git a/swagger/swagger.html b/swagger/swagger.html
new file mode 100644
index 0000000..3d51590
--- /dev/null
+++ b/swagger/swagger.html
@@ -0,0 +1,1899 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <style>/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:800px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:900px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}.panel-definition{border-color:#a2a2a2}.panel-definition>.panel-heading{color:#000;background-color:#eee;border-color:#a2a2a2}.panel-definition>.panel-heading+.panel-collapse>.panel-body{border-top-color:#a2a2a2}.panel-definition>.panel-heading .badge{color:#eee;background-color:#000}.panel-definition>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#a2a2a2}.json-schema-description:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Description";padding-bottom:.5em;display:block}.json-schema-description:not(:last-child){padding-bottom:1.5em}.json-schema-properties:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Properties";padding-bottom:.5em;display:block}.json-schema-properties:not(:last-child){padding-bottom:1.5em}.json-schema-properties dd:not(:last-child){padding-bottom:1em}.json-schema-properties dl{margin:0}.json-schema-example:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Example";padding-bottom:.5em;display:block}.json-schema-example:not(:last-child){padding-bottom:1.5em}.json-schema-array-items:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Items";padding-bottom:.5em;display:block}.json-schema-array-items:not(:last-child){padding-bottom:1.5em}.json-schema-allOf-inherited:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Inherited";padding-bottom:.5em;display:block}.json-schema-allOf-inherited:not(:last-child){padding-bottom:1.5em}.json-schema-allOf-inherited ul{padding-left:0;list-style:none}.json-schema-anyOf>dl{border-left:2px solid #a2a2a2;padding-left:1em}.json-schema-anyOf>dl dt:not(:first-child):before{content:"or "}.json-schema-anyOf>dl dt:first-child:before{content:"either "}.json-schema-additionalProperties:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Additional properties";padding-bottom:.5em;display:block}.json-schema-additionalProperties:not(:last-child){padding-bottom:1.5em}.json-inner-schema .json-schema-properties,.json-inner-schema .json-schema-array-items,.json-inner-schema .json-schema-description,.json-inner-schema .json-schema-example{padding-left:1em;margin-top:.5em;padding-bottom:.5em;border-left:2px solid #a2a2a2}.json-property-discriminator:before{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;background-color:#777;content:"discriminator"}a.json-property-discriminator:before:hover,a.json-property-discriminator:before:focus{color:#fff;text-decoration:none;cursor:pointer}.json-property-discriminator:before:empty{display:none}.btn .json-property-discriminator:before{position:relative;top:-1px}.json-property-discriminator:before[href]:hover,.json-property-discriminator:before[href]:focus{background-color:#5e5e5e}.json-property-required:before{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;background-color:#777;content:"required"}a.json-property-required:before:hover,a.json-property-required:before:focus{color:#fff;text-decoration:none;cursor:pointer}.json-property-required:before:empty{display:none}.btn .json-property-required:before{position:relative;top:-1px}.json-property-required:before[href]:hover,.json-property-required:before[href]:focus{background-color:#5e5e5e}.json-property-read-only:before{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;background-color:#777;content:"read only"}a.json-property-read-only:before:hover,a.json-property-read-only:before:focus{color:#fff;text-decoration:none;cursor:pointer}.json-property-read-only:before:empty{display:none}.btn .json-property-read-only:before{position:relative;top:-1px}.json-property-read-only:before[href]:hover,.json-property-read-only:before[href]:focus{background-color:#5e5e5e}.json-property-type{font-style:italic;font-weight:100}.json-property-format{font-size:smaller}.json-property-enum{font-weight:lighter;font-size:small}.json-property-default-value{font-weight:lighter;font-size:small}.json-property-default-value:before{content:'(default: "'}.json-property-default-value:after{content:'")'}.json-property-enum-item{font-weight:lighter;font-size:small}.json-property-enum-item:before,.json-property-enum-item:after{content:"\""}.json-schema--reference{font-size:90%}.table.swagger--summary>tbody>tr>td.swagger--summary-path{vertical-align:middle}.table.swagger--summary>tbody>tr>td p{margin:0}.swagger--panel-operation-post{border-color:#78cc94}.swagger--panel-operation-post>.panel-heading{color:#333;background-color:#e7f6ec;border-color:#78cc94}.swagger--panel-operation-post>.panel-heading+.panel-collapse>.panel-body{border-top-color:#78cc94}.swagger--panel-operation-post>.panel-heading .badge{color:#e7f6ec;background-color:#333}.swagger--panel-operation-post>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#78cc94}.swagger--panel-operation-post .operation-name{font-weight:bold}.swagger--panel-operation-post .operation-summary{float:right !important}.swagger--panel-operation-get{border-color:#74a8d1}.swagger--panel-operation-get>.panel-heading{color:#333;background-color:#e7f0f7;border-color:#74a8d1}.swagger--panel-operation-get>.panel-heading+.panel-collapse>.panel-body{border-top-color:#74a8d1}.swagger--panel-operation-get>.panel-heading .badge{color:#e7f0f7;background-color:#333}.swagger--panel-operation-get>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#74a8d1}.swagger--panel-operation-get .operation-name{font-weight:bold}.swagger--panel-operation-get .operation-summary{float:right !important}.swagger--panel-operation-put{border-color:#d8ab71}.swagger--panel-operation-put>.panel-heading{color:#333;background-color:#f9f2e9;border-color:#d8ab71}.swagger--panel-operation-put>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d8ab71}.swagger--panel-operation-put>.panel-heading .badge{color:#f9f2e9;background-color:#333}.swagger--panel-operation-put>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d8ab71}.swagger--panel-operation-put .operation-name{font-weight:bold}.swagger--panel-operation-put .operation-summary{float:right !important}.swagger--panel-operation-patch{border-color:#ed7c59}.swagger--panel-operation-patch>.panel-heading{color:#333;background-color:#FCE9E3;border-color:#ed7c59}.swagger--panel-operation-patch>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ed7c59}.swagger--panel-operation-patch>.panel-heading .badge{color:#FCE9E3;background-color:#333}.swagger--panel-operation-patch>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ed7c59}.swagger--panel-operation-patch .operation-name{font-weight:bold}.swagger--panel-operation-patch .operation-summary{float:right !important}.swagger--panel-operation-options{border-color:#74a8d1}.swagger--panel-operation-options>.panel-heading{color:#333;background-color:#e7f0f7;border-color:#74a8d1}.swagger--panel-operation-options>.panel-heading+.panel-collapse>.panel-body{border-top-color:#74a8d1}.swagger--panel-operation-options>.panel-heading .badge{color:#e7f0f7;background-color:#333}.swagger--panel-operation-options>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#74a8d1}.swagger--panel-operation-options .operation-name{font-weight:bold}.swagger--panel-operation-options .operation-summary{float:right !important}.swagger--panel-operation-delete{border-color:#c77d7d}.swagger--panel-operation-delete>.panel-heading{color:#333;background-color:#f5e8e8;border-color:#c77d7d}.swagger--panel-operation-delete>.panel-heading+.panel-collapse>.panel-body{border-top-color:#c77d7d}.swagger--panel-operation-delete>.panel-heading .badge{color:#f5e8e8;background-color:#333}.swagger--panel-operation-delete>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#c77d7d}.swagger--panel-operation-delete .operation-name{font-weight:bold}.swagger--panel-operation-delete .operation-summary{float:right !important}.swagger--panel-operation-head{border-color:#f3ff34}.swagger--panel-operation-head>.panel-heading{color:#333;background-color:#fcffcd;border-color:#f3ff34}.swagger--panel-operation-head>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f3ff34}.swagger--panel-operation-head>.panel-heading .badge{color:#fcffcd;background-color:#333}.swagger--panel-operation-head>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f3ff34}.swagger--panel-operation-head .operation-name{font-weight:bold}.swagger--panel-operation-head .operation-summary{float:right !important}.sw-operation-description:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Description";padding-bottom:.5em;display:block}.sw-operation-description:not(:last-child){padding-bottom:1.5em}.sw-request-params:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Request parameters";padding-bottom:.5em;display:block}.sw-request-params:not(:last-child){padding-bottom:1.5em}.sw-request-body:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Request body";padding-bottom:.5em;display:block}.sw-request-body:not(:last-child){padding-bottom:1.5em}.sw-responses:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Responses";padding-bottom:.5em;display:block}.sw-responses:not(:last-child){padding-bottom:1.5em}.swagger--global:before{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;background-color:#777;content:'global'}a.swagger--global:before:hover,a.swagger--global:before:focus{color:#fff;text-decoration:none;cursor:pointer}.swagger--global:before:empty{display:none}.btn .swagger--global:before{position:relative;top:-1px}.swagger--global:before[href]:hover,.swagger--global:before[href]:focus{background-color:#5e5e5e}table.table th.sw-param-key{width:auto}table.table th.sw-param-key:before{content:"Key"}table.table th.sw-param-name{width:auto}table.table th.sw-param-name:before{content:"Name"}table.table th.sw-param-description{width:auto}table.table th.sw-param-description:before{content:"Description"}table.table th.sw-param-data-type{width:auto}table.table th.sw-param-data-type:before{content:"Data type"}table.table th.sw-param-type{width:auto}table.table th.sw-param-type:before{content:"Type"}table.table th.sw-request-security-schema{width:auto}table.table th.sw-request-security-schema:before{content:"Schema"}table.table th.sw-request-security-scopes{width:auto}table.table th.sw-request-security-scopes:before{content:"Scopes"}table.table th.sw-response-header-name{width:auto}table.table th.sw-response-header-name:before{content:"Header"}table.table th.sw-response-header-description{width:auto}table.table th.sw-response-header-description:before{content:"Description"}table.table th.sw-response-header-data-type{width:auto}table.table th.sw-response-header-data-type:before{content:"Data type"}.sw-response-name-value{font-weight:bold}.sw-response-description-text{padding-bottom:.5em}code.highlight{padding:0}.panel-security-definition{border-color:#a2a2a2}.panel-security-definition>.panel-heading{color:#000;background-color:#eee;border-color:#a2a2a2}.panel-security-definition>.panel-heading+.panel-collapse>.panel-body{border-top-color:#a2a2a2}.panel-security-definition>.panel-heading .badge{color:#eee;background-color:#000}.panel-security-definition>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#a2a2a2}.sw-request-security:before{font-weight:bold;color:#555;text-transform:uppercase;content:"Security";padding-bottom:.5em;display:block}.sw-request-security:not(:last-child){padding-bottom:1.5em}.sw-security-definition-basic:before{color:#555;font-size:smaller;content:"(HTTP Basic Authentication)"}span.sw-default-value-header{font-weight:bold}.sw-info{font-weight:bold}.sw-info span{font-family:monospace;font-weight:normal;font-size:1.1em}</style>
+ <meta charset="UTF-8">
+ <title>CDAP Broker API</title>
+</head>
+<body>
+<div class="container">
+ <h1>CDAP Broker API</h1>
+ <p class="sw-info">Version: <span class="sw-info-version">4.0.3</span></p>
+ <p></p>
+
+
+ <div id="sw-schemes" class="sw-default-value">
+ <span class="sw-default-value-header">Schemes:</span>
+
+ </div>
+
+ <h2 id="swagger--summary-no-tags">Summary</h2>
+ <table class="table table-bordered table-condensed swagger--summary">
+ <thead>
+ <tr>
+ <th>Path</th>
+ <th>Operation</th>
+ <th>Description</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td class="swagger--summary-path" rowspan="1">
+ <a href="#path--">/</a>
+ </td>
+ <td>
+ <a href="#operation---get">GET</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td class="swagger--summary-path" rowspan="1">
+ <a href="#path--application">/application</a>
+ </td>
+ <td>
+ <a href="#operation--application-get">GET</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td class="swagger--summary-path" rowspan="1">
+ <a href="#path--application---appname-">/application*/{appname}</a>
+ </td>
+ <td>
+ <a href="#operation--application---appname--put">PUT</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td class="swagger--summary-path" rowspan="1">
+ <a href="#path--application-delete">/application/delete</a>
+ </td>
+ <td>
+ <a href="#operation--application-delete-post">POST</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td class="swagger--summary-path" rowspan="3">
+ <a href="#path--application--appname-">/application/{appname}</a>
+ </td>
+ <td>
+ <a href="#operation--application--appname--delete">DELETE</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <a href="#operation--application--appname--get">GET</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <a href="#operation--application--appname--put">PUT</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td class="swagger--summary-path" rowspan="1">
+ <a href="#path--application--appname--healthcheck">/application/{appname}/healthcheck</a>
+ </td>
+ <td>
+ <a href="#operation--application--appname--healthcheck-get">GET</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td class="swagger--summary-path" rowspan="1">
+ <a href="#path--application--appname--metrics">/application/{appname}/metrics</a>
+ </td>
+ <td>
+ <a href="#operation--application--appname--metrics-get">GET</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ <tr>
+ <td class="swagger--summary-path" rowspan="1">
+ <a href="#path--application--appname--reconfigure">/application/{appname}/reconfigure</a>
+ </td>
+ <td>
+ <a href="#operation--application--appname--reconfigure-put">PUT</a>
+ </td>
+ <td>
+
+ </td>
+ </tr>
+ </tbody>
+ </table>
+
+
+
+ <h2>Paths</h2>
+
+
+ <span id="path--"></span>
+ <div id="operation---get" class="swagger--panel-operation-get panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>shows some information about this service</p>
+
+ </section>
+
+
+ <section class="sw-responses">
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/info">info</a>
+ </div>
+ </div></div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <span id="path--application"></span>
+ <div id="operation--application-get" class="swagger--panel-operation-get panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/application</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>get all applications registered with this broker</p>
+
+ </section>
+
+
+ <section class="sw-responses">
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+
+ <section class="json-schema-array-items">
+ <span class="json-property-type"> <a class="json-schema-ref" href="#/definitions/appname">appname</a>
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </section> </div>
+ </div></div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <span id="path--application---appname-"></span>
+ <div id="operation--application---appname--put" class="swagger--panel-operation-put panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/application*/{appname}</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>(This is a hacky way of supporting &quot;oneOf&quot; because Swagger does not support oneOf <a href="https://github.com/OAI/OpenAPI-Specification/issues/333">https://github.com/OAI/OpenAPI-Specification/issues/333</a>. This is the same endpoint as PUT /application/appname, except the PUT body is different.)</p>
+ <p>Register a hydrator app for service and configuration discovery. This will light up a metrics and health endpoint for this app. <code>appname</code> is assumed to also be the key in consul.</p>
+
+ </section>
+
+ <section class="sw-request-body">
+
+ <p><span class="label label-default">application/json</span>
+ </p>
+ <div class="row">
+ <div class="col-md-6">
+ <p><p>required put body</p>
+ </p>
+ </div>
+ <div class="col-md-6 sw-request-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/hydratorappput">hydratorappput</a>
+ </div>
+ </div></div>
+ </div>
+ </section>
+ <section class="sw-request-params">
+ <table class="table">
+ <thead>
+ <tr>
+ <th class="sw-param-name"></th>
+ <th class="sw-param-description"></th>
+ <th class="sw-param-type"></th>
+ <th class="sw-param-data-type"></th>
+ <th class="sw-param-annotation"></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ appname
+ <td><p>Name of the application.</p>
+ </td>
+ <td>path</td>
+ <td><span class="json-property-type">string</span> <span class="json-property-format">(text)</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </td>
+ <td>
+ <span class="json-property-required"></span>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </section>
+
+ <section class="sw-responses">
+ <p><span class="label label-default">application/json</span>
+ </p>
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>Successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/Application">Application</a>
+ </div>
+ </div></div>
+
+ </div> </dd>
+ <dt class="sw-response-400">
+ 400 Bad Request
+
+ </dt>
+ <dd class="sw-response-400">
+ <div class="row">
+ <div class="col-md-12">
+ <p>put was performed but the appname was already registered with the broker, or Invalid PUT body</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <span id="path--application-delete"></span>
+ <div id="operation--application-delete-post" class="swagger--panel-operation-post panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">POST</span> <strong>/application/delete</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>endpoint to delete multiple applications at once. Returns an array of status codes, where statuscode[i] = response returned from DELETE(application/i)</p>
+
+ </section>
+
+ <section class="sw-request-body">
+
+ <div class="row">
+ <div class="col-md-6">
+ <p><p>required post body</p>
+ </p>
+ </div>
+ <div class="col-md-6 sw-request-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/multideleteput">multideleteput</a>
+ </div>
+ </div></div>
+ </div>
+ </section>
+
+ <section class="sw-responses">
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+
+ <section class="json-schema-array-items">
+ <span class="json-property-type"> <a class="json-schema-ref" href="#/definitions/returncode">returncode</a>
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </section> </div>
+ </div></div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <span id="path--application--appname-"></span>
+ <div id="operation--application--appname--delete" class="swagger--panel-operation-delete panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">DELETE</span> <strong>/application/{appname}</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>Remove an app for service and configuration discovery. This will remove the metrics and health endpoints for this app.</p>
+
+ </section>
+
+ <section class="sw-request-params">
+ <table class="table">
+ <thead>
+ <tr>
+ <th class="sw-param-name"></th>
+ <th class="sw-param-description"></th>
+ <th class="sw-param-type"></th>
+ <th class="sw-param-data-type"></th>
+ <th class="sw-param-annotation"></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ appname
+ <td><p>Name of the application.</p>
+ </td>
+ <td>path</td>
+ <td><span class="json-property-type">string</span> <span class="json-property-format">(text)</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </td>
+ <td>
+ <span class="json-property-required"></span>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </section>
+
+ <section class="sw-responses">
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>Successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ <dt class="sw-response-404">
+ 404 Not Found
+
+ </dt>
+ <dd class="sw-response-404">
+ <div class="row">
+ <div class="col-md-12">
+ <p>no app with name &#39;appname&#39; registered with this broker.</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div> <div id="operation--application--appname--get" class="swagger--panel-operation-get panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/application/{appname}</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>Returns the representation of the application resource, including the links for healthcheck and metrics.</p>
+
+ </section>
+
+ <section class="sw-request-params">
+ <table class="table">
+ <thead>
+ <tr>
+ <th class="sw-param-name"></th>
+ <th class="sw-param-description"></th>
+ <th class="sw-param-type"></th>
+ <th class="sw-param-data-type"></th>
+ <th class="sw-param-annotation"></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ appname
+ <td><p>Name of the application.</p>
+ </td>
+ <td>path</td>
+ <td><span class="json-property-type">string</span> <span class="json-property-format">(text)</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </td>
+ <td>
+ <span class="json-property-required"></span>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </section>
+
+ <section class="sw-responses">
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>Successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/Application">Application</a>
+ </div>
+ </div></div>
+
+ </div> </dd>
+ <dt class="sw-response-404">
+ 404 Not Found
+
+ </dt>
+ <dd class="sw-response-404">
+ <div class="row">
+ <div class="col-md-12">
+ <p>no app with name &#39;appname&#39; registered with this broker.</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div> <div id="operation--application--appname--put" class="swagger--panel-operation-put panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/application/{appname}</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>Register an app for service and configuration discovery. This will light up a metrics and health endpoint for this app. <code>appname</code> is assumed to also be the key in consul.</p>
+
+ </section>
+
+ <section class="sw-request-body">
+
+ <p><span class="label label-default">application/json</span>
+ </p>
+ <div class="row">
+ <div class="col-md-6">
+ <p><p>required put body</p>
+ </p>
+ </div>
+ <div class="col-md-6 sw-request-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/appput">appput</a>
+ </div>
+ </div></div>
+ </div>
+ </section>
+ <section class="sw-request-params">
+ <table class="table">
+ <thead>
+ <tr>
+ <th class="sw-param-name"></th>
+ <th class="sw-param-description"></th>
+ <th class="sw-param-type"></th>
+ <th class="sw-param-data-type"></th>
+ <th class="sw-param-annotation"></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ appname
+ <td><p>Name of the application.</p>
+ </td>
+ <td>path</td>
+ <td><span class="json-property-type">string</span> <span class="json-property-format">(text)</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </td>
+ <td>
+ <span class="json-property-required"></span>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </section>
+
+ <section class="sw-responses">
+ <p><span class="label label-default">application/json</span>
+ </p>
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>Successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/Application">Application</a>
+ </div>
+ </div></div>
+
+ </div> </dd>
+ <dt class="sw-response-400">
+ 400 Bad Request
+
+ </dt>
+ <dd class="sw-response-400">
+ <div class="row">
+ <div class="col-md-12">
+ <p>put was performed but the appname was already registered with the broker, or Invalid PUT body</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <span id="path--application--appname--healthcheck"></span>
+ <div id="operation--application--appname--healthcheck-get" class="swagger--panel-operation-get panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/application/{appname}/healthcheck</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>Perform a healthcheck on the running app appname.</p>
+
+ </section>
+
+ <section class="sw-request-params">
+ <table class="table">
+ <thead>
+ <tr>
+ <th class="sw-param-name"></th>
+ <th class="sw-param-description"></th>
+ <th class="sw-param-type"></th>
+ <th class="sw-param-data-type"></th>
+ <th class="sw-param-annotation"></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ appname
+ <td><p>Name of the application to get the healthcheck for.</p>
+ </td>
+ <td>path</td>
+ <td><span class="json-property-type">string</span> <span class="json-property-format">(test)</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </td>
+ <td>
+ <span class="json-property-required"></span>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </section>
+
+ <section class="sw-responses">
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>Successful response, healthcheck pass</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ <dt class="sw-response-404">
+ 404 Not Found
+
+ </dt>
+ <dd class="sw-response-404">
+ <div class="row">
+ <div class="col-md-12">
+ <p>no app with name &#39;appname&#39; registered with this broker, or the healthcheck has failed (though I would like to disambiguiate from the first case, CDAP returns a 404 for this).</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <span id="path--application--appname--metrics"></span>
+ <div id="operation--application--appname--metrics-get" class="swagger--panel-operation-get panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">GET</span> <strong>/application/{appname}/metrics</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>Get live (real-time) app specific metrics for the running app appname. Metrics are customized per each app by the component developer</p>
+
+ </section>
+
+ <section class="sw-request-params">
+ <table class="table">
+ <thead>
+ <tr>
+ <th class="sw-param-name"></th>
+ <th class="sw-param-description"></th>
+ <th class="sw-param-type"></th>
+ <th class="sw-param-data-type"></th>
+ <th class="sw-param-annotation"></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ appname
+ <td><p>Name of the application to get metrics for.</p>
+ </td>
+ <td>path</td>
+ <td><span class="json-property-type">string</span> <span class="json-property-format">(test)</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </td>
+ <td>
+ <span class="json-property-required"></span>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </section>
+
+ <section class="sw-responses">
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>Successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/MetricsObject">MetricsObject</a>
+ </div>
+ </div></div>
+
+ </div> </dd>
+ <dt class="sw-response-404">
+ 404 Not Found
+
+ </dt>
+ <dd class="sw-response-404">
+ <div class="row">
+ <div class="col-md-12">
+ <p>no app with name &#39;appname&#39; registered with this broker.</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <span id="path--application--appname--reconfigure"></span>
+ <div id="operation--application--appname--reconfigure-put" class="swagger--panel-operation-put panel">
+ <div class="panel-heading">
+ <div class="operation-summary"></div>
+ <h3 class="panel-title"><span class="operation-name">PUT</span> <strong>/application/{appname}/reconfigure</strong></h3>
+ </div>
+ <div class="panel-body">
+ <section class="sw-operation-description">
+ <p>Reconfigures the application.</p>
+
+ </section>
+
+ <section class="sw-request-body">
+
+ <div class="row">
+ <div class="col-md-6">
+ <p><p>required put body</p>
+ </p>
+ </div>
+ <div class="col-md-6 sw-request-model">
+ <div class="panel panel-definition">
+ <div class="panel-body">
+ <a class="json-schema-ref" href="#/definitions/reconfigput">reconfigput</a>
+ </div>
+ </div></div>
+ </div>
+ </section>
+ <section class="sw-request-params">
+ <table class="table">
+ <thead>
+ <tr>
+ <th class="sw-param-name"></th>
+ <th class="sw-param-description"></th>
+ <th class="sw-param-type"></th>
+ <th class="sw-param-data-type"></th>
+ <th class="sw-param-annotation"></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ appname
+ <td><p>Name of the application.</p>
+ </td>
+ <td>path</td>
+ <td><span class="json-property-type">string</span> <span class="json-property-format">(text)</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </td>
+ <td>
+ <span class="json-property-required"></span>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </section>
+
+ <section class="sw-responses">
+
+ <dl>
+ <dt class="sw-response-200">
+ 200 OK
+
+ </dt>
+ <dd class="sw-response-200">
+ <div class="row">
+ <div class="col-md-12">
+ <p>Successful response</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ <dt class="sw-response-400">
+ 400 Bad Request
+
+ </dt>
+ <dd class="sw-response-400">
+ <div class="row">
+ <div class="col-md-12">
+ <p>Bad request. Can happen with 1) {appname} is not registered with the broker, 2) the required PUT body is wrong, or 3) the smart interface was chosen and none of the config keys match anything in app_config or app_preferences</p>
+
+ </div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-6 sw-response-model">
+ </div>
+
+ </div> </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+
+
+
+ <h2>Schema definitions</h2>
+
+
+ <div id="definition-Application" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/Application"></a>Application:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="appname">
+ <span class="json-property-name">appname:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>application name</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="healthcheckurl">
+ <span class="json-property-name">healthcheckurl:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>fully qualified url to perform healthcheck</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="metricsurl">
+ <span class="json-property-name">metricsurl:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>fully qualified url to get metrics from</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="url">
+ <span class="json-property-name">url:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>fully qualified url of the resource</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="connectionurl">
+ <span class="json-property-name">connectionurl:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>input URL that you can POST data into (URL of the CDAP stream)</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="serviceendpoints">
+ <span class="json-property-name">serviceendpoints:</span>
+ <span class="json-property-type">object[]</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>a list of HTTP services exposed by this CDAP application</p>
+
+ <div class="json-inner-schema">
+
+ <section class="json-schema-array-items">
+ <span class="json-property-type"> <a class="json-schema-ref" href="#/definitions/service_method">service_method</a>
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </section> </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-appname" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/appname"></a>appname:
+ <span class="json-property-type"><span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>an application name</p>
+
+ </section>
+
+ </div>
+ </div>
+ <div id="definition-appput" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/appput"></a>appput:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="cdap_application_type">
+ <span class="json-property-name">cdap_application_type:</span>
+ <span class="json-property-type">string</span> <span class="json-property-enum" title="Possible values">, x &isin; {
+ <span class="json-property-enum-item">program-flowlet</span>
+
+ }
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>denotes whether this is a program-flowlet style application or a hydrator pipeline. For program-flowlet style apps, this value must be &quot;program-flowlet&quot;</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="streamname">
+ <span class="json-property-name">streamname:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>name of the CDAP stream to ingest data into this app. Should come from the developer and Tosca model.</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="namespace">
+ <span class="json-property-name">namespace:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the cdap namespace this is deployed into</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="jar_url">
+ <span class="json-property-name">jar_url:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the URL that the JAR you&#39;re deploying resides</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="artifact_name">
+ <span class="json-property-name">artifact_name:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the name of the CDAP artifact to be added</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="artifact_ver">
+ <span class="json-property-name">artifact_ver:</span>
+ <span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the version of the artifact. Must be in X.Y.Z form</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="app_config">
+ <span class="json-property-name">app_config:</span>
+ <span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the application config JSON</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="app_preferences">
+ <span class="json-property-name">app_preferences:</span>
+ <span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the application preferences JSON</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="programs">
+ <span class="json-property-name">programs:</span>
+ <span class="json-property-type">object[]</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+
+ <div class="json-inner-schema">
+
+ <section class="json-schema-array-items">
+ <span class="json-property-type"> <a class="json-schema-ref" href="#/definitions/programs">programs</a>
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </section> </div>
+ </dd>
+ <dt data-property-name="program_preferences">
+ <span class="json-property-name">program_preferences:</span>
+ <span class="json-property-type">object[]</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+
+ <div class="json-inner-schema">
+
+ <section class="json-schema-array-items">
+ <span class="json-property-type"> <a class="json-schema-ref" href="#/definitions/programpref">programpref</a>
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </section> </div>
+ </dd>
+ <dt data-property-name="services">
+ <span class="json-property-name">services:</span>
+ <span class="json-property-type">object[]</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+
+ <div class="json-inner-schema">
+
+ <section class="json-schema-array-items">
+ <span class="json-property-type"> <a class="json-schema-ref" href="#/definitions/service_endpoint">service_endpoint</a>
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </section> </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-hydratorappput" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/hydratorappput"></a>hydratorappput:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="cdap_application_type">
+ <span class="json-property-name">cdap_application_type:</span>
+ <span class="json-property-type">string</span> <span class="json-property-enum" title="Possible values">, x &isin; {
+ <span class="json-property-enum-item">hydrator-pipeline</span>
+
+ }
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>denotes whether this is a program-flowlet style application or a hydrator pipeline. For hydrator, this value must be &quot;hydrator-pipeline&quot;</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="namespace">
+ <span class="json-property-name">namespace:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>the cdap namespace this is deployed into</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="pipeline_config_json_url">
+ <span class="json-property-name">pipeline_config_json_url:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>the URL of the config.json for this pipeline</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="streamname">
+ <span class="json-property-name">streamname:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>name of the CDAP stream to ingest data into this app. Should come from the developer and Tosca model.</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="dependencies">
+ <span class="json-property-name">dependencies:</span>
+ <span class="json-property-type">object[]</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>represents a list of dependencies to be loaded for this pipeline. Not required.</p>
+
+ <div class="json-inner-schema">
+
+ <section class="json-schema-array-items">
+ <span class="json-property-type"> <a class="json-schema-ref" href="#/definitions/hydratordep">hydratordep</a>
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </section> </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-hydratordep" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/hydratordep"></a>hydratordep:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>represents a hydrator pipeline dependency. An equivelent to the following CURLs are formed with the below four params shown in CAPS &quot;curl -v -w&quot;\n&quot; -X POST <a href="http://cdapurl:11015/v3/namespaces/setelsewhere/artifacts/ARTIFACT_NAME">http://cdapurl:11015/v3/namespaces/setelsewhere/artifacts/ARTIFACT_NAME</a> -H &quot;Artifact-Extends:ARTIFACT_EXTENDS_HEADER&quot; -H “Artifact-Version:ARTIFACT_VERSION_HEADER” --data-binary @(DOWNLOADED FROM ARTIFACT_URL)&quot;,&quot;curl -v -w&quot;\n&quot; -X PUT <a href="http://cdapurl:11015/v3/namespaces/setelsewhere/artifacts/ARTIFACT_NAME/versions/ARTIFACT_VERSION_HEADER/properties">http://cdapurl:11015/v3/namespaces/setelsewhere/artifacts/ARTIFACT_NAME/versions/ARTIFACT_VERSION_HEADER/properties</a> -d (DOWNLOADED FROM UI_PROPERTIES_URL)&quot;</p>
+
+ </section>
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="artifact_extends_header">
+ <span class="json-property-name">artifact_extends_header:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>the value of the header that gets passed in for artifact-extends, e.g., &quot;Artifact-Extends:system:cdap-data-pipeline[4.0.1,5.0.0)&quot;</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="artifact_name">
+ <span class="json-property-name">artifact_name:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>the name of the artifact</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="artifact_version_header">
+ <span class="json-property-name">artifact_version_header:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>the value of the header that gets passed in for artifact-version, e.g., &quot;Artifact-Version:1.0.0-SNAPSHOT&quot;</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="artifact_url">
+ <span class="json-property-name">artifact_url:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>the URL of the artifact JAR</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="ui_properties_url">
+ <span class="json-property-name">ui_properties_url:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the URL of the properties.json if the custom artifact has UI properties. This is optional.</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-info" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/info"></a>info:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>some broker information</p>
+
+ </section>
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="managed-cdap-url">
+ <span class="json-property-name">managed cdap url:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the url of the CDAP cluster API this broker is managing</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="number-of-applications-registered">
+ <span class="json-property-name">number of applications registered:</span>
+ <span class="json-property-type">integer</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="uptime--s-">
+ <span class="json-property-name">uptime (s):</span>
+ <span class="json-property-type">integer</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="cdap-GUI-port">
+ <span class="json-property-name">cdap GUI port:</span>
+ <span class="json-property-type">integer</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>The GUI port of the CDAP cluster this broker is managing. Mostly to help users of this API check their application in cdap. Note, will return UNKNOWN_CDAP_VERSION if it cannot be determined.</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="cdap-cluster-version">
+ <span class="json-property-name">cdap cluster version:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the version of the CDAP cluster this broker is managing. Note, will return UKNOWN_CDAP_VERSION if it cannot be determined.</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="broker-API-version">
+ <span class="json-property-name">broker API version:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the API version of this running broker</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-MetricsObject" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/MetricsObject"></a>MetricsObject:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>key,value object where the key is &#39;appmetrics&#39; and the value is an app dependent json and specified by the component developer</p>
+
+ </section>
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="appmetrics">
+ <span class="json-property-name">appmetrics:</span>
+ <span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-multideleteput" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/multideleteput"></a>multideleteput:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="appnames">
+ <span class="json-property-name">appnames:</span>
+ <span class="json-property-type">object[]</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+
+ <div class="json-inner-schema">
+
+ <section class="json-schema-array-items">
+ <span class="json-property-type"> <a class="json-schema-ref" href="#/definitions/appname">appname</a>
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </section> </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-programpref" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/programpref"></a>programpref:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>the list of programs in this CDAP app</p>
+
+ </section>
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="program_type">
+ <span class="json-property-name">program_type:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>must be one of flows, mapreduce, schedules, spark, workflows, workers, or services</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="program_id">
+ <span class="json-property-name">program_id:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the name of the program</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="program_pref">
+ <span class="json-property-name">program_pref:</span>
+ <span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the preference JSON to set for this program</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-programs" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/programs"></a>programs:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>the list of programs in this CDAP app</p>
+
+ </section>
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="program_type">
+ <span class="json-property-name">program_type:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>must be one of flows, mapreduce, schedules, spark, workflows, workers, or services</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="program_id">
+ <span class="json-property-name">program_id:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the name of the program</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-reconfigput" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/reconfigput"></a>reconfigput:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="reconfiguration_type">
+ <span class="json-property-name">reconfiguration_type:</span>
+ <span class="json-property-type">string</span> <span class="json-property-enum" title="Possible values">, x &isin; {
+ <span class="json-property-enum-item">program-flowlet-app-config</span>
+ ,
+ <span class="json-property-enum-item">program-flowlet-app-preferences</span>
+ ,
+ <span class="json-property-enum-item">program-flowlet-smart</span>
+
+ }
+ </span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>the type of reconfiguration</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="config">
+ <span class="json-property-name">config:</span>
+ <span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ <span class="json-property-required"></span>
+ </dt>
+ <dd>
+ <p>the config JSON</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-returncode" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/returncode"></a>returncode:
+ <span class="json-property-type"><span class="json-property-type">integer</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>an httpreturncode</p>
+
+ </section>
+
+ </div>
+ </div>
+ <div id="definition-service_endpoint" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/service_endpoint"></a>service_endpoint:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>descirbes a service endpoint, including the service name, the method name, and the method type (GET, PUT, etc, most of the time will be GET)</p>
+
+ </section>
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="service_name">
+ <span class="json-property-name">service_name:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the name of the service</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="service_endpoint">
+ <span class="json-property-name">service_endpoint:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the name of the endpoint on the service</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="endpoint_method">
+ <span class="json-property-name">endpoint_method:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>GET, POST, PUT, etc</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+ <div id="definition-service_method" class="panel panel-definition">
+ <div class="panel-heading">
+ <h3 class="panel-title"><a name="/definitions/service_method"></a>service_method:
+ <span class="json-property-type"><span class="json-property-type">object</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </span>
+ </h3>
+ </div>
+ <div class="panel-body">
+ <section class="json-schema-description">
+ <p>a URL and HTTP method exposed via a CDAP service</p>
+
+ </section>
+
+ <section class="json-schema-properties">
+ <dl>
+ <dt data-property-name="url">
+ <span class="json-property-name">url:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>the fully qualified URL in CDAP for this service</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ <dt data-property-name="method">
+ <span class="json-property-name">method:</span>
+ <span class="json-property-type">string</span>
+ <span class="json-property-range" title="Value limits"></span>
+
+ </dt>
+ <dd>
+ <p>HTTP method you can perform on the URL, e.g., GET, PUT, etc</p>
+
+ <div class="json-inner-schema">
+
+ </div>
+ </dd>
+ </dl>
+ </section>
+ </div>
+ </div>
+</div>
+</body>
+</html>
diff --git a/swagger/swagger.json b/swagger/swagger.json
new file mode 100644
index 0000000..4490a99
--- /dev/null
+++ b/swagger/swagger.json
@@ -0,0 +1,560 @@
+{
+ "swagger": "2.0",
+ "info": {
+ "version": "4.0.3",
+ "title": "CDAP Broker API"
+ },
+ "paths": {
+ "/": {
+ "get": {
+ "description": "shows some information about this service",
+ "responses": {
+ "200": {
+ "description": "successful response",
+ "schema": {
+ "$ref": "#/definitions/info"
+ }
+ }
+ }
+ }
+ },
+ "/application": {
+ "get": {
+ "description": "get all applications registered with this broker",
+ "responses": {
+ "200": {
+ "description": "successful response",
+ "schema": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/appname"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/application/delete": {
+ "post": {
+ "description": "endpoint to delete multiple applications at once. Returns an array of status codes, where statuscode[i] = response returned from DELETE(application/i)",
+ "parameters": [
+ {
+ "name": "postbody",
+ "in": "body",
+ "description": "required post body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/multideleteput"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "successful response",
+ "schema": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/returncode"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/application/{appname}": {
+ "parameters": [
+ {
+ "name": "appname",
+ "in": "path",
+ "description": "Name of the application.",
+ "required": true,
+ "type": "string",
+ "format": "text"
+ }
+ ],
+ "get": {
+ "description": "Returns the representation of the application resource, including the links for healthcheck and metrics.",
+ "responses": {
+ "200": {
+ "description": "Successful response",
+ "schema": {
+ "$ref": "#/definitions/Application"
+ }
+ },
+ "404": {
+ "description": "no app with name 'appname' registered with this broker."
+ }
+ }
+ },
+ "put": {
+ "description": "Register an app for service and configuration discovery. This will light up a metrics and health endpoint for this app. `appname` is assumed to also be the key in consul.",
+ "consumes": [
+ "application/json"
+ ],
+ "produces": [
+ "application/json"
+ ],
+ "parameters": [
+ {
+ "name": "putbody",
+ "in": "body",
+ "description": "required put body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/appput"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response",
+ "schema": {
+ "$ref": "#/definitions/Application"
+ }
+ },
+ "400": {
+ "description": "put was performed but the appname was already registered with the broker, or Invalid PUT body"
+ }
+ }
+ },
+ "delete": {
+ "description": "Remove an app for service and configuration discovery. This will remove the metrics and health endpoints for this app.",
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ },
+ "404": {
+ "description": "no app with name 'appname' registered with this broker."
+ }
+ }
+ }
+ },
+ "/application*/{appname}": {
+ "parameters": [
+ {
+ "name": "appname",
+ "in": "path",
+ "description": "Name of the application.",
+ "required": true,
+ "type": "string",
+ "format": "text"
+ }
+ ],
+ "put": {
+ "description": "(This is a hacky way of supporting \"oneOf\" because Swagger does not support oneOf https://github.com/OAI/OpenAPI-Specification/issues/333. This is the same endpoint as PUT /application/appname, except the PUT body is different.)\n\nRegister a hydrator app for service and configuration discovery. This will light up a metrics and health endpoint for this app. `appname` is assumed to also be the key in consul.",
+ "consumes": [
+ "application/json"
+ ],
+ "produces": [
+ "application/json"
+ ],
+ "parameters": [
+ {
+ "name": "putbody",
+ "in": "body",
+ "description": "required put body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/hydratorappput"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response",
+ "schema": {
+ "$ref": "#/definitions/Application"
+ }
+ },
+ "400": {
+ "description": "put was performed but the appname was already registered with the broker, or Invalid PUT body"
+ }
+ }
+ }
+ },
+ "/application/{appname}/metrics": {
+ "get": {
+ "description": "Get live (real-time) app specific metrics for the running app appname. Metrics are customized per each app by the component developer",
+ "parameters": [
+ {
+ "name": "appname",
+ "in": "path",
+ "description": "Name of the application to get metrics for.",
+ "required": true,
+ "type": "string",
+ "format": "test"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response",
+ "schema": {
+ "$ref": "#/definitions/MetricsObject"
+ }
+ },
+ "404": {
+ "description": "no app with name 'appname' registered with this broker."
+ }
+ }
+ }
+ },
+ "/application/{appname}/healthcheck": {
+ "get": {
+ "description": "Perform a healthcheck on the running app appname.",
+ "parameters": [
+ {
+ "name": "appname",
+ "in": "path",
+ "description": "Name of the application to get the healthcheck for.",
+ "required": true,
+ "type": "string",
+ "format": "test"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response, healthcheck pass"
+ },
+ "404": {
+ "description": "no app with name 'appname' registered with this broker, or the healthcheck has failed (though I would like to disambiguiate from the first case, CDAP returns a 404 for this)."
+ }
+ }
+ }
+ },
+ "/application/{appname}/reconfigure": {
+ "parameters": [
+ {
+ "name": "appname",
+ "in": "path",
+ "description": "Name of the application.",
+ "required": true,
+ "type": "string",
+ "format": "text"
+ }
+ ],
+ "put": {
+ "description": "Reconfigures the application.",
+ "parameters": [
+ {
+ "name": "putbody",
+ "in": "body",
+ "description": "required put body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/reconfigput"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response"
+ },
+ "400": {
+ "description": "Bad request. Can happen with 1) {appname} is not registered with the broker, 2) the required PUT body is wrong, or 3) the smart interface was chosen and none of the config keys match anything in app_config or app_preferences"
+ }
+ }
+ }
+ }
+ },
+ "definitions": {
+ "MetricsObject": {
+ "type": "object",
+ "description": "key,value object where the key is 'appmetrics' and the value is an app dependent json and specified by the component developer",
+ "properties": {
+ "appmetrics": {
+ "type": "object"
+ }
+ }
+ },
+ "Application": {
+ "type": "object",
+ "properties": {
+ "appname": {
+ "description": "application name",
+ "type": "string"
+ },
+ "healthcheckurl": {
+ "description": "fully qualified url to perform healthcheck",
+ "type": "string"
+ },
+ "metricsurl": {
+ "description": "fully qualified url to get metrics from",
+ "type": "string"
+ },
+ "url": {
+ "description": "fully qualified url of the resource",
+ "type": "string"
+ },
+ "connectionurl": {
+ "description": "input URL that you can POST data into (URL of the CDAP stream)",
+ "type": "string"
+ },
+ "serviceendpoints": {
+ "description": "a list of HTTP services exposed by this CDAP application",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/service_method"
+ }
+ }
+ }
+ },
+ "reconfigput": {
+ "type": "object",
+ "properties": {
+ "reconfiguration_type": {
+ "description": "the type of reconfiguration",
+ "type": "string",
+ "enum": [
+ "program-flowlet-app-config",
+ "program-flowlet-app-preferences",
+ "program-flowlet-smart"
+ ]
+ },
+ "config": {
+ "description": "the config JSON",
+ "type": "object"
+ }
+ },
+ "required": [
+ "reconfiguration_type",
+ "config"
+ ]
+ },
+ "multideleteput": {
+ "type": "object",
+ "properties": {
+ "appnames": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/appname"
+ }
+ }
+ }
+ },
+ "appname": {
+ "description": "an application name",
+ "type": "string"
+ },
+ "hydratorappput": {
+ "type": "object",
+ "properties": {
+ "cdap_application_type": {
+ "description": "denotes whether this is a program-flowlet style application or a hydrator pipeline. For hydrator, this value must be \"hydrator-pipeline\"",
+ "type": "string",
+ "enum": [
+ "hydrator-pipeline"
+ ]
+ },
+ "namespace": {
+ "description": "the cdap namespace this is deployed into",
+ "type": "string"
+ },
+ "pipeline_config_json_url": {
+ "description": "the URL of the config.json for this pipeline",
+ "type": "string"
+ },
+ "streamname": {
+ "description": "name of the CDAP stream to ingest data into this app. Should come from the developer and Tosca model.",
+ "type": "string"
+ },
+ "dependencies": {
+ "description": "represents a list of dependencies to be loaded for this pipeline. Not required.",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/hydratordep"
+ }
+ }
+ },
+ "required": [
+ "cdap_application_type",
+ "namespace",
+ "pipeline_config_json_url",
+ "streamname"
+ ]
+ },
+ "appput": {
+ "type": "object",
+ "properties": {
+ "cdap_application_type": {
+ "description": "denotes whether this is a program-flowlet style application or a hydrator pipeline. For program-flowlet style apps, this value must be \"program-flowlet\"",
+ "type": "string",
+ "enum": [
+ "program-flowlet"
+ ]
+ },
+ "streamname": {
+ "description": "name of the CDAP stream to ingest data into this app. Should come from the developer and Tosca model.",
+ "type": "string"
+ },
+ "namespace": {
+ "description": "the cdap namespace this is deployed into",
+ "type": "string"
+ },
+ "jar_url": {
+ "description": "the URL that the JAR you're deploying resides",
+ "type": "string"
+ },
+ "artifact_name": {
+ "description": "the name of the CDAP artifact to be added",
+ "type": "string"
+ },
+ "artifact_ver": {
+ "description": "the version of the artifact. Must be in X.Y.Z form"
+ },
+ "app_config": {
+ "description": "the application config JSON",
+ "type": "object"
+ },
+ "app_preferences": {
+ "description": "the application preferences JSON",
+ "type": "object"
+ },
+ "programs": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/programs"
+ }
+ },
+ "program_preferences": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/programpref"
+ }
+ },
+ "services": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/service_endpoint"
+ }
+ }
+ }
+ },
+ "service_endpoint": {
+ "description": "descirbes a service endpoint, including the service name, the method name, and the method type (GET, PUT, etc, most of the time will be GET)",
+ "type": "object",
+ "properties": {
+ "service_name": {
+ "type": "string",
+ "description": "the name of the service"
+ },
+ "service_endpoint": {
+ "type": "string",
+ "description": "the name of the endpoint on the service"
+ },
+ "endpoint_method": {
+ "type": "string",
+ "description": "GET, POST, PUT, etc"
+ }
+ }
+ },
+ "service_method": {
+ "description": "a URL and HTTP method exposed via a CDAP service",
+ "type": "object",
+ "properties": {
+ "url": {
+ "type": "string",
+ "description": "the fully qualified URL in CDAP for this service"
+ },
+ "method": {
+ "type": "string",
+ "description": "HTTP method you can perform on the URL, e.g., GET, PUT, etc"
+ }
+ }
+ },
+ "programs": {
+ "description": "the list of programs in this CDAP app",
+ "type": "object",
+ "properties": {
+ "program_type": {
+ "description": "must be one of flows, mapreduce, schedules, spark, workflows, workers, or services",
+ "type": "string"
+ },
+ "program_id": {
+ "description": "the name of the program",
+ "type": "string"
+ }
+ }
+ },
+ "returncode": {
+ "description": "an httpreturncode",
+ "type": "integer"
+ },
+ "hydratordep": {
+ "description": "represents a hydrator pipeline dependency. An equivelent to the following CURLs are formed with the below four params shown in CAPS \"curl -v -w\"\\n\" -X POST http://cdapurl:11015/v3/namespaces/setelsewhere/artifacts/ARTIFACT_NAME -H \"Artifact-Extends:ARTIFACT_EXTENDS_HEADER\" -H “Artifact-Version:ARTIFACT_VERSION_HEADER” --data-binary @(DOWNLOADED FROM ARTIFACT_URL)\",\"curl -v -w\"\\n\" -X PUT http://cdapurl:11015/v3/namespaces/setelsewhere/artifacts/ARTIFACT_NAME/versions/ARTIFACT_VERSION_HEADER/properties -d (DOWNLOADED FROM UI_PROPERTIES_URL)\"",
+ "properties": {
+ "artifact_extends_header": {
+ "description": "the value of the header that gets passed in for artifact-extends, e.g., \"Artifact-Extends:system:cdap-data-pipeline[4.0.1,5.0.0)\"",
+ "type": "string"
+ },
+ "artifact_name": {
+ "description": "the name of the artifact",
+ "type": "string"
+ },
+ "artifact_version_header": {
+ "description": "the value of the header that gets passed in for artifact-version, e.g., \"Artifact-Version:1.0.0-SNAPSHOT\"",
+ "type": "string"
+ },
+ "artifact_url": {
+ "description": "the URL of the artifact JAR",
+ "type": "string"
+ },
+ "ui_properties_url": {
+ "description": "the URL of the properties.json if the custom artifact has UI properties. This is optional.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "artifact_extends_header",
+ "artifact_name",
+ "artifact_version_header",
+ "artifact_url"
+ ]
+ },
+ "programpref": {
+ "description": "the list of programs in this CDAP app",
+ "type": "object",
+ "properties": {
+ "program_type": {
+ "description": "must be one of flows, mapreduce, schedules, spark, workflows, workers, or services",
+ "type": "string"
+ },
+ "program_id": {
+ "description": "the name of the program",
+ "type": "string"
+ },
+ "program_pref": {
+ "description": "the preference JSON to set for this program",
+ "type": "object"
+ }
+ }
+ },
+ "info": {
+ "description": "some broker information",
+ "type": "object",
+ "properties": {
+ "managed cdap url": {
+ "description": "the url of the CDAP cluster API this broker is managing",
+ "type": "string"
+ },
+ "number of applications registered": {
+ "type": "integer"
+ },
+ "uptime (s)": {
+ "type": "integer"
+ },
+ "cdap GUI port": {
+ "type": "integer",
+ "description": "The GUI port of the CDAP cluster this broker is managing. Mostly to help users of this API check their application in cdap. Note, will return UNKNOWN_CDAP_VERSION if it cannot be determined."
+ },
+ "cdap cluster version": {
+ "type": "string",
+ "description": "the version of the CDAP cluster this broker is managing. Note, will return UKNOWN_CDAP_VERSION if it cannot be determined."
+ },
+ "broker API version": {
+ "type": "string",
+ "description": "the API version of this running broker"
+ }
+ }
+ }
+ }
+}
diff --git a/swagger/swagger.yaml b/swagger/swagger.yaml
new file mode 100644
index 0000000..506908f
--- /dev/null
+++ b/swagger/swagger.yaml
@@ -0,0 +1,418 @@
+# Example YAML to get you started quickly.
+# Be aware that YAML has indentation based scoping.
+# Code completion support is available so start typing for available options.
+swagger: '2.0'
+
+# This is your document metadata
+info:
+ version: "4.0.3"
+ title: CDAP Broker API
+
+paths:
+ /:
+ get:
+ description: shows some information about this service
+ responses:
+ 200:
+ description: successful response
+ schema:
+ $ref: '#/definitions/info'
+
+ /application:
+ get:
+ description: get all applications registered with this broker
+ responses:
+ 200:
+ description: successful response
+ schema:
+ type: array
+ items:
+ $ref: '#/definitions/appname'
+
+ /application/delete:
+ post:
+ description: endpoint to delete multiple applications at once. Returns an array of status codes, where statuscode[i] = response returned from DELETE(application/i)
+ parameters:
+ - name: postbody
+ in: body
+ description: required post body
+ required: true
+ schema:
+ $ref: '#/definitions/multideleteput'
+ responses:
+ 200:
+ description: successful response
+ schema:
+ type: array
+ items:
+ $ref: '#/definitions/returncode'
+
+ /application/{appname}:
+ parameters:
+ - name: appname
+ in: path
+ description: Name of the application.
+ required: true
+ type: string
+ format: text
+
+ get:
+ description: Returns the representation of the application resource, including the links for healthcheck and metrics.
+ responses:
+ 200:
+ description: Successful response
+ schema:
+ $ref: '#/definitions/Application'
+ 404:
+ description: no app with name 'appname' registered with this broker.
+
+ put:
+ description: Register an app for service and configuration discovery. This will light up a metrics and health endpoint for this app. `appname` is assumed to also be the key in consul.
+ consumes:
+ - application/json
+ produces:
+ - application/json
+ parameters:
+ - name: putbody
+ in: body
+ description: required put body
+ required: true
+ schema:
+ $ref: '#/definitions/appput'
+
+ responses:
+ 200:
+ description: Successful response
+ schema:
+ $ref: '#/definitions/Application'
+ 400:
+ description: put was performed but the appname was already registered with the broker, or Invalid PUT body
+
+
+ delete:
+ description: Remove an app for service and configuration discovery. This will remove the metrics and health endpoints for this app.
+ responses:
+ 200:
+ description: Successful response
+ 404:
+ description: no app with name 'appname' registered with this broker.
+
+ /application*/{appname}:
+ parameters:
+ - name: appname
+ in: path
+ description: Name of the application.
+ required: true
+ type: string
+ format: text
+
+ put:
+ description: (This is a hacky way of supporting "oneOf" because Swagger does not support oneOf https://github.com/OAI/OpenAPI-Specification/issues/333. This is the same endpoint as PUT /application/appname, except the PUT body is different.)
+
+
+ Register a hydrator app for service and configuration discovery. This will light up a metrics and health endpoint for this app. `appname` is assumed to also be the key in consul.
+ consumes:
+ - application/json
+ produces:
+ - application/json
+ parameters:
+ - name: putbody
+ in: body
+ description: required put body
+ required: true
+ schema:
+ $ref: '#/definitions/hydratorappput'
+
+ responses:
+ 200:
+ description: Successful response
+ schema:
+ $ref: '#/definitions/Application'
+ 400:
+ description: put was performed but the appname was already registered with the broker, or Invalid PUT body
+
+
+ /application/{appname}/metrics:
+ get:
+ # This is array of GET operation parameters:
+ description: Get live (real-time) app specific metrics for the running app appname. Metrics are customized per each app by the component developer
+ parameters:
+ # An example parameter that is in query and is required
+ - name: appname
+ in: path
+ description: Name of the application to get metrics for.
+ required: true
+ type: string
+ format: test
+
+ # Expected responses for this operation:
+ responses:
+ 200:
+ description: Successful response
+ schema:
+ $ref: '#/definitions/MetricsObject'
+ 404:
+ description: no app with name 'appname' registered with this broker.
+
+ /application/{appname}/healthcheck:
+ get:
+ # This is array of GET operation parameters:
+ description: Perform a healthcheck on the running app appname.
+ parameters:
+ # An example parameter that is in query and is required
+ - name: appname
+ in: path
+ description: Name of the application to get the healthcheck for.
+ required: true
+ type: string
+ format: test
+
+ # Expected responses for this operation:
+ responses:
+ # Response code
+ 200:
+ description: Successful response, healthcheck pass
+ 404:
+ description: no app with name 'appname' registered with this broker, or the healthcheck has failed (though I would like to disambiguiate from the first case, CDAP returns a 404 for this).
+
+ /application/{appname}/reconfigure:
+ parameters:
+ - name: appname
+ in: path
+ description: Name of the application.
+ required: true
+ type: string
+ format: text
+ put:
+ description: Reconfigures the application.
+ parameters:
+ - name: putbody
+ in: body
+ description: required put body
+ required: true
+ schema:
+ $ref: '#/definitions/reconfigput'
+ responses:
+ 200:
+ description: Successful response
+ 400:
+ description: Bad request. Can happen with 1) {appname} is not registered with the broker, 2) the required PUT body is wrong, or 3) the smart interface was chosen and none of the config keys match anything in app_config or app_preferences
+
+definitions:
+ MetricsObject:
+ type: object
+ description: key,value object where the key is 'appmetrics' and the value is an app dependent json and specified by the component developer
+ properties:
+ appmetrics:
+ type: object
+
+ Application:
+ type: object
+ properties:
+ appname:
+ description: application name
+ type: string
+ healthcheckurl:
+ description: fully qualified url to perform healthcheck
+ type: string
+ metricsurl:
+ description: fully qualified url to get metrics from
+ type: string
+ url:
+ description: fully qualified url of the resource
+ type: string
+ connectionurl:
+ description: input URL that you can POST data into (URL of the CDAP stream)
+ type: string
+ serviceendpoints:
+ description: a list of HTTP services exposed by this CDAP application
+ type: array
+ items:
+ $ref: '#/definitions/service_method'
+
+ reconfigput:
+ type: object
+ properties:
+ reconfiguration_type:
+ description: the type of reconfiguration
+ type: string
+ enum: ["program-flowlet-app-config", "program-flowlet-app-preferences", "program-flowlet-smart"]
+ config:
+ description: the config JSON
+ type: object
+ required: ["reconfiguration_type", "config"]
+
+ multideleteput:
+ type: object
+ properties:
+ appnames:
+ type: array
+ items:
+ $ref: '#/definitions/appname'
+
+ appname:
+ description: an application name
+ type: string
+
+ hydratorappput:
+ type: object
+ properties:
+ cdap_application_type:
+ description: denotes whether this is a program-flowlet style application or a hydrator pipeline. For hydrator, this value must be "hydrator-pipeline"
+ type: string
+ enum: ["hydrator-pipeline"]
+ namespace:
+ description: the cdap namespace this is deployed into
+ type: string
+ pipeline_config_json_url:
+ description: the URL of the config.json for this pipeline
+ type: string
+ streamname:
+ description: name of the CDAP stream to ingest data into this app. Should come from the developer and Tosca model.
+ type: string
+ dependencies:
+ description: represents a list of dependencies to be loaded for this pipeline. Not required.
+ type: array
+ items:
+ $ref: '#/definitions/hydratordep'
+ required: ["cdap_application_type", "namespace", "pipeline_config_json_url", "streamname"]
+
+ appput:
+ type: object
+ properties:
+ cdap_application_type:
+ description: denotes whether this is a program-flowlet style application or a hydrator pipeline. For program-flowlet style apps, this value must be "program-flowlet"
+ type: string
+ enum: ["program-flowlet"]
+ streamname:
+ description: name of the CDAP stream to ingest data into this app. Should come from the developer and Tosca model.
+ type: string
+ namespace:
+ description: the cdap namespace this is deployed into
+ type: string
+ jar_url:
+ description: the URL that the JAR you're deploying resides
+ type: string
+ artifact_name:
+ description: the name of the CDAP artifact to be added
+ type: string
+ artifact_ver:
+ description: the version of the artifact. Must be in X.Y.Z form
+ app_config:
+ description: the application config JSON
+ type: object
+ app_preferences:
+ description: the application preferences JSON
+ type: object
+ programs:
+ type: array
+ items:
+ $ref: '#/definitions/programs'
+ program_preferences:
+ type: array
+ items:
+ $ref: '#/definitions/programpref'
+ services:
+ type: array
+ items:
+ $ref: '#/definitions/service_endpoint'
+
+ service_endpoint:
+ description: descirbes a service endpoint, including the service name, the method name, and the method type (GET, PUT, etc, most of the time will be GET)
+ type: object
+ properties:
+ service_name:
+ type: string
+ description: the name of the service
+ service_endpoint:
+ type: string
+ description: the name of the endpoint on the service
+ endpoint_method:
+ type: string
+ description: GET, POST, PUT, etc
+
+ service_method:
+ description: a URL and HTTP method exposed via a CDAP service
+ type: object
+ properties:
+ url:
+ type: string
+ description: the fully qualified URL in CDAP for this service
+ method:
+ type: string
+ description: HTTP method you can perform on the URL, e.g., GET, PUT, etc
+
+ programs:
+ description: the list of programs in this CDAP app
+ type: object
+ properties:
+ program_type:
+ description: must be one of flows, mapreduce, schedules, spark, workflows, workers, or services
+ type: string
+ program_id:
+ description: the name of the program
+ type: string
+
+ returncode:
+ description: an httpreturncode
+ type: integer
+
+ hydratordep:
+ description: represents a hydrator pipeline dependency. An equivelent to the following CURLs are formed with the below four params shown in CAPS "curl -v -w"\n" -X POST http://cdapurl:11015/v3/namespaces/setelsewhere/artifacts/ARTIFACT_NAME -H "Artifact-Extends:ARTIFACT_EXTENDS_HEADER" -H “Artifact-Version:ARTIFACT_VERSION_HEADER” --data-binary @(DOWNLOADED FROM ARTIFACT_URL)","curl -v -w"\n" -X PUT http://cdapurl:11015/v3/namespaces/setelsewhere/artifacts/ARTIFACT_NAME/versions/ARTIFACT_VERSION_HEADER/properties -d (DOWNLOADED FROM UI_PROPERTIES_URL)"
+ properties:
+ artifact_extends_header:
+ description: the value of the header that gets passed in for artifact-extends, e.g., "Artifact-Extends:system:cdap-data-pipeline[4.0.1,5.0.0)"
+ type: string
+ artifact_name:
+ description: the name of the artifact
+ type: string
+ artifact_version_header :
+ description: the value of the header that gets passed in for artifact-version, e.g., "Artifact-Version:1.0.0-SNAPSHOT"
+ type: string
+ artifact_url:
+ description: the URL of the artifact JAR
+ type: string
+ ui_properties_url:
+ description: the URL of the properties.json if the custom artifact has UI properties. This is optional.
+ type: string
+ required: ["artifact_extends_header", "artifact_name", "artifact_version_header", "artifact_url"]
+
+ programpref:
+ description: the list of programs in this CDAP app
+ type: object
+ properties:
+ program_type:
+ description: must be one of flows, mapreduce, schedules, spark, workflows, workers, or services
+ type: string
+ program_id:
+ description: the name of the program
+ type: string
+ program_pref:
+ description: the preference JSON to set for this program
+ type: object
+
+ info:
+ description: some broker information
+ type: object
+ properties:
+ managed cdap url:
+ description: the url of the CDAP cluster API this broker is managing
+ type: string
+ number of applications registered:
+ type: integer
+ uptime (s):
+ type: integer
+ cdap GUI port:
+ type: integer
+ description: The GUI port of the CDAP cluster this broker is managing. Mostly to help users of this API check their application in cdap. Note, will return UNKNOWN_CDAP_VERSION if it cannot be determined.
+ cdap cluster version:
+ type: string
+ description: the version of the CDAP cluster this broker is managing. Note, will return UKNOWN_CDAP_VERSION if it cannot be determined.
+ broker API version:
+ type: string
+ description: the API version of this running broker
+
+
+
+
+
diff --git a/test/apitest/apitest_SUITE.erl b/test/apitest/apitest_SUITE.erl
new file mode 100644
index 0000000..971204c
--- /dev/null
+++ b/test/apitest/apitest_SUITE.erl
@@ -0,0 +1,826 @@
+% ============LICENSE_START=======================================================
+% org.onap.dcae
+% ================================================================================
+% Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+% ================================================================================
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+% ============LICENSE_END=========================================================
+%
+% ECOMP is a trademark and service mark of AT&T Intellectual Property.
+-module(apitest_SUITE).
+-include_lib("common_test/include/ct.hrl").
+-include("../../src/application.hrl").
+-export([all/0, groups/0, init_per_suite/1, end_per_suite/1]).
+-export([server_health_test/1, app_deploy/1, hydrator_deploy/1, app_teardown/1, app_test/1, app_reconfigure/1, test_failures/1, app_botch_flows/1, app_botch_delete/1, app_botch_consul_delete/1, invalid_reconfigure/1, delete_all/1,
+ hydrator_app_teardown/1, hydrator_test/1,
+ hydrator_wdeps_deploy/1,
+ hydrator_wdeps_test/1,
+ hydrator_wdeps_teardown/1
+ ]).
+
+%lazy shorthands (yay C style macros! miss these in python)
+-define(SC(L), util:concat(L)).
+-define(PLG(K, PL), proplists:get_value(K, PL)).
+-define(XER, "testing-XER").
+-define(D(X), erlang:display(X)).
+
+all() -> [
+ {group, progapi},
+ {group, hydratorapi},
+ {group, apibotchedflows},
+ {group, apibotcheddeleted},
+ {group, apibotchedconsuldeleted},
+ {group, invalidreconfig},
+ {group, apideleteall}
+ ].
+groups() -> [
+ {progapi, %prog-flow test
+ [],
+ [
+ server_health_test,
+ test_failures,
+ app_deploy,
+ app_test,
+ app_reconfigure,
+ app_test,
+ app_teardown
+ ]},
+ {hydratorapi, %hydrator test
+ [],
+ [
+ server_health_test,
+ test_failures,
+ hydrator_deploy,
+ hydrator_test,
+ hydrator_app_teardown,
+ hydrator_wdeps_deploy,
+ hydrator_wdeps_test,
+ hydrator_wdeps_teardown
+ ]},
+ {apibotchedflows, %deploy, manually stop flows, then try to delete
+ [],
+ [
+ server_health_test,
+ app_deploy,
+ app_botch_flows,
+ app_teardown
+ ]},
+ {apibotcheddeleted, %deploy, manually stop flows, delete it manually from cdap, then try to delete
+ [],
+ [
+ server_health_test,
+ app_deploy,
+ app_botch_delete,
+ app_teardown
+ ]},
+ {apibotchedconsuldeleted, %deploy, manually stop flows, delete it manually from cdap, then try to delete
+ [],
+ [
+ server_health_test,
+ app_deploy,
+ app_botch_consul_delete,
+ app_teardown
+ ]},
+ {invalidreconfig, %call reconfigure on an app that DNE
+ [],
+ [
+ server_health_test,
+ app_deploy,
+ invalid_reconfigure,
+ app_teardown
+ ]},
+ {apideleteall,
+ [],
+ [
+ server_health_test,
+ app_deploy,
+ delete_all
+ ]}
+ ].
+
+%HELPER FUNCTIONS
+setup_rels(Config, D) ->
+ %deploy/delete the testing keys into Consul. This would normally be done by the Cloudify plugin
+ %
+ %#NOTE: This is weird. The sequence of steps is:
+ % 1 Cloudify populates rels key
+ % 2 Cloudify sends broker the unbound config
+ % 3 Broker pushes unbound config to consul
+ % 4 Broker binds config
+ % 5 Broker pushes bound config to CDAP
+ % Between state 1 and 3 consul is in an inconsistent state where it has only the rels key but not the config key. Not so sure about this. They seem to be a pair. Maybe the rels key should be pushed to the source node to be dealt with.
+ % #Here, we are mocking step 1
+ URL = ?SC([?PLG(consul_url, Config), "/v1/kv/", ?PLG(appname, Config), ":rel"]),
+ case D of
+ setup -> {200,"true"} = httpabs:put(?XER, URL, "application/json", jiffy:encode([<<"666_fake_testing_service">>]));
+ teardown -> {200,"true"} = httpabs:delete(?XER, URL)
+ end,
+ httpabs:get(?XER, URL).
+
+setup_fake_testing_service(Config, D) ->
+ %register a fake testing service to test that the CDAP app recieved it's bound configuration properly
+ Name = <<"666_fake_testing_service">>,
+ SrvURL = ?SC([?PLG(consul_url, Config), "/v1/catalog/service/", Name]),
+ case D of
+ setup ->
+ URL = ?SC([?PLG(consul_url, Config), "/v1/agent/service/register"]),
+ Body = {[{<<"name">>, Name},
+ {<<"Address">>, <<"666.666.666.666">>},
+ {<<"Port">>, 13}
+ ]},
+ {200, []} = httpabs:put(?XER, URL, "application/json", jiffy:encode(Body)),
+ httpabs:get(?XER, SrvURL);
+ teardown ->
+ %total failure on Consul's part for this not to be a delete on the same endpoint
+ URL = ?SC([?PLG(consul_url, Config), "/v1/agent/service/deregister/", Name]),
+ {200, []} = httpabs:put(?XER, URL, "application/json", ""),
+ httpabs:get(?XER, SrvURL)
+ end.
+
+get_config_consul(C) ->
+ %get config from consul. returns the code too for tests testing for a 404
+ {RC, RB} = consul_interface:consul_get_configuration(?XER, ?PLG(appname, C), ?PLG(consul_url, C)),
+ case RC of
+ 200 -> {RC, util:ejson_to_map(RB)};
+ _ -> {RC, RB}
+ end.
+
+get_config_cdap(C) ->
+ {RC, RB} = cdap_interface:get_app_config(?XER, ?PLG(appname, C), ?PLG(namespace, C),?PLG(cdap_url, C)),
+ case RC of
+ 200 ->
+ %I think CDAP is DOUBLY encoding JSON!!
+ {RC, jiffy:decode(jiffy:decode(jiffy:encode(RB)), [return_maps])};
+ _ -> {RC, RB}
+ end.
+
+get_preferences_cdap(C) ->
+ {RC, RB} = cdap_interface:get_app_preferences(?XER, ?PLG(appname, C), ?PLG(namespace, C),?PLG(cdap_url, C)),
+ case RC of
+ 200 -> {RC, util:ejson_to_map(RB)};
+ _ -> {RC, RB}
+ end.
+
+get_preferences_consul(C) ->
+ %get preferences from consul. returns the code too for tests testing for a 404
+ {RC, RB} = consul_interface:consul_get_preferences(?XER, ?PLG(appname, C), ?PLG(consul_url, C)),
+ case RC of
+ 200 -> {RC, util:ejson_to_map(RB)};
+ _ -> {RC, RB}
+ end.
+
+valid_deploy_body(C) ->
+ {[
+ {<<"cdap_application_type">>, <<"program-flowlet">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"streamname">>, ?PLG(streamname, C)},
+ {<<"jar_url">>, ?PLG(jar_url, C)},
+ {<<"artifact_name">>, ?PLG(art_name, C)},
+ {<<"artifact_version">>, ?PLG(art_ver, C)},
+ {<<"app_config">>, ?PLG(init_config, C)},
+ {<<"app_preferences">>, ?PLG(init_preferences, C)},
+ {<<"services">>, [{[{<<"service_name">>, <<"Greeting">>},
+ {<<"service_endpoint">>, <<"greet">>},
+ {<<"endpoint_method">>, <<"GET">>}]}]},
+ {<<"programs">>, [
+ {[{<<"program_type">>, <<"flows">>},
+ {<<"program_id">>, <<"WhoFlow">>}]},
+ {[{<<"program_type">>, <<"services">>},
+ {<<"program_id">>, <<"Greeting">>}]}]},
+ {<<"program_preferences">>, [
+ {[{<<"program_type">>,<<"flows">>},
+ {<<"program_id">>, <<"WhoFlow">>},
+ {<<"program_pref">>, ?PLG(whoflowpref, C)}]}
+ ]}
+ ]}.
+
+%%%%%%%%%%%%%%%
+%TEST FUNCTIONS
+init_per_suite(_C) ->
+ %get platform ENVs
+ [MyName, ConsulURL, _, _] = util:get_platform_envs_and_config(),
+
+ BrokerUrl = case os:getenv("BROKER_TEST_TYPE") of
+ false -> %no env variable means start the broker on localhost
+ %start a local broker
+ {ok,[syntax_tools,compiler,goldrush,lager,jiffy,mnesia,ranch,cowlib,cowboy,leptus,uuid,iso8601,cdapbroker]} = application:ensure_all_started(cdapbroker),
+ "http://localhost:7777";
+ "DOCKER" ->
+ "http://localhost:7777";
+ "REMOTE" ->
+ %Using MyName, fetch from Consul the broker info
+ {MyIP, MyPort} = consul_interface:consul_get_service_ip_port(MyName, ConsulURL),
+ ?SC(["http://", MyIP, ":", integer_to_binary(MyPort)])
+ end,
+
+ %get NEXUS_ROOT for testing purposes.
+ Nexus = os:getenv("NEXUS_RAW_ROOT"),
+ true = (Nexus /= false), %blow if this wasn't set, we need it.
+
+ {200, RB} = httpabs:get(?XER, BrokerUrl),
+ CDAPUrl = maps:get(<<"managed cdap url">>, jiffy:decode(RB, [return_maps])),
+
+ %set properties that are shared between program-flowlet and hydrator
+ Namespace = <<"testns">>,
+ CDAPUrlNS = ?SC([CDAPUrl, "/v3/namespaces/", Namespace]),
+
+ %set up config for program-flowlet app
+ Appname = <<"hwtest">>,
+ Streamname = <<"who">>,
+
+ %setup config for hydrator pipeline
+ HydratorAppname = <<"hydratortest">>,
+ HydratorAppURL = ?SC([CDAPUrlNS, "/apps/", HydratorAppname]),
+ HydratorStreamname = <<"s1">>, %horrible name but not made by me
+
+ HydratorWDepsAppname = <<"hydratorwdepstest">>,
+ HydratorWDepsAppURL = ?SC([CDAPUrlNS, "/apps/", HydratorWDepsAppname]),
+ HydratorWDepsStreamname = <<"t1">>, %horrible name but not made by me
+
+ %Set up this test suites configuration
+ [{broker_url, BrokerUrl},
+ {cdap_url, CDAPUrl},
+ {cdap_ns_url, CDAPUrlNS},
+ {jar_url, ?SC([Nexus, "/jar_files/HelloWorld-3.4.3.jar"])},
+ {consul_url, ConsulURL},
+ {consul_app_url, ?SC([ConsulURL, "/v1/catalog/service/", Appname])},
+ {app_url, ?SC([CDAPUrlNS, "/apps/", Appname])},
+ {namespace, Namespace},
+ {appname, Appname},
+ {broker_app_url, ?SC([BrokerUrl, "/application/", Appname])},
+ {stream_url, ?SC([CDAPUrlNS, "/streams/", Streamname])},
+ {art_ver, <<"3.4.3">>},
+ {art_name, <<"HelloWorld">>},
+ {streamname, Streamname},
+ {init_config, {[
+ {<<"streams_produces">>, <<"\{\{fake_testing_service\}\}">>},
+ {<<"services_calls">>, <<"\{\{fake_testing_service\}\}">>},
+ {<<"donotresolveme">>, <<"donotabsolveme">>}
+ ]}},
+ {whoflowpref, {[{<<"progfoo">>, <<"progbar">>}]}},
+ {init_preferences, {[{<<"preffoo">>, <<"prefbar">>}]}},
+ {reconfig, {[{<<"foo">>, <<"bar">>}]}},
+
+ %hydrator test properties
+ {hydrator_appname, HydratorAppname},
+ {broker_hydrator_app_url, ?SC([BrokerUrl, "/application/", HydratorAppname])},
+ {hydrator_app_url, HydratorAppURL},
+ {hydrator_json_url, ?SC([Nexus, "/json_files/t1-4.1.2.json "])},
+ {hydrator_pipeline_status_url, ?SC([HydratorAppURL, "/schedules/dataPipelineSchedule/status"])},
+ {hydrator_stream_url, ?SC([CDAPUrlNS, "/streams/", HydratorStreamname])},
+ {hydrator_streamname, HydratorStreamname},
+ {consul_hydrator_app_url, ?SC([ConsulURL, "/v1/catalog/service/", HydratorAppname])},
+
+ %hydrator with deps test properties
+ {hydrator_wdeps_appname, HydratorWDepsAppname},
+ {hydrator_wdeps_artname, <<"demoTCA">>},
+ {hydrator_wdeps_artver, <<"1.0.0-SNAPSHOT">>},
+ {hydrator_wdeps_app_url, HydratorWDepsAppURL},
+ {broker_hydrator_wdeps_app_url, ?SC([BrokerUrl, "/application/", HydratorWDepsAppname])},
+ {hydrator_wdeps_streamname, HydratorWDepsStreamname},
+ {hydrator_wdeps_stream_url, ?SC([CDAPUrlNS, "/streams/", HydratorWDepsStreamname])},
+ {hydrator_wdeps_json_url, ?SC([Nexus, "/json_files/t1-4.1.2.json"])},
+ {hydrator_wdeps_properties_json_url, ?SC([Nexus, "/json_files/demoTCA-1.0.0-SNAPSHOT-properties.json"])},
+ {hydrator_wdeps_jar_url, ?SC([Nexus, "/json_files/demoTCA-1.0.0-SNAPSHOT.jar"])},
+ {hydrator_wdeps_test_data_url, ?SC([Nexus, "/txt_files/tcaDemoData100k.txt"])},
+ {consul_hydrator_wdeps_app_url, ?SC([ConsulURL, "/v1/catalog/service/", HydratorWDepsAppname])},
+ {hydrator_pipeline_wdeps_status_url, ?SC([HydratorWDepsAppURL, "/schedules/dataPipelineSchedule/status"])}
+ ]
+ .
+
+end_per_suite(_C) ->
+ _ = application:stop(cdapbroker).
+
+server_health_test(C) ->
+ {200, RB} = httpabs:get(?XER, ?PLG(broker_url,C)),
+ M = jiffy:decode(RB, [return_maps]),
+ true = maps:is_key(<<"managed cdap url">>, M),
+ true = maps:is_key(<<"number of applications registered">>, M),
+ true = maps:is_key(<<"uptime (s)">>, M),
+ true = maps:is_key(<<"cdap cluster version">>, M),
+ true = maps:is_key(<<"cdap GUI port">>, M),
+ true = maps:is_key(<<"broker API version">>, M)
+ .
+
+app_deploy(C) -> %C == Config
+ %Deploy the test application
+
+ %Deploy the rel key
+ {200, _} = setup_rels(C, setup),
+
+ %Register the fake testing service to test config binding. Make sure it's not empty
+ {200, F} = setup_fake_testing_service(C, setup),
+ true = F /= [],
+
+ ExpectedBoundConfg = maps:from_list([
+ {<<"services_calls">> , [<<"666.666.666.666:13">>]},
+ {<<"streams_produces">>, [<<"666.666.666.666:13">>]},
+ {<<"donotresolveme">> , <<"donotabsolveme">>}
+ ]),
+
+ %Maps can be used safely with the == operator but appears proplists cannot be
+ Expected = maps:from_list([
+ {<<"appname">>, ?PLG(appname, C)},
+ {<<"apptype">>, <<"program-flowlet">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"healthcheckurl">>, list_to_binary(?SC([?PLG(broker_app_url, C), "/healthcheck"]))},
+ {<<"metricsurl">>, list_to_binary(?SC([?PLG(broker_app_url, C), "/metrics"]))},
+ {<<"url">>, list_to_binary(?PLG(broker_app_url, C))},
+ {<<"connectionurl">>, list_to_binary(?PLG(stream_url, C))},
+ {<<"serviceendpoints">>, [#{<<"url">> => list_to_binary(?SC([?PLG(app_url, C), "/services/Greeting/methods/greet"])),
+ <<"method">> => <<"GET">>}]},
+ {<<"unbound_config">>, #{<<"streams_produces">> => <<"\{\{fake_testing_service\}\}">>, <<"services_calls">> => <<"\{\{fake_testing_service\}\}">>, <<"donotresolveme">> => <<"donotabsolveme">>}},
+ {<<"bound_config">>, ExpectedBoundConfg}
+ ]),
+
+ %assert the current appliccation list does not contain our test app
+ {200,RB0} = httpabs:get(?XER, ?SC([?PLG(broker_url, C), "/application"])),
+ true = lists:all(fun(X) -> X /= ?PLG(appname, C) end, jiffy:decode(RB0)),
+
+ %deploy the app
+ Body = valid_deploy_body(C),
+ {200, RB} = httpabs:put(?XER, ?PLG(broker_app_url, C), "application/json", jiffy:encode(Body)),
+
+ %The CDAP APIs return the config as a JSON dumped to a string, so we need to get that back into a real JSON to have key-order-independent equality testing
+ Fix = fun(X) ->
+ RBMap = jiffy:decode(X, [return_maps]),
+ maps:update(<<"bound_config">>, jiffy:decode(maps:get(<<"bound_config">>, RBMap), [return_maps]), RBMap)
+ end,
+
+ %assert that the return and get matches what we put in
+ true = Fix(RB) == Expected,
+
+ %assert hitting the get application endpoint works
+ {200, RB2} = httpabs:get(?XER, ?PLG(broker_app_url, C)),
+ true = Fix(RB2) == Expected,
+
+ %assert the current application list now includes our new app
+ {200, RB3} = httpabs:get(?XER, ?SC([?PLG(broker_url, C), "/application"])),
+ true = lists:any(fun(X) -> X == ?PLG(appname, C) end, jiffy:decode(RB3)),
+
+ %make sure it is in CDAP
+ {200, _} = httpabs:get(?XER, ?PLG(app_url, C)),
+
+ %check metrics
+ {200, _} = httpabs:get(?XER, ?SC([?PLG(broker_app_url, C), "/metrics"])),
+
+ %check healthcheck
+ {200, _} = httpabs:get(?XER,?SC([?PLG(broker_app_url, C), "/healthcheck"])),
+
+ %make sure that the service is registered. TODO! Could get more fancy by manually checking a healthcheck
+ {200, RBHC} = httpabs:get(?XER,?PLG(consul_app_url, C)),
+ true = jiffy:decode(RBHC) /= [],
+
+ %check that the UNbound config is correct
+ true = {200, util:ejson_to_map(?PLG(init_config, C))} == get_config_consul(C),
+
+ %check that the preferences in Consul is correct
+ InitPrefMap = util:ejson_to_map(?PLG(init_preferences, C)),
+ true = {200, InitPrefMap} == get_preferences_consul(C),
+
+ %make sure CDAP has right preferences
+ true = {200, InitPrefMap} == get_preferences_cdap(C),
+
+ %make sure the config binding service and pulling config out of CDAP all match
+ %> get it strait from CBS
+ CBSUrl = util:resolve_cbs(?XER, ?PLG(consul_url, C)),
+ {200, RB4} = httpabs:get(?XER, ?SC([CBSUrl, "/service_component/", ?PLG(appname, C)])),
+ %get it from cdap
+ {200, CDAPConfig} = get_config_cdap(C),
+ %make sure everythng is as expected
+ true = ExpectedBoundConfg == jiffy:decode(RB4, [return_maps]),
+ true = ExpectedBoundConfg == CDAPConfig,
+
+ %try to put the same app again and assert you get a 400
+ {400,"State: Bad Request. Return Body: Put recieved on /application/:appname but appname is already registered. Call /application/:appname/reconfigure if trying to reconfigure or delete first"} =
+ httpabs:put(?XER, ?PLG(broker_app_url, C), "application/json", jiffy:encode(Body)).
+
+hydrator_deploy(C) ->
+ Body = {[
+ {<<"cdap_application_type">>, <<"hydrator-pipeline">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"streamname">>, ?PLG(hydrator_streamname, C)},
+ {<<"pipeline_config_json_url">>, ?PLG(hydrator_json_url, C)}
+ ]},
+ Expected = maps:from_list([
+ {<<"appname">>, ?PLG(hydrator_appname, C)},
+ {<<"apptype">>, <<"hydrator-pipeline">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"healthcheckurl">>, list_to_binary(?SC([?PLG(broker_hydrator_app_url, C), "/healthcheck"]))},
+ {<<"metricsurl">>, list_to_binary(?SC([?PLG(broker_hydrator_app_url, C), "/metrics"]))},
+ {<<"url">>, list_to_binary(?PLG(broker_hydrator_app_url, C))},
+ {<<"connectionurl">>, list_to_binary(?PLG(hydrator_stream_url, C))},
+ {<<"serviceendpoints">>, []}
+ ]),
+
+ %assert the current appliccation list does not contain our test app
+ {200,RB0} = httpabs:get(?XER, ?SC([?PLG(broker_url, C), "/application"])),
+ true = lists:all(fun(X) -> X /= ?PLG(hydrator_appname, C) end, jiffy:decode(RB0)),
+
+ %try the deploy
+ {200, RB1} = httpabs:put(?XER, ?PLG(broker_hydrator_app_url, C), "application/json", jiffy:encode(Body)),
+ true = jiffy:decode(RB1, [return_maps]) == Expected,
+
+ %make sure the Execution resume worked
+ {200, RB2} = httpabs:get(?XER, ?PLG(hydrator_pipeline_status_url, C)),
+ true = jiffy:decode(RB2) == {[{<<"status">>, <<"SCHEDULED">>}]},
+
+ %make sure it is in CDAP
+ {200, _} = httpabs:get(?XER, ?PLG(hydrator_app_url, C)),
+
+ %assert the current application list now includes our new app
+ {200, RB3} = httpabs:get(?XER, ?SC([?PLG(broker_url, C), "/application"])),
+ true = lists:any(fun(X) -> X == ?PLG(hydrator_appname, C) end, jiffy:decode(RB3)),
+
+ %check healthcheck
+ {200, _} = httpabs:get(?XER,?SC([?PLG(broker_hydrator_app_url, C), "/healthcheck"])),
+
+ %check metrics
+ {200, _} = httpabs:get(?XER,?SC([?PLG(broker_hydrator_app_url, C), "/metrics"])),
+
+ %make sure that the service is registered. TODO! Could get more fancy by manually checking a healthcheck
+ {200, RBHC} = httpabs:get(?XER,?PLG(consul_hydrator_app_url, C)),
+ true = jiffy:decode(RBHC) /= []
+ .
+
+hydrator_wdeps_deploy(C) ->
+ Body = {[
+ {<<"cdap_application_type">>, <<"hydrator-pipeline">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"streamname">>, ?PLG(hydrator_wdeps_streamname, C)},
+ {<<"pipeline_config_json_url">>, ?PLG(hydrator_wdeps_json_url, C)},
+ {<<"dependencies">>, [
+ {[
+ {<<"artifact_extends_header">>, <<"system:cdap-data-pipeline[4.1.0,5.0.0)">>},
+ {<<"artifact_name">>, ?PLG(hydrator_wdeps_artname, C)},
+ {<<"artifact_version_header">>, ?PLG(hydrator_wdeps_artver, C)},
+ {<<"artifact_url">>, ?PLG(hydrator_wdeps_jar_url, C)},
+ {<<"ui_properties_url">>, ?PLG(hydrator_wdeps_properties_json_url, C)}
+ ]}
+ ]}
+ ]},
+ Expected = maps:from_list([
+ {<<"appname">>, ?PLG(hydrator_wdeps_appname, C)},
+ {<<"apptype">>, <<"hydrator-pipeline">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"healthcheckurl">>, list_to_binary(?SC([?PLG(broker_hydrator_wdeps_app_url, C), "/healthcheck"]))},
+ {<<"metricsurl">>, list_to_binary(?SC([?PLG(broker_hydrator_wdeps_app_url, C), "/metrics"]))},
+ {<<"url">>, list_to_binary(?PLG(broker_hydrator_wdeps_app_url, C))},
+ {<<"connectionurl">>, list_to_binary(?PLG(hydrator_wdeps_stream_url, C))},
+ {<<"serviceendpoints">>, []}
+ ]),
+ %assert the current appliccation list does not contain our test app
+ {200,RB0} = httpabs:get(?XER,?SC([?PLG(broker_url, C), "/application"])),
+ true = lists:all(fun(X) -> X /= ?PLG(hydrator_wdeps_appname, C) end, jiffy:decode(RB0)),
+
+ %try the deploy
+ {200, RB1} = httpabs:put(?XER, ?PLG(broker_hydrator_wdeps_app_url, C), "application/json", jiffy:encode(Body)),
+ true = jiffy:decode(RB1, [return_maps]) == Expected,
+
+ %make sure properties are loaded, test artifact
+ {200, _} = httpabs:get(?XER,?SC([?PLG(cdap_ns_url, C), "/artifacts/", ?PLG(hydrator_wdeps_artname, C), "/versions/", ?PLG(hydrator_wdeps_artver, C), "/properties"])),
+
+ %make sure the Execution resume worked
+ {200, RB2} = httpabs:get(?XER,?PLG(hydrator_pipeline_wdeps_status_url, C)),
+ true = jiffy:decode(RB2) == {[{<<"status">>, <<"SCHEDULED">>}]},
+
+ %make sure it is in CDAP
+ {200, _} = httpabs:get(?XER,?PLG(hydrator_wdeps_app_url, C)),
+
+ %assert the current application list now includes our new app
+ {200, RB3} = httpabs:get(?XER,?SC([?PLG(broker_url, C), "/application"])),
+ true = lists:any(fun(X) -> X == ?PLG(hydrator_wdeps_appname, C) end, jiffy:decode(RB3)),
+
+ %check healthcheck
+ {200, _} = httpabs:get(?XER,?SC([?PLG(broker_hydrator_wdeps_app_url, C), "/healthcheck"])),
+
+ %check metrics
+ {200, _} = httpabs:get(?XER,?SC([?PLG(broker_hydrator_wdeps_app_url, C), "/metrics"])),
+
+ %make sure that the service is registered. TODO! Could get more fancy by manually checking a healthcheck
+ {200, RBHC} = httpabs:get(?XER,?PLG(consul_hydrator_wdeps_app_url, C)),
+ true = jiffy:decode(RBHC) /= []
+ .
+
+hydrator_test(C) ->
+ %test te app by injecting some data into the stream and getting it out
+ %Sleeping since HTTP services may still be booting up: see https://issues.cask.co/browse/CDAP-812
+ ok = timer:sleep(30000), %30s
+ %curl into stream
+ {200, _} = httpabs:post(?XER, ?PLG(hydrator_stream_url, C), "text/plain", "beer, vodka, gin"),
+ %query data out
+ PB = jiffy:encode({[{<<"query">>, <<"select v1, v2, v3 from dataset_pf1">>}]}),
+ {200, RB} = httpabs:post(?XER, ?SC([?PLG(cdap_ns_url, C), "/data/explore/queries"]), "text/plain", PB),
+ {[{<<"handle">>, Handle}]} = jiffy:decode(RB),
+ %results can take time, sleep again
+ ok = timer:sleep(30000),
+ Expected = {[
+ {<<"status">>,<<"FINISHED">>},
+ {<<"hasResults">>,true}
+ ]},
+ {200, RB2} = httpabs:get(?XER, ?SC([?PLG(cdap_url, C), "/v3/data/explore/queries", "/", Handle, "/status"])),
+ true = Expected == jiffy:decode(RB2),
+ {200, _} = httpabs:post(?XER, ?SC([?PLG(cdap_url, C), "/v3/data/explore/queries", "/", Handle, "/next"]), "text/plain", "")
+ .
+
+app_test(C) ->
+ %Sleeping since HTTP services may still be booting up: see https://issues.cask.co/browse/CDAP-812
+ ok = timer:sleep(30000), %30s
+ {200, _} = httpabs:post(?XER, ?PLG(stream_url, C), "text/plain", "'Prince of Darkness'"),
+ {200, "Hello 'Prince of Darkness'!"} = httpabs:get(?XER,?SC([?PLG(app_url, C), "/services/Greeting/methods/greet"])).
+
+app_reconfigure(C) ->
+ %Test app reconfiguration
+ %test new config right in Consul
+ true = {200, util:ejson_to_map(?PLG(init_config, C))} == get_config_consul(C),
+
+ %do the reconfig
+ ReconfigMap = util:ejson_to_map({[{<<"foo REDUX EDITION">>, <<"bar">>}, {<<"LEAVE ME ALONE">>, <<"CONFIG EDITION">>}]}),
+ %test httpabs bad body (not encoded as JSON)
+ {400,"ERROR: The request Body is malformed"} = httpabs:put(?XER, ?SC([?PLG(broker_app_url, C), "/reconfigure"]), "application/json", {[{<<"reconfiguration_type">>, <<"program-flowlet-app-config">>}, {<<"config">>, ReconfigMap}]}),
+ %do it properly
+ {200, _} = httpabs:put(?XER, ?SC([?PLG(broker_app_url, C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"reconfiguration_type">>, <<"program-flowlet-app-config">>},{<<"config">>, ReconfigMap}]})),
+ %test new config right in consul
+ true = {200, ReconfigMap} == get_config_consul(C),
+ %test new config right in cdap
+ true = {200, ReconfigMap} == get_config_cdap(C),
+
+ %Test preferences reconfiguration
+ %check that the preferences in Consul is correct
+ InitMap = util:ejson_to_map(?PLG(init_preferences, C)),
+ true = {200, InitMap} == get_preferences_consul(C),
+ %check that the preferences in CDAP are correct
+ true = {200, InitMap} == get_preferences_cdap(C),
+ %reconfigure the preferences
+ PreferencesReconfigMap = util:ejson_to_map({[{<<"preffoo REDUX EDITION">>, <<"prefbar REMIXXX">>}, {<<"LEAVE ME ALONE">>, <<"PREFERENCES EDITION">>}]}),
+ {200, _} = httpabs:put(?XER, ?SC([?PLG(broker_app_url, C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"reconfiguration_type">>, <<"program-flowlet-app-preferences">>},{<<"config">>, PreferencesReconfigMap}]})),
+ %make sure consul has right preferences
+ true = {200, PreferencesReconfigMap} == get_preferences_consul(C),
+ %make sure CDAP has right preferences
+ true = {200, PreferencesReconfigMap} == get_preferences_cdap(C),
+
+ %test the smart reconfiguration call
+ %try to give it a smart where there are keys in just preferences
+ SmartReconfigPrefMap = util:ejson_to_map({[{<<"preffoo REDUX EDITION">>, <<"BAR'D AGAIN">>}]}),
+ {200, _} = httpabs:put(?XER, ?SC([?PLG(broker_app_url, C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"reconfiguration_type">>, <<"program-flowlet-smart">>},{<<"config">>, SmartReconfigPrefMap}]})),
+ ExpectedNewPreferences = #{<<"LEAVE ME ALONE">>=><<"PREFERENCES EDITION">>,<<"preffoo REDUX EDITION">>=><<"BAR'D AGAIN">>},
+ true = {200, ExpectedNewPreferences} == get_preferences_consul(C),
+ true = {200, ExpectedNewPreferences} == get_preferences_cdap(C),
+
+ %try to give it a smart where there are keys in just config
+ SmartReconfigConfig = {[{<<"foo REDUX EDITION">>, <<"FOO'D AGAIN">>}]},
+ {200, _} = httpabs:put(?XER, ?SC([?PLG(broker_app_url, C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"reconfiguration_type">>, <<"program-flowlet-smart">>},{<<"config">>, SmartReconfigConfig}]})),
+ %make sure CDAP and Consul agree and are equal to what we expected
+ ExpectedNewConfig = #{<<"LEAVE ME ALONE">>=><<"CONFIG EDITION">>,<<"foo REDUX EDITION">>=><<"FOO'D AGAIN">>},
+ true = {200, ExpectedNewConfig} == get_config_consul(C),
+ true = {200, ExpectedNewConfig} == get_config_cdap(C),
+
+ %try to give it a smart where there are keys in both preferences and config
+ SmartReconfigBoth = {[{<<"foo REDUX EDITION">>, <<"FOO'D AGAIN AGAIN">>}, {<<"preffoo REDUX EDITION">>, <<"BAR'D AGAIN AGAIN">>}]},
+ {200, _} = httpabs:put(?XER, ?SC([?PLG(broker_app_url, C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"reconfiguration_type">>, <<"program-flowlet-smart">>},{<<"config">>, SmartReconfigBoth}]})),
+ ExpectedNewPreferencesBoth = #{<<"LEAVE ME ALONE">>=><<"PREFERENCES EDITION">>,<<"preffoo REDUX EDITION">>=><<"BAR'D AGAIN AGAIN">>},
+ ExpectedNewConfigBoth = #{<<"LEAVE ME ALONE">>=><<"CONFIG EDITION">>,<<"foo REDUX EDITION">>=><<"FOO'D AGAIN AGAIN">>},
+ true = {200, ExpectedNewPreferencesBoth} == get_preferences_consul(C),
+ true = {200, ExpectedNewPreferencesBoth} == get_preferences_cdap(C),
+ true = {200, ExpectedNewConfigBoth} == get_config_consul(C),
+ true = {200, ExpectedNewConfigBoth} == get_config_cdap(C),
+
+ %try to give it a smart where there are no overlaps
+ SmartReconfigNone = {[{<<"EMPTY">>, <<"LIKE YOUR SOUL">>}]},
+ {400, _} = httpabs:put(?XER, ?SC([?PLG(broker_app_url, C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"reconfiguration_type">>, <<"program-flowlet-smart">>},{<<"config">>, SmartReconfigNone}]})),
+ true = {200, ExpectedNewPreferencesBoth} == get_preferences_consul(C),
+ true = {200, ExpectedNewPreferencesBoth} == get_preferences_cdap(C),
+ true = {200, ExpectedNewConfigBoth} == get_config_consul(C),
+ true = {200, ExpectedNewConfigBoth} == get_config_cdap(C)
+ .
+
+app_botch_flows(C) ->
+ %check healthcheck
+ {200, _} = httpabs:get(?XER,?SC([?PLG(broker_app_url, C), "/healthcheck"])),
+
+ %purposely shut down a flow "manually" to test that undeploy works with a "partially deployed" app
+ {200, []} = cdap_interface:exec_programs(?XER, ?PLG(appname, C), ?PLG(namespace, C), ?PLG(cdap_url, C),
+ [#program{type = <<"flows">>, id = <<"WhoFlow">>}, #program{type = <<"services">>, id = <<"Greeting">>}], "stop"),
+ %make sure healthcheck now fails
+ {400, _} = httpabs:get(?XER,?SC([?PLG(broker_app_url, C), "/healthcheck"]))
+ .
+
+app_botch_delete(C) ->
+ %purposely shut down flows and then delete the app from the CDAP api to test undeploy works with a [gone] app
+ {200, []} = cdap_interface:exec_programs(?XER, ?PLG(appname, C), ?PLG(namespace, C), ?PLG(cdap_url, C),
+ [#program{type = <<"flows">>, id = <<"WhoFlow">>}, #program{type = <<"services">>, id = <<"Greeting">>}], "stop"),
+ {200, []} = cdap_interface:delete_app(?XER, ?PLG(appname, C), ?PLG(namespace, C), ?PLG(cdap_url, C)),
+
+ %make sure healthcheck now fails
+ {400, _} = httpabs:get(?XER,?SC([?PLG(broker_app_url, C), "/healthcheck"]))
+ .
+
+app_botch_consul_delete(C) ->
+ %purposefully delete the config in consul to make sure delete doesnt blow up
+ {200, "true"} = consul_interface:consul_delete_config(?XER, ?PLG(appname, C),?PLG(consul_url, C)).
+
+app_teardown(C) ->
+ %Test app teardown and delete
+ %app is there for now in broker
+ {200,_ } = httpabs:get(?XER,?PLG(broker_app_url, C)),
+
+ %teardown the test application
+ {200, []} = httpabs:delete(?XER, ?PLG(broker_app_url, C)),
+
+ %make sure the broker deleted the config from Consul
+ {404, _} = get_config_consul(C),
+
+ %make sure broker deleted the preferences
+ {404, _} = get_preferences_consul(C),
+
+ %make sure the broker app url no longer exists
+ {404, _ } = httpabs:get(?XER,?PLG(broker_app_url, C)),
+
+ %teardown the testing rels
+ {404, _} = setup_rels(C, teardown),
+
+ %teardown the fake service and make sure it is gone
+ {200, Srv} = setup_fake_testing_service(C, teardown),
+ true = Srv == "[]",
+
+ %cdap app gone
+ {404,"State: Not Found. Return Body: 'application:testns.hwtest.-SNAPSHOT' was not found."} = httpabs:get(?XER,?PLG(app_url, C)),
+
+ %make sure that the service is not registered. TODO! Could get more fancy by manually checking a healthcheck
+ {200, RBHC} = httpabs:get(?XER,?PLG(consul_app_url, C)),
+ true = jiffy:decode(RBHC) == [].
+
+hydrator_app_teardown(C) ->
+ %Test app teardown and delete
+ %app is there for now in cdap
+ {200, _} = httpabs:get(?XER,?PLG(hydrator_app_url, C)),
+ %app is in broker
+ {200,_ } = httpabs:get(?XER,?PLG(broker_hydrator_app_url, C)),
+ %teardown the test application
+ {200, []} = httpabs:delete(?XER, ?PLG(broker_hydrator_app_url, C)),
+ %make sure the broker deleted the config from Consul
+ ?D(<<"todo! put this back:">>),
+ %{404, _} = get_config_consul(C),
+ %make sure the broker app url no longer exists
+ {404, _ } = httpabs:get(?XER,?PLG(broker_hydrator_app_url, C)),
+ %make sure gone from CDAP
+ {404,"State: Not Found. Return Body: 'application:testns.hydratortest.-SNAPSHOT' was not found."} = httpabs:get(?XER,?PLG(hydrator_app_url, C)),
+ %make sure that the service is not registered. TODO! Could get more fancy by manually checking a healthcheck
+ {200, RBHC} = httpabs:get(?XER,?PLG(consul_hydrator_app_url, C)),
+ true = jiffy:decode(RBHC) == []
+ .
+
+hydrator_wdeps_test(C) ->
+ %test te app by injecting some data into the stream and getting it out
+ %Sleeping since HTTP services may still be booting up: see https://issues.cask.co/browse/CDAP-812
+ ok = timer:sleep(30000), %30s
+ %curl into stream
+ %grab the test data
+ {200, TestData} = httpabs:get(?XER,?PLG(hydrator_wdeps_test_data_url, C)),
+ %push it in
+ {200, _} = httpabs:post(?XER, ?SC([?PLG(hydrator_wdeps_stream_url, C), "/batch"]), "text/plain", TestData),
+ %query data out
+ PB = jiffy:encode({[{<<"query">>, <<"select ts from dataset_t1file">>}]}),
+ {200, RB} = httpabs:post(?XER, ?SC([?PLG(cdap_ns_url, C), "/data/explore/queries"]), "text/plain", PB),
+ {[{<<"handle">>, Handle}]} = jiffy:decode(RB),
+ %results can take time, sleep again
+ ok = timer:sleep(30000),
+ Expected = {[
+ {<<"status">>,<<"FINISHED">>},
+ {<<"hasResults">>,true}
+ ]},
+ {200, RB2} = httpabs:get(?XER,?SC([?PLG(cdap_url, C), "/v3/data/explore/queries", "/", Handle, "/status"])),
+ true = Expected == jiffy:decode(RB2),
+ {200, _} = httpabs:post(?XER, ?SC([?PLG(cdap_url, C), "/v3/data/explore/queries", "/", Handle, "/next"]), "text/plain", "")
+ .
+
+hydrator_wdeps_teardown(C) ->
+ %Test app teardown and delete
+ %app is there for now in cdap
+ {200, _} = httpabs:get(?XER,?PLG(hydrator_wdeps_app_url, C)),
+ %app is in broker
+ {200,_ } = httpabs:get(?XER,?PLG(broker_hydrator_wdeps_app_url, C)),
+ %teardown the test application
+ {200, []} = httpabs:delete(?XER, ?PLG(broker_hydrator_wdeps_app_url, C)),
+ %make sure the broker deleted the config from Consul
+ ?D(<<"todo! put this back:">>),
+ %{404, _} = get_config_consul(C),
+ %make sure the broker app url no longer exists
+ {404, _ } = httpabs:get(?XER,?PLG(broker_hydrator_wdeps_app_url, C)),
+ %make sure gone from CDAP
+ {404,"State: Not Found. Return Body: 'application:testns.hydratortest.-SNAPSHOT' was not found."} = httpabs:get(?XER,?PLG(hydrator_app_url, C)),
+ %make sure that the service is not registered. TODO! Could get more fancy by manually checking a healthcheck
+ {200, RBHC} = httpabs:get(?XER,?PLG(consul_hydrator_wdeps_app_url, C)),
+ true = jiffy:decode(RBHC) == []
+ .
+
+test_failures(C) ->
+ %test things that should fail
+ %delete a non-existent app
+ {404, "State: Not Found. Return Body: Tried to delete an application that was not registered"} =
+ httpabs:delete(?XER, ?SC([?PLG(broker_app_url, C), "MYFRIENDOFMISERY"])),
+
+ %malformed Broker put
+ URL = ?SC([?PLG(broker_app_url, C), "FAILURETEST"]),
+ Body = {[
+ {<<"malformed">>, <<"i am">>}
+ ]},
+ {400, "State: Bad Request. Return Body: Invalid PUT Body or unparseable URL"} = httpabs:put(?XER, URL, "application/json", jiffy:encode(Body)),
+
+ %deploy a bad CDAP app with a bad program_id
+ Body2 = {[
+ {<<"cdap_application_type">>, <<"program-flowlet">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"streamname">>, ?PLG(streamname, C)},
+ {<<"jar_url">>, ?PLG(jar_url, C)},
+ {<<"artifact_name">>, ?PLG(art_name, C)},
+ {<<"artifact_version">>, ?PLG(art_ver, C)},
+ {<<"app_config">>, ?PLG(init_config, C)},
+ {<<"app_preferences">>, ?PLG(init_preferences, C)},
+ {<<"services">>, [{[{<<"service_name">>, <<"Greeting">>},
+ {<<"service_endpoint">>, <<"greet">>},
+ {<<"endpoint_method">>, <<"GET">>}]}]},
+ {<<"programs">>, [
+ {[{<<"program_type">>, <<"flows">>},
+ {<<"program_id">>, <<"DISSAPOINTMENT">>}]}
+ ]},
+ {<<"program_preferences">>, []}
+ ]},
+ %WORKS IN CDAP 3:
+ %{404,"State: Not Found. Return Body: State: Not Found. Return Body: 'program:testns.hwtestFAILURETEST.flow.DISSAPOINTMENT' was not found."} = httpabs:put(?XER, URL, "application/json", jiffy:encode(Body2)),
+ %WORKS IN CDAP 4 (looks like they are doing more intrispection on the jar name)
+ {404,_} = httpabs:put(?XER, URL, "application/json", jiffy:encode(Body2)),
+ %make sure the rollback happened
+ {200, "[]"} = httpabs:get(?XER,?SC([?PLG(broker_url, C), "/application"])),
+
+ %try to deploy with a bad URL where bad means nonexistent (504)
+ Body3 = {[
+ {<<"cdap_application_type">>, <<"program-flowlet">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"streamname">>, ?PLG(streamname, C)},
+ {<<"jar_url">>, ?SC([?PLG(jar_url, C), "DOESNOTEXISTMOSTLIKELY"])},
+ {<<"artifact_name">>, ?PLG(art_name, C)},
+ {<<"artifact_version">>, ?PLG(art_ver, C)},
+ {<<"app_config">>, ?PLG(init_config, C)},
+ {<<"app_preferences">>, ?PLG(init_preferences, C)},
+ {<<"services">>, [{[{<<"service_name">>, <<"Greeting">>}, {<<"service_endpoint">>, <<"greet">>}, {<<"endpoint_method">>, <<"GET">>}]}]},
+ {<<"programs">>, [{[{<<"program_type">>, <<"flows">>},{<<"program_id">>, <<"WhoFlow">>}]},{[{<<"program_type">>, <<"services">>},{<<"program_id">>, <<"Greeting">>}]}]},
+ {<<"program_preferences">>, [{[{<<"program_type">>,<<"flows">>}, {<<"program_id">>, <<"WhoFlow">>}, {<<"program_pref">>, ?PLG(whoflowpref, C)}]}]}
+ ]},
+ {404, _} = httpabs:put(?XER, URL, "application/json", jiffy:encode(Body3)),
+
+ %try to deploy with a bad URL where bad means malformed
+ Body4 = {[
+ {<<"cdap_application_type">>, <<"program-flowlet">>},
+ {<<"namespace">>, ?PLG(namespace, C)},
+ {<<"streamname">>, ?PLG(streamname, C)},
+ {<<"jar_url">>, <<"THIS IS NOT EVEN A URL WHAT ARE YOU DOING TO ME">>},
+ {<<"artifact_name">>, ?PLG(art_name, C)},
+ {<<"artifact_version">>, ?PLG(art_ver, C)},
+ {<<"app_config">>, ?PLG(init_config, C)},
+ {<<"app_preferences">>, ?PLG(init_preferences, C)},
+ {<<"services">>, [{[{<<"service_name">>, <<"Greeting">>}, {<<"service_endpoint">>, <<"greet">>}, {<<"endpoint_method">>, <<"GET">>}]}]},
+ {<<"programs">>, [{[{<<"program_type">>, <<"flows">>},{<<"program_id">>, <<"WhoFlow">>}]},{[{<<"program_type">>, <<"services">>},{<<"program_id">>, <<"Greeting">>}]}]},
+ {<<"program_preferences">>, [{[{<<"program_type">>,<<"flows">>}, {<<"program_id">>, <<"WhoFlow">>}, {<<"program_pref">>, ?PLG(whoflowpref, C)}]}]}
+ ]},
+ {400,"State: Bad Request. Return Body: ERROR: The following URL is malformed: THIS IS NOT EVEN A URL WHAT ARE YOU DOING TO ME"} = httpabs:put(?XER, URL, "application/json", jiffy:encode(Body4))
+ .
+
+invalid_reconfigure(C) ->
+ %test reconfiguring an app that does not exist despite put body being correct
+ {404,"State: Not Found. Return Body: Reconfigure recieved but the app is not registered"} = httpabs:put(?XER, ?SC([?PLG(broker_app_url, C), "THE_VOID", "/reconfigure"]), "application/json", jiffy:encode({[{<<"reconfiguration_type">>, <<"program-flowlet-app-config>">>}, {<<"config">>, {[{<<"foo">>, <<"bar">>}]}}]})),
+
+ %test reconfiguring with an invalid PUT body (missing "reconfiguration_type")
+ {400,"State: Bad Request. Return Body: Invalid PUT Reconfigure Body: key 'reconfiguration_type' is missing"} = httpabs:put(?XER, ?SC([?PLG(broker_app_url,C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"config">>, <<"bar">>}]})),
+
+ %test reconfiguring with an invalid PUT body (missing app_config)
+ {400,"State: Bad Request. Return Body: Invalid PUT Reconfigure Body: key 'config' is missing"} = httpabs:put(?XER, ?SC([?PLG(broker_app_url,C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"reconfiguration_type">>, <<"program-flowlet-app-config">>}, {<<"foo">>, <<"bar">>}]})),
+
+ %test reconfiguring an invalid (unimplemented) type
+ {501, "State: Not Implemented. Return Body: This type (EMPTINESS) of reconfiguration is not implemented"} = httpabs:put(?XER, ?SC([?PLG(broker_app_url,C), "/reconfigure"]), "application/json", jiffy:encode({[{<<"config">>, <<"bar">>}, {<<"reconfiguration_type">>, <<"EMPTINESS">>}]}))
+ .
+
+delete_all(C) ->
+ %test invalid key
+ Body1 = jiffy:encode({[{<<"ids">>, [<<"hwtest">>]}]}),
+ {400,"State: Bad Request. Return Body: Invalid PUT Body"} = httpabs:post(?XER, ?SC([?PLG(broker_url, C), "/application/delete"]), "application/json", Body1),
+ %test invalid: not a list
+ Body2 = jiffy:encode({[{<<"appnames">>, <<"hwtest">>}]}),
+ {400,"State: Bad Request. Return Body: Invalid PUT Body"} = httpabs:post(?XER, ?SC([?PLG(broker_url, C), "/application/delete"]), "application/json", Body2),
+ %test undeploy a real app and also an app that is not deployed
+ Body3 = jiffy:encode({[{<<"appnames">>, [<<"hwtest">>, <<"dissapointment">>]}]}),
+ {200, "[200,404]"} = httpabs:post(?XER, ?SC([?PLG(broker_url, C), "/application/delete"]), "application/json", Body3),
+ %teardown the fake service and make sure it is gone
+ {200, Srv} = setup_fake_testing_service(C, teardown),
+ true = Srv == "[]".
+