You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			149 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			149 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			TypeScript
		
	
import { joinOpenGroupV2WithUIEvents } from '../session/apis/open_group_api/opengroupV2/JoinOpenGroupV2';
 | 
						|
import {
 | 
						|
  sogsV3AddAdmin,
 | 
						|
  sogsV3RemoveAdmins,
 | 
						|
} from '../session/apis/open_group_api/sogsv3/sogsV3AddRemoveMods';
 | 
						|
import {
 | 
						|
  isOpenGroupV2,
 | 
						|
  openGroupV2CompleteURLRegex,
 | 
						|
} from '../session/apis/open_group_api/utils/OpenGroupUtils';
 | 
						|
import { getConversationController } from '../session/conversations';
 | 
						|
import { PubKey } from '../session/types';
 | 
						|
import { ToastUtils } from '../session/utils';
 | 
						|
 | 
						|
import { updateBanOrUnbanUserModal, updateConfirmModal } from '../state/ducks/modalDialog';
 | 
						|
 | 
						|
export function banUser(userToBan: string, conversationId: string) {
 | 
						|
  let pubKeyToBan: PubKey;
 | 
						|
  try {
 | 
						|
    pubKeyToBan = PubKey.cast(userToBan);
 | 
						|
  } catch (e) {
 | 
						|
    window?.log?.warn(e.message);
 | 
						|
    ToastUtils.pushUserBanFailure();
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if (!isOpenGroupV2(conversationId)) {
 | 
						|
    window.log.warn(`Conversation ${conversationId} is not an open group`);
 | 
						|
    ToastUtils.pushUserBanFailure();
 | 
						|
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  window.inboxStore?.dispatch(
 | 
						|
    updateBanOrUnbanUserModal({ banType: 'ban', conversationId, pubkey: pubKeyToBan.key })
 | 
						|
  );
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * There is no way to unban on an opengroupv1 server.
 | 
						|
 * This function only works for opengroupv2 server
 | 
						|
 */
 | 
						|
export function unbanUser(userToUnBan: string, conversationId: string) {
 | 
						|
  let pubKeyToUnban: PubKey;
 | 
						|
  try {
 | 
						|
    pubKeyToUnban = PubKey.cast(userToUnBan);
 | 
						|
  } catch (e) {
 | 
						|
    window?.log?.warn(e.message);
 | 
						|
    ToastUtils.pushUserBanFailure();
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if (!isOpenGroupV2(conversationId)) {
 | 
						|
    window.log.warn(`Conversation ${conversationId} is not an open group`);
 | 
						|
    ToastUtils.pushUserUnbanFailure();
 | 
						|
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  window.inboxStore?.dispatch(
 | 
						|
    updateBanOrUnbanUserModal({ banType: 'unban', conversationId, pubkey: pubKeyToUnban.key })
 | 
						|
  );
 | 
						|
}
 | 
						|
 | 
						|
export function copyBodyToClipboard(body?: string | null) {
 | 
						|
  window.clipboard.writeText(body);
 | 
						|
 | 
						|
  ToastUtils.pushCopiedToClipBoard();
 | 
						|
}
 | 
						|
 | 
						|
export async function removeSenderFromModerator(sender: string, convoId: string) {
 | 
						|
  try {
 | 
						|
    const pubKeyToRemove = PubKey.cast(sender);
 | 
						|
    const convo = getConversationController().getOrThrow(convoId);
 | 
						|
 | 
						|
    const userDisplayName =
 | 
						|
      getConversationController().get(sender)?.getNicknameOrRealUsernameOrPlaceholder() ||
 | 
						|
      window.i18n('unknown');
 | 
						|
 | 
						|
    const roomInfo = convo.toOpenGroupV2();
 | 
						|
    const res = await sogsV3RemoveAdmins([pubKeyToRemove], roomInfo);
 | 
						|
    if (!res) {
 | 
						|
      window?.log?.warn('failed to remove moderator:', res);
 | 
						|
 | 
						|
      ToastUtils.pushFailedToRemoveFromModerator([userDisplayName]);
 | 
						|
    } else {
 | 
						|
      window?.log?.info(`${pubKeyToRemove.key} removed from moderators...`);
 | 
						|
      ToastUtils.pushUserRemovedFromModerators([userDisplayName]);
 | 
						|
    }
 | 
						|
  } catch (e) {
 | 
						|
    window?.log?.error('Got error while removing moderator:', e);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export async function addSenderAsModerator(sender: string, convoId: string) {
 | 
						|
  try {
 | 
						|
    const pubKeyToAdd = PubKey.cast(sender);
 | 
						|
    const convo = getConversationController().getOrThrow(convoId);
 | 
						|
 | 
						|
    const roomInfo = convo.toOpenGroupV2();
 | 
						|
    const res = await sogsV3AddAdmin([pubKeyToAdd], roomInfo);
 | 
						|
    if (!res) {
 | 
						|
      window?.log?.warn('failed to add moderator:', res);
 | 
						|
 | 
						|
      ToastUtils.pushFailedToAddAsModerator();
 | 
						|
    } else {
 | 
						|
      window?.log?.info(`${pubKeyToAdd.key} added to moderators...`);
 | 
						|
      const userDisplayName =
 | 
						|
        getConversationController().get(sender)?.getNicknameOrRealUsernameOrPlaceholder() ||
 | 
						|
        window.i18n('unknown');
 | 
						|
      ToastUtils.pushUserAddedToModerators(userDisplayName);
 | 
						|
    }
 | 
						|
  } catch (e) {
 | 
						|
    window?.log?.error('Got error while adding moderator:', e);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
const acceptOpenGroupInvitationV2 = (completeUrl: string, roomName?: string) => {
 | 
						|
  const onClickClose = () => {
 | 
						|
    window.inboxStore?.dispatch(updateConfirmModal(null));
 | 
						|
  };
 | 
						|
 | 
						|
  window.inboxStore?.dispatch(
 | 
						|
    updateConfirmModal({
 | 
						|
      title: window.i18n('communityJoin'),
 | 
						|
      i18nMessage: {
 | 
						|
        token: 'communityJoinDescription',
 | 
						|
        args: {
 | 
						|
          community_name: roomName || window.i18n('unknown'),
 | 
						|
        },
 | 
						|
      },
 | 
						|
      onClickOk: async () => {
 | 
						|
        await joinOpenGroupV2WithUIEvents(completeUrl, true, false);
 | 
						|
      },
 | 
						|
 | 
						|
      onClickClose,
 | 
						|
      okText: window.i18n('join'),
 | 
						|
    })
 | 
						|
  );
 | 
						|
  // this function does not throw, and will showToasts if anything happens
 | 
						|
};
 | 
						|
 | 
						|
/**
 | 
						|
 * Accepts a v2 url open group invitation (with pubkey) or just log an error
 | 
						|
 */
 | 
						|
export const acceptOpenGroupInvitation = (completeUrl: string, roomName?: string) => {
 | 
						|
  if (completeUrl.match(openGroupV2CompleteURLRegex)) {
 | 
						|
    acceptOpenGroupInvitationV2(completeUrl, roomName);
 | 
						|
  } else {
 | 
						|
    window?.log?.warn('Invalid opengroup url:', completeUrl);
 | 
						|
  }
 | 
						|
};
 |