Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
346fff6
added function call on bot delpoyment
Aran30 Nov 29, 2022
869712e
changed botname to botid
Aran30 Nov 29, 2022
f1e2e92
use id instead of name
Aran30 Nov 30, 2022
481369b
added bot id and name to req.
Aran30 Dec 2, 2022
d434088
added new logic for sending multiple files
Aran30 Dec 13, 2022
d1d185f
fixed minor sql problne
Aran30 Dec 16, 2022
65d0b7e
Update docker-CI.yml
Aran30 Dec 25, 2022
b159f55
Update docker-CI.yml
Aran30 Dec 25, 2022
e2d8886
added new variables to docker entrypoint and propoerteis
Aran30 Dec 26, 2022
b20ff7a
Merge branch 'MA-aaron' of https://github.com/rwth-acis/las2peer-soci…
Aran30 Dec 26, 2022
2bbadd2
remoced client login
Aran30 Dec 26, 2022
72bbd6d
oops forgot this fix last time
Aran30 Jan 7, 2023
6b645e2
fixed small sql error
Aran30 Jan 7, 2023
aec6ffd
updated l2p version
Aran30 Jan 13, 2023
3943281
added logs to figure out weird problem
Aran30 Jan 13, 2023
e9f3c69
further logs
Aran30 Jan 13, 2023
b4430d0
added removal from context if error occurs
Aran30 Jan 13, 2023
8a88486
Update BotParser.java
Aran30 Jan 21, 2023
de8fd2e
Update BotParser.java
Aran30 Jan 22, 2023
0fa9ac6
Update BotParser.java
Aran30 Jan 22, 2023
95a14ab
Update BotParser.java
Aran30 Jan 22, 2023
2f263ba
Update BotParser.java
Aran30 Jan 22, 2023
665b596
Update Messenger.java
Aran30 Jan 22, 2023
4481ddb
Update Messenger.java
Aran30 Jan 22, 2023
2ba1b9d
changed from array to hashet
Aran30 Jan 22, 2023
6992e60
Revert "changed from array to hashet"
Aran30 Jan 22, 2023
8c05661
finally found the error
Aran30 Jan 22, 2023
c8da20b
Update Messenger.java
Aran30 Jan 22, 2023
fd4addb
first attempt to make ocmmand executable from convi state
Aran30 Jan 25, 2023
e6ad7b3
Update Messenger.java
Aran30 Jan 25, 2023
787e0d6
Create i5.las2peer.connectors.webConnector.WebConnector.properties
Aran30 Jan 26, 2023
72f9c93
Update SocialBotManagerService.java
Aran30 Jan 29, 2023
d4c31e1
lowered confidence
Aran30 Feb 8, 2023
272cbbb
added support for new yaml rasa data
Aran30 Feb 9, 2023
3d6e1b7
Update Messenger.java
Aran30 Feb 9, 2023
675683a
removed wrong case
Aran30 Feb 9, 2023
2bfda18
Update Messenger.java
Aran30 Feb 9, 2023
2ec2eb0
Update Messenger.java
Aran30 Feb 9, 2023
647c753
Update Messenger.java
Aran30 Feb 10, 2023
4e0d182
Update Messenger.java
Aran30 Feb 10, 2023
bd425f7
Update Messenger.java
Aran30 Feb 10, 2023
772584c
Update Messenger.java
Aran30 Feb 10, 2023
c2e311c
Update Messenger.java
Aran30 Feb 10, 2023
d4fb568
Update Messenger.java
Aran30 Feb 10, 2023
a50f7c5
fixed follow up nmessage after action
Aran30 Feb 22, 2023
1cc0a83
Update Messenger.java
Aran30 Feb 23, 2023
24e90c1
fixed followup message
Aran30 Feb 23, 2023
08c9231
Update SocialBotManagerService.java
Aran30 Mar 6, 2023
15ca2d8
Update SocialBotManagerService.java
Aran30 Mar 6, 2023
f27b82b
Update SocialBotManagerService.java
Aran30 Mar 6, 2023
b680e8b
Update SocialBotManagerService.java
Aran30 Mar 6, 2023
6c6af6e
Update SocialBotManagerService.java
Aran30 Mar 6, 2023
8c9de2c
Update SocialBotManagerService.java
Aran30 Mar 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Docker Build and Push
on:
push:

branches: [ master, develop]
branches: [ master, develop, MA-aaron]


jobs:
Expand Down
2 changes: 1 addition & 1 deletion SBF.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ SET FOREIGN_KEY_CHECKS = 0;
-- Table structure for attributes
-- ----------------------------
CREATE TABLE IF NOT EXISTS `attributes` (
`id` int(12) NOT NULL AUTO_INCREMENT,
`id` varchar(255) NOT NULL AUTO_INCREMENT,
`bot` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`channel` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`user` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
Expand Down
3 changes: 2 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export CORE_VERSION=$(awk -F "=" '/core.version/ {print $2}' gradle.properties)
function set_in_service_config {
sed -i "s?${1}[[:blank:]]*=.*?${1}=${2}?g" ${SERVICE_PROPERTY_FILE}
}
cp $SERVICE_PROPERTY_FILE.sample $SERVICE_PROPERTY_FILE
set_in_service_config databaseName ${DATABASE_NAME}
set_in_service_config databaseHost ${DATABASE_HOST}
set_in_service_config databasePort ${DATABASE_PORT}
Expand All @@ -27,6 +26,8 @@ set_in_service_config databasePassword ${DATABASE_PASSWORD}
set_in_service_config address ${ADDRESS}
set_in_service_config restarterBotName ${RESTARTERBOTNAME}
set_in_service_config restarterBotPW ${RESTARTERBOTPW}
set_in_service_config lrsURL ${LRS_URL}
set_in_service_config lrsAuthToken ${LRS_AUTH_TOKEN}


# ensure the database is ready
Expand Down
14 changes: 14 additions & 0 deletions etc/i5.las2peer.connectors.webConnector.WebConnector.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
httpPort = 8080
httpsPort = 8090
startHttp = TRUE
startHttps = FALSE
sslKeystore = etc/example.jks
sslKeyPassword = secretpassword
crossOriginResourceDomain = *
crossOriginResourceMaxAge = 60
enableCrossOriginResourceSharing = TRUE
onlyLocalServices = FALSE
defaultLoginUser = anonymous
defaultLoginPassword = anonymous
# this somehow breaks swagger.json call
#oidcProviders = https://api.learning-layers.eu/o/oauth2,https://accounts.google.com
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
databaseUser = root
databasePassword = root
databasePassword = password
databaseName = LAS2PEERMON
databaseHost = 127.0.0.1
databasePort = 3306
address = http://127.0.0.1:8080
address = http://127.0.0.1:8090
restarterBotName =
restarterBotPW =
lrsAuthToken =
lrsURL =
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
databaseUser = root
databasePassword = root
databasePassword = password
databaseName = LAS2PEERMON
databaseHost = host.docker.internal
databaseHost = 127.0.0.1
databasePort = 3306
address = http://127.0.0.1:8080
address = http://127.0.0.1:8090
restarterBotName =
restarterBotPW =
restarterBotPW =
lrsAuthToken =
lrsURL =
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
core.version=1.2.3
core.version=1.2.4
service.name=i5.las2peer.services.socialBotManagerService
service.class=SocialBotManagerService
service.version=1.5.3
Expand Down
Loading