File size: 2,550 Bytes
b62a170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { Body, Controller, Get, Post, Query } from '@nestjs/common';
import { ApiOperation, ApiSecurity, ApiTags } from '@nestjs/swagger';

import { SessionManager } from '../core/abc/manager.abc';
import { SessionQuery } from '../structures/base.dto';
import {
  CheckNumberStatusQuery,
  WANumberExistResult,
} from '../structures/chatting.dto';
import { ContactQuery, ContactRequest } from '../structures/contacts.dto';

@ApiSecurity('api_key')
@Controller('api/contacts')
@ApiTags('contacts')
export class ContactsController {
  constructor(private manager: SessionManager) {}

  @Get('/')
  @ApiOperation({
    summary:
      'Get contact basic info. The method always return result, even if the phone number is not registered in WhatsApp. For that - use /check-exists endpoint below.',
  })
  get(@Query() query: ContactQuery) {
    const whatsapp = this.manager.getSession(query.session);
    return whatsapp.getContact(query);
  }

  @Get('/all')
  @ApiOperation({ summary: 'Get all contacts' })
  getAll(@Query() query: SessionQuery) {
    const whatsapp = this.manager.getSession(query.session);
    return whatsapp.getContacts();
  }

  @Get('/check-exists')
  @ApiOperation({ summary: 'Check phone number is registered in WhatsApp.' })
  async checkExists(
    @Query() request: CheckNumberStatusQuery,
  ): Promise<WANumberExistResult> {
    const whatsapp = this.manager.getSession(request.session);
    return whatsapp.checkNumberStatus(request);
  }

  @Get('/about')
  @ApiOperation({
    summary:
      'Gets the Contact\'s current "about" info. Returns null if you don\'t have permission to read their status.',
  })
  getAbout(@Query() query: ContactQuery) {
    const whatsapp = this.manager.getSession(query.session);
    return whatsapp.getContactAbout(query);
  }

  @Get('/profile-picture')
  @ApiOperation({
    summary:
      "Returns the contact's profile picture URL, if privacy settings allow it.",
  })
  getProfilePicture(@Query() query: ContactQuery) {
    const whatsapp = this.manager.getSession(query.session);
    return whatsapp.getContactProfilePicture(query);
  }

  @Post('/block')
  @ApiOperation({ summary: 'Block contact' })
  block(@Body() request: ContactRequest) {
    const whatsapp = this.manager.getSession(request.session);
    return whatsapp.blockContact(request);
  }

  @Post('/unblock')
  @ApiOperation({ summary: 'Unblock contact' })
  unblock(@Body() request: ContactRequest) {
    const whatsapp = this.manager.getSession(request.session);
    return whatsapp.unblockContact(request);
  }
}