Skip to content

Commit 4b7cdad

Browse files
committed
adding additional variable to be able to set HTTP route independent of the WS route
1 parent a9d3b63 commit 4b7cdad

File tree

5 files changed

+23
-13
lines changed

5 files changed

+23
-13
lines changed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ Containerizing and pushing this app into your OpenShift cluster is easy with the
3333
>*(edit files and rerun `npx nodeshift` and it will update OpenShift for you)*
3434
>
3535
>*add the env config `--build.env DEBUG_INPUT=true` to true to see the input panel and allow setting highscores*
36-
>*set the env var `--build.env API_SERVER_URL=route_to_api_service:80` to hook up to an API server (note this is the external openshift route not the service name)*
36+
>*set the env var `--build.env API_SERVER_URL=http://route_to_api_service:80` to hook up to an API server (note this is the external openshift route not the service name)*
37+
>*set the env var `--build-env API_SERVER_WEBSOCKET_URL=ws://route_to_api_service:80` to hook up to an API server (note this is the external openshift route not the service name)*
3738
3839
Expose our app to outside the cluster
3940
> `oc expose service openshift-highscores-phaser-ui`
@@ -43,10 +44,14 @@ This is also pretty easy with the help of Source 2 Image (aka s2i). Run the foll
4344
>`oc new-app nodeshift/ubi8-s2i-web-app:latest~https://github.com/CodeCafeOpenShiftGame/openshift-highscores-phaser-ui --build-env OUTPUT_DIR=dist`
4445
4546
>*add the env config `--build-env DEBUG_INPUT=true` to true to see the input panel and allow setting highscores*
46-
>*set the env var `--build-env API_SERVER_URL=route_to_api_service:80` to hook up to an API server (note this is the external openshift route not the service name)*
47+
>*set the env var `--build-env API_SERVER_URL=http://route_to_api_service:80` to hook up to an API server (note this is the external openshift route not the service name)*
48+
>*set the env var `--build-env API_SERVER_WEBSOCKET_URL=ws://route_to_api_service:80` to hook up to an API server (note this is the external openshift route not the service name)*
4749
4850
Expose our app to outside the cluster
4951
> `oc expose service openshift-highscores-phaser-ui`
5052
53+
### Other Notes
54+
* `API_SERVER_URL` and `API_SERVER_WEBSOCKET_URL` can use `https` and `wss` as long as they a both set to be secure
55+
5156
## Credit & Thanks
5257
Thanks to Richard Davey @ Phaser for the [tutorials here](https://phaser.io/learn/community-tutorials) that this was initially based upon.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/dudash/openshift-highscores-phaser-ui.git"
12+
"url": "git+https://github.com/CodeCafeOpenShiftGame/openshift-highscores-phaser-ui.git"
1313
},
1414
"author": "Jason Dudash <[email protected]>",
1515
"license": "Apache-2.0",
1616
"licenseUrl": "http://www.apache.org/licenses/",
1717
"bugs": {
18-
"url": "https://github.com/dudash/openshift-highscores-phaser-ui/issues"
18+
"url": "https://github.com/CodeCafeOpenShiftGame/openshift-highscores-phaser-ui/issues"
1919
},
20-
"homepage": "https://github.com/dudash/openshift-highscores-phaser-ui",
20+
"homepage": "https://github.com/CodeCafeOpenShiftGame/openshift-highscores-phaser-ui",
2121
"devDependencies": {
2222
"@babel/core": "^7.7.2",
2323
"@babel/preset-env": "^7.7.1",

src/highscoreScene.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,16 @@ export class Highscore extends Phaser.Scene {
6262

6363
getLatestScores() {
6464
// call the REST API service and display them
65-
var apiServer = 'localhost:5000'; // default
65+
var apiServer = 'http://localhost:5000'; // default
6666
if (process.env.API_SERVER_URL != null) {
6767
console.warn('overriding the API server to be: '+ process.env.API_SERVER_URL);
6868
apiServer = process.env.API_SERVER_URL;
6969
}
70-
const uriPrefix = 'http://';
70+
if (!apiServer.startsWith('http')) { // add http if not already set
71+
apiServer = 'http://' + apiServer;
72+
}
7173
var self=this;
72-
axios.get(uriPrefix + apiServer + '/scores/topten/')
74+
axios.get(apiServer + '/scores/topten/')
7375
.then(function (response) {
7476
self.displayLatestScores(response.data);
7577
})

src/index.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,18 @@ game.events.off('hidden', game.onHidden, game, false); // not sure this is neede
3030
game.events.off('visible', game.onVisible, game, false);
3131

3232
// provide websockets to scenes that care
33-
var apiServer = 'localhost:5000'; // default
34-
if (process.env.API_SERVER_URL != null) {
35-
console.warn('ENV: overriding the API server to be: '+ process.env.API_SERVER_URL);
36-
apiServer = process.env.API_SERVER_URL;
33+
34+
var apiServerWebsocket = 'ws://localhost:5000'; // default
35+
if (process.env.API_SERVER_WEBSOCKET_URL != null) {
36+
console.warn('ENV: overriding the API websocket server to be: '+ process.env.API_SERVER_WEBSOCKET_URL);
37+
apiServerWebsocket = process.env.API_SERVER_WEBSOCKET_URL;
3738
}
3839
const clientId = uuidv1();
39-
let webSocketURL = apiServer + '/notifications/' + clientId;
40+
let webSocketURL = apiServerWebsocket + '/notifications/' + clientId;
4041
if (!webSocketURL.startsWith('ws')) { // add ws if not already set
4142
webSocketURL = 'ws://' + webSocketURL;
4243
}
44+
4345
global.ws = new WebSocket(webSocketURL);
4446
global.ws.onopen = function open() {console.log('connected to ' + webSocketURL);};
4547
global.ws.onclose = function close() {console.log('disconnected from ' + webSocketURL);};

webpack/base.js

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ module.exports = {
3434
WEBGL_RENDERER: JSON.stringify(true),
3535
'process.env.DEBUG_INPUT': JSON.stringify(process.env.DEBUG_INPUT),
3636
'process.env.API_SERVER_URL': JSON.stringify(process.env.API_SERVER_URL),
37+
'process.env.API_SERVER_WEBSOCKET_URL': JSON.stringify(process.env.API_SERVER_WEBSOCKET_URL)
3738
}),
3839
new HtmlWebpackPlugin({
3940
template: "./index.html"

0 commit comments

Comments
 (0)