Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7ae69c8
feat(webhooks): Start with implementing webhooks for chat messages
nickvergessen Jan 2, 2023
fac8f13
feat(Message): Allow parsing messages without a current participant
nickvergessen Jul 19, 2023
b1a89a8
feat(bots): Allow to read system messages as well
nickvergessen Jul 19, 2023
fa5f671
fix(bots): Set the OCS APIRequest header so Nextclouds can be the Bot…
nickvergessen Jul 19, 2023
38aaa0c
fix(bots): Set timeout to 5s (we wait async if necessary)
nickvergessen Aug 2, 2023
6b6090e
feat(bots): Add commands and events to install bots
nickvergessen Jul 23, 2023
71ee2c8
fix(bots): Use the fixed CLI url
nickvergessen Jul 24, 2023
65893d2
feat(bots): Add API to list, enable and disable bots in a conversation
nickvergessen Jul 26, 2023
395cb5c
ci(psalm): Fix psalm issues and baseline
nickvergessen Jul 27, 2023
bf86dca
docs: Add occ docs for bot commands
nickvergessen Jul 27, 2023
aa32008
fix(bots): Update name, description and state when reinstalling only
nickvergessen Jul 27, 2023
ac3d82e
fix(bots): Return Bot data when enabling/disabling
nickvergessen Jul 27, 2023
5a68ea2
tests(integration): Add integration tests for the call summary bot
nickvergessen Aug 2, 2023
b66fd19
fix: Fix code quality based on review
nickvergessen Aug 4, 2023
4ae7a45
fix: Typo in row attribute names
nickvergessen Aug 7, 2023
49e69db
fix(chat): Fix actor detection when type and id are provided
nickvergessen Aug 7, 2023
13c5ced
feat(bot): Allow reactions by bots
nickvergessen Aug 7, 2023
e2de469
fix: Block bot commands on incompatible versions
nickvergessen Aug 7, 2023
957851e
fix(l10n): 27 is not using a non-breakable space
nickvergessen Aug 8, 2023
6d90f06
add section in ConversationSettingsDialog.vue for enabling / disablin…
Antreesy Aug 7, 2023
9e9fd95
fix(CI): Bump nextcloud/OCP package
nickvergessen Aug 8, 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
28 changes: 18 additions & 10 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
## 1. Download/install drone binary:
## curl -L https://github.com/harness/drone-cli/releases/latest/download/drone_linux_amd64.tar.gz | tar zx
## curl -L https://github.com/harness/drone-cli/releases/latest/download/drone_linux_amd64.tar.gz | tar zx
## 2. Adjust the matrix as wished
## 3. Run: ./drone jsonnet --stream --format yml
## 4. Commit the result
## 3. Transform jsonnet to yml:
## ./drone jsonnet --stream --format yml
## 4. Export your drone token and the server:
## export DRONE_TOKEN=… export DRONE_SERVER=https://drone.nextcloud.com
## 5. Sign off the changes:
## ./drone sign nextcloud/spreed --save
## 6. Copy the new signature from .drone.yml to `hmac` field in this file
## 7. Transform jsonnet to yml again (to transfer the signature correctly):
## ./drone jsonnet --stream --format yml
## 8. Commit the result

local Pipeline(test_set, database, services) = {
kind: "pipeline",
Expand All @@ -16,6 +24,7 @@ local Pipeline(test_set, database, services) = {
APP_NAME: "spreed",
CORE_BRANCH: "stable27",
GUESTS_BRANCH: "master",
CSB_BRANCH: "main",
NOTIFICATIONS_BRANCH: "stable27",
DATABASEHOST: database
},
Expand All @@ -31,12 +40,11 @@ local Pipeline(test_set, database, services) = {
"cd ../..",
"./occ app:enable $APP_NAME",
"git clone --depth 1 -b $NOTIFICATIONS_BRANCH https://github.com/nextcloud/notifications apps/notifications",
"./occ app:enable notifications"
] + (
if test_set == "conversation" || test_set == "conversation-2" then [
"git clone --depth 1 -b $GUESTS_BRANCH https://github.com/nextcloud/guests apps/guests"
] else []
) + [
"./occ app:enable --force notifications",
"git clone --depth 1 -b $GUESTS_BRANCH https://github.com/nextcloud/guests apps/guests",
"./occ app:enable --force guests",
"git clone --depth 1 -b $CSB_BRANCH https://github.com/nextcloud/call_summary_bot apps/call_summary_bot",
"./occ app:enable --force call_summary_bot",
"cd apps/$APP_NAME/tests/integration/",
"bash run.sh features/"+test_set
]
Expand Down Expand Up @@ -155,6 +163,6 @@ local PipelinePostgreSQL(test_set) = Pipeline(

{
kind: "signature",
hmac: "42a9326446817e073491d2b887a20254394c1cc988640bc9df9b57f2ad445ff0"
hmac: "8a6c9dd22806c07b68b5d263748cf226693b847a9d4773e094ba549d98834dd5"
},
]
Loading