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.
		
		
		
		
		
			
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
| import { DataMessage } from './DataMessage';
 | |
| import { SignalService } from '../../../../../protobuf';
 | |
| import { MessageParams } from '../../Message';
 | |
| 
 | |
| interface GroupInvitationMessageParams extends MessageParams {
 | |
|   serverAddress: string;
 | |
|   channelId: number;
 | |
|   serverName: string;
 | |
| }
 | |
| 
 | |
| export class GroupInvitationMessage extends DataMessage {
 | |
|   private readonly serverAddress: string;
 | |
|   private readonly channelId: number;
 | |
|   private readonly serverName: string;
 | |
| 
 | |
|   constructor(params: GroupInvitationMessageParams) {
 | |
|     super({ timestamp: params.timestamp, identifier: params.identifier });
 | |
|     this.serverAddress = params.serverAddress;
 | |
|     this.channelId = params.channelId;
 | |
|     this.serverName = params.serverName;
 | |
|   }
 | |
| 
 | |
|   public ttl(): number {
 | |
|     return this.getDefaultTTL();
 | |
|   }
 | |
| 
 | |
|   protected dataProto(): SignalService.DataMessage {
 | |
|     const groupInvitation = new SignalService.DataMessage.GroupInvitation({
 | |
|       serverAddress: this.serverAddress,
 | |
|       channelId: this.channelId,
 | |
|       serverName: this.serverName,
 | |
|     });
 | |
| 
 | |
|     return new SignalService.DataMessage({
 | |
|       groupInvitation,
 | |
|     });
 | |
|   }
 | |
| }
 |