Skip to content

Commit f9713ae

Browse files
Fabilinvsct-jburet
authored andcommitted
fix #1598 web_connector: add configuration option for CORS
1 parent f0f1534 commit f9713ae

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

bot/connector-web/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@ response:
129129

130130
A simple [Swagger descriptor](./Swagger_TOCKWebConnector.yaml) of the rest service is provided¬.
131131

132+
### CORS Configuration
133+
134+
By default, the web connector accepts requests from any origin. If a stricter CORS configuration is required, the
135+
`tock_web_cors_pattern` property can be set to any Regex pattern, against which origin hosts get matched.
136+
132137
## Additional features
133138

134139
Several features can be optionally used with the Web Connector. Some require specific properties to be set, either
@@ -215,6 +220,11 @@ Additionally, setting the `tock_web_cookie_auth_max_age` property to any positiv
215220
the cookie's `Max-Age` property to the specified number of seconds. If left to the default or set to a negative value,
216221
the cookie will not have a `Max-Age` and will expire at the end of the user's browsing session.
217222

223+
The cookie does not have a [Path](https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#path_attribute) set by default,
224+
which potentially allows per-connector user identifiers if the connector paths are sufficiently distinct.
225+
If sharing the cookie between connectors is the preferred behavior, the `tock_web_cookie_auth_path` property can be used
226+
to set a fixed `Path` shared by all web connectors.
227+
218228
### Markdown processing
219229

220230
This connector can process [Markdown formatting](https://daringfireball.net/projects/markdown/) in messages.

bot/connector-web/src/main/kotlin/WebConnector.kt

+8-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import ai.tock.bot.connector.media.MediaAction
2626
import ai.tock.bot.connector.media.MediaCard
2727
import ai.tock.bot.connector.media.MediaCarousel
2828
import ai.tock.bot.connector.media.MediaMessage
29-
import ai.tock.bot.connector.web.channel.ChannelMongoDAO
3029
import ai.tock.bot.connector.web.channel.Channels
3130
import ai.tock.bot.connector.web.send.PostbackButton
3231
import ai.tock.bot.connector.web.send.UrlButton
@@ -57,6 +56,7 @@ import ai.tock.shared.injector
5756
import ai.tock.shared.jackson.mapper
5857
import ai.tock.shared.listProperty
5958
import ai.tock.shared.longProperty
59+
import ai.tock.shared.property
6060
import ai.tock.shared.propertyOrNull
6161
import ai.tock.shared.provide
6262
import ai.tock.shared.vertx.vertx
@@ -83,10 +83,12 @@ private const val TOCK_USER_ID = "tock_user_id"
8383
*/
8484
val webConnectorType = ConnectorType(WEB_CONNECTOR_ID)
8585

86+
private val corsPattern = property("tock_web_cors_pattern", ".*")
8687
private val sseEnabled = booleanProperty("tock_web_sse", false)
8788
private val sseKeepaliveDelay = longProperty("tock_web_sse_keepalive_delay", 10)
8889
private val cookieAuth = booleanProperty("tock_web_cookie_auth", false)
8990
private val cookieAuthMaxAge = longProperty("tock_web_cookie_auth_max_age", -1)
91+
private val cookieAuthPath = propertyOrNull("tock_web_cookie_auth_path")
9092

9193
private val webConnectorBridgeEnabled = booleanProperty("tock_web_connector_bridge_enabled", false)
9294

@@ -125,7 +127,7 @@ class WebConnector internal constructor(
125127
router.route(path)
126128
.handler(
127129
CorsHandler.create()
128-
.addRelativeOrigin(".*") // "*"+credentials is rejected by browsers, so we use the equivalent regex instead
130+
.addRelativeOrigin(corsPattern)
129131
.allowedMethod(HttpMethod.POST)
130132
.run {
131133
if (sseEnabled) allowedMethod(HttpMethod.GET) else this
@@ -217,6 +219,10 @@ class WebConnector internal constructor(
217219
cookie.setMaxAge(cookieAuthMaxAge)
218220
}
219221

222+
if (cookieAuthPath != null) {
223+
cookie.setPath(cookieAuthPath)
224+
}
225+
220226
context.response().addCookie(cookie)
221227

222228
cookieValue

0 commit comments

Comments
 (0)