File size: 2,280 Bytes
4327358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import { Body, Controller, Get, Post } from '@nestjs/common';
import { ApiOperation, ApiSecurity, ApiTags } from '@nestjs/swagger';
import {
  SessionApiParam,
  WorkingSessionParam,
} from '@waha/nestjs/params/SessionApiParam';
import { NewMessageIDResponse } from '@waha/structures/chatting.dto';

import { SessionManager } from '../core/abc/manager.abc';
import { WhatsappSession } from '../core/abc/session.abc';
import {
  DeleteStatusRequest,
  ImageStatus,
  TextStatus,
  VideoStatus,
  VoiceStatus,
} from '../structures/status.dto';

@ApiSecurity('api_key')
@Controller('api/:session/status')
@ApiTags('🟢 Status')
class StatusController {
  constructor(private manager: SessionManager) {}

  @Post('text')
  @SessionApiParam
  @ApiOperation({ summary: 'Send text status' })
  sendTextStatus(
    @WorkingSessionParam session: WhatsappSession,
    @Body() status: TextStatus,
  ) {
    return session.sendTextStatus(status);
  }

  @Post('image')
  @SessionApiParam
  @ApiOperation({ summary: 'Send image status' })
  sendImageStatus(
    @WorkingSessionParam session: WhatsappSession,
    @Body() status: ImageStatus,
  ) {
    return session.sendImageStatus(status);
  }

  @Post('voice')
  @SessionApiParam
  @ApiOperation({ summary: 'Send voice status' })
  sendVoiceStatus(
    @WorkingSessionParam session: WhatsappSession,
    @Body() status: VoiceStatus,
  ) {
    return session.sendVoiceStatus(status);
  }

  @Post('video')
  @SessionApiParam
  @ApiOperation({ summary: 'Send video status' })
  sendVideoStatus(
    @WorkingSessionParam session: WhatsappSession,
    @Body() status: VideoStatus,
  ) {
    return session.sendVideoStatus(status);
  }

  @Post('delete')
  @SessionApiParam
  @ApiOperation({ summary: 'DELETE sent status' })
  deleteStatus(
    @WorkingSessionParam session: WhatsappSession,
    @Body() status: DeleteStatusRequest,
  ) {
    return session.deleteStatus(status);
  }

  @Get('new-message-id')
  @SessionApiParam
  @ApiOperation({
    summary: 'Generate message ID you can use to batch contacts',
  })
  async getNewMessageId(
    @WorkingSessionParam session: WhatsappSession,
  ): Promise<NewMessageIDResponse> {
    const id = await session.generateNewMessageId();
    return { id: id };
  }
}

export { StatusController };