-
Notifications
You must be signed in to change notification settings - Fork 28
/
deploy.cmd
75 lines (62 loc) · 2.45 KB
/
deploy.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@ECHO OFF
SETLOCAL
rem #
rem # Copyright 2016 IBM Corp. All Rights Reserved.
rem #
rem # Licensed under the Apache License, Version 2.0 (the “License”);
rem # you may not use this file except in compliance with the License.
rem # You may obtain a copy of the License at
rem #
rem # https://www.apache.org/licenses/LICENSE-2.0
rem #
rem # Unless required by applicable law or agreed to in writing, software
rem # distributed under the License is distributed on an “AS IS” BASIS,
rem # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem # See the License for the specific language governing permissions and
rem # limitations under the License.
rem # load configuration variables
@CALL local.cmd
set PACKAGE_NAME=slackapp
IF "%1"=="--install" (
CALL :install
) ELSE IF "%1"=="--uninstall" (
CALL :uninstall
) ELSE IF "%1"=="--update" (
CALL :update
) ELSE IF "%1"=="--env" (
CALL :showenv
) ELSE (
CALL :usage
)
EXIT /B %ERRORLEVEL%
:usage
ECHO Usage: deploy.bat [--install,--uninstall,--update,--env]
EXIT /B 0
:install
ECHO Creating %PACKAGE_NAME% package
ibmcloud fn package create %PACKAGE_NAME% -p cloudantUrl %CLOUDANT_url% -p cloudantApiKey %CLOUDANT_apikey% -p cloudantDb %CLOUDANT_db% -p slackClientId "%SLACK_CLIENT_ID%" -p slackClientSecret "%SLACK_CLIENT_SECRET%" -p slackVerificationToken "%SLACK_VERIFICATION_TOKEN%"
ECHO Adding app registration command
ibmcloud fn action create %PACKAGE_NAME%/slackapp-register actions\slackapp-register.js --web true --annotation final true
ECHO Adding app event processing
ibmcloud fn action create %PACKAGE_NAME%/slackapp-event actions\slackapp-event.js --web true --annotation final true
ECHO Adding app command processing
ibmcloud fn action create %PACKAGE_NAME%/slackapp-command actions\slackapp-command.js --web true --annotation final true
EXIT /B 0
:uninstall
ECHO Removing actions...
ibmcloud fn action delete %PACKAGE_NAME%/slackapp-register
ibmcloud fn action delete %PACKAGE_NAME%/slackapp-command
ibmcloud fn action delete %PACKAGE_NAME%/slackapp-event
ibmcloud fn package delete %PACKAGE_NAME%
ECHO Done
ibmcloud fn list
EXIT /B 0
:update
ibmcloud fn action update %PACKAGE_NAME%/slackapp-register actions\slackapp-register.js
ibmcloud fn action update %PACKAGE_NAME%/slackapp-event actions\slackapp-event.js
ibmcloud fn action update %PACKAGE_NAME%/slackapp-command actions\slackapp-command.js
EXIT /B 0
:showenv
ECHO CLOUDANT_url=%CLOUDANT_url%
ECHO CLOUDANT_db=%CLOUDANT_db%
EXIT /B 0