Browse Source
Merge pull request #914 from nextcloud/in-call-flags
Merge pull request #914 from nextcloud/in-call-flags
Change "inCall" state to contain bit flags (#911).pull/1151/head
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 217 additions and 58 deletions
-
2appinfo/info.xml
-
4docs/api-v1.md
-
22js/app.js
-
13js/connection.js
-
5js/signaling.js
-
5js/views/callinfoview.js
-
2js/views/roomlistview.js
-
24js/webrtc.js
-
5lib/AppInfo/Application.php
-
1lib/Capabilities.php
-
17lib/Controller/CallController.php
-
8lib/Controller/RoomController.php
-
49lib/Migration/Version3003Date20180722152733.php
-
51lib/Migration/Version3003Date20180722152849.php
-
7lib/Participant.php
-
20lib/Room.php
-
12lib/Signaling/BackendNotifier.php
-
1tests/php/CapabilitiesTest.php
-
27tests/php/Signaling/BackendNotifierTest.php
@ -0,0 +1,49 @@ |
|||
<?php |
|||
/** |
|||
* @copyright Copyright (c) 2018 Joachim Bauch <bauch@struktur.de> |
|||
* |
|||
* @author Joachim Bauch <bauch@struktur.de> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
* |
|||
*/ |
|||
namespace OCA\Spreed\Migration; |
|||
|
|||
use Doctrine\DBAL\Types\Type; |
|||
use OCP\DB\ISchemaWrapper; |
|||
use OCP\Migration\SimpleMigrationStep; |
|||
use OCP\Migration\IOutput; |
|||
|
|||
class Version3003Date20180722152733 extends SimpleMigrationStep { |
|||
|
|||
|
|||
/** |
|||
* @param IOutput $output |
|||
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|||
* @param array $options |
|||
* @return null|ISchemaWrapper |
|||
* @since 13.0.0 |
|||
*/ |
|||
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { |
|||
/** @var ISchemaWrapper $schema */ |
|||
$schema = $schemaClosure(); |
|||
|
|||
$table = $schema->getTable('talk_participants'); |
|||
$table->dropColumn('in_call'); |
|||
|
|||
return $schema; |
|||
} |
|||
} |
|||
@ -0,0 +1,51 @@ |
|||
<?php |
|||
/** |
|||
* @copyright Copyright (c) 2018 Joachim Bauch <bauch@struktur.de> |
|||
* |
|||
* @author Joachim Bauch <bauch@struktur.de> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
* |
|||
*/ |
|||
namespace OCA\Spreed\Migration; |
|||
|
|||
use Doctrine\DBAL\Types\Type; |
|||
use OCP\DB\ISchemaWrapper; |
|||
use OCP\Migration\SimpleMigrationStep; |
|||
use OCP\Migration\IOutput; |
|||
|
|||
class Version3003Date20180722152849 extends SimpleMigrationStep { |
|||
|
|||
|
|||
/** |
|||
* @param IOutput $output |
|||
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|||
* @param array $options |
|||
* @return null|ISchemaWrapper |
|||
* @since 13.0.0 |
|||
*/ |
|||
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { |
|||
/** @var ISchemaWrapper $schema */ |
|||
$schema = $schemaClosure(); |
|||
|
|||
$table = $schema->getTable('talk_participants'); |
|||
$table->addColumn('in_call', Type::INTEGER, [ |
|||
'default' => 0, |
|||
]); |
|||
|
|||
return $schema; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue