Added stream chat roles

Change-Id: I68f8a37984a42074f246b620bdf73d54cb98e6f3
Signed-off-by: smarcet <smarcet@gmail.com>
This commit is contained in:
smarcet 2020-09-10 18:23:51 -03:00
parent bd2c4fe390
commit 2ba84d90eb
3 changed files with 78 additions and 1 deletions

View File

@ -11,6 +11,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
**/
use App\libs\Auth\Models\IGroupSlugs;
use App\Models\Repositories\IStreamChatSSOProfileRepository;
use App\Models\SSO\StreamChat\StreamChatUserProfile;
use App\Services\AbstractService;
@ -97,11 +99,27 @@ final class StreamChatSSOService
* user
* guest
* admin
* help-qa-user
* qa-user
* help-user
*/
$role = 'user';
if($current_user->isSuperAdmin() || $current_user->isAdmin()){
$isAdmin = $current_user->isSuperAdmin() || $current_user->isAdmin();
$isChatQA = $current_user->belongToGroup(IGroupSlugs::ChatQAGroup);
$isChatHelp = $current_user->belongToGroup(IGroupSlugs::ChatHelpGroup);
if($isAdmin){
$role = 'admin';
}
else if($isChatQA && $isChatHelp){
$role = 'help-qa-user';
}
else if($isChatQA){
$role = 'qa-user';
}
else if($isChatHelp){
$role = 'help-user';
}
// register user on stream api
$client->updateUser([
'id' => strval($current_user->getId()),

View File

@ -24,4 +24,6 @@ interface IGroupSlugs
public const OAuth2SystemScopeAdminsGroup = 'oauth2-system-scope-admins';
public const OpenIdServerAdminsGroup = 'openid-server-admins';
public const RawUsersGroup = 'raw-users';
public const ChatQAGroup = 'chat-qa';
public const ChatHelpGroup = 'chat-help';
}

View File

@ -0,0 +1,57 @@
<?php namespace Database\Migrations;
/**
* Copyright 2020 OpenStack Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
use App\libs\Auth\Models\IGroupSlugs;
use Auth\Group;
use Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema as Schema;
use LaravelDoctrine\ORM\Facades\EntityManager;
class Version20200910212216 extends AbstractMigration
{
/**
* @param Schema $schema
*/
public function up(Schema $schema)
{
$group = EntityManager::getRepository(Group::class)->findOneBy(['name' => 'chat qa']);
if(is_null($group)){
$group = new Group();
$group->setName('chat qa');
$group->setSlug(IGroupSlugs::ChatQAGroup);
$group->setDefault(false);
$group->setActive(true);
EntityManager::persist($group);
EntityManager::flush();
}
$group = EntityManager::getRepository(Group::class)->findOneBy(['name' => 'chat help']);
if(is_null($group)){
$group = new Group();
$group->setName('chat help');
$group->setSlug(IGroupSlugs::ChatHelpGroup);
$group->setDefault(false);
$group->setActive(true);
EntityManager::persist($group);
EntityManager::flush();
}
}
/**
* @param Schema $schema
*/
public function down(Schema $schema)
{
}
}