aboutsummaryrefslogtreecommitdiff
path: root/juick-api/src/main/java/com/juick/api/controllers/TelegramWebhook.java
blob: dd4ebc0632c4ae7dc628c0a904c00c783c742568 (plain) (blame)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
 * Copyright (C) 2008-2017, Juick
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.juick.api.controllers;

import com.juick.User;
import com.juick.api.ApiServer;
import com.juick.api.TelegramBotManager;
import com.juick.server.util.HttpUtils;
import com.juick.service.TelegramService;
import com.juick.service.UserService;
import com.pengrad.telegrambot.BotUtils;
import com.pengrad.telegrambot.model.Message;
import com.pengrad.telegrambot.model.MessageEntity;
import com.pengrad.telegrambot.model.PhotoSize;
import com.pengrad.telegrambot.model.Update;
import com.pengrad.telegrambot.request.GetFile;
import com.pengrad.telegrambot.response.GetFileResponse;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.util.UriComponents;
import org.springframework.web.util.UriComponentsBuilder;
import springfox.documentation.annotations.ApiIgnore;

import javax.inject.Inject;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.Optional;

/**
 * Created by vt on 24/11/2016.
 */
@ApiIgnore
@RestController
public class TelegramWebhook {
    private static Logger logger = LoggerFactory.getLogger(TelegramWebhook.class);
    @Inject
    private UserService usersService;
    @Inject
    private TelegramService telegramService;
    @Inject
    private TelegramBotManager telegramBotManager;
    @Inject
    private ApiServer apiServer;
    @Value("${upload_tmp_dir:/var/www/juick.com/i/tmp/}")
    private String tmpDir;


    @RequestMapping(value = "/tlgmbtwbhk", method = RequestMethod.POST)
    @ResponseStatus(value = HttpStatus.OK)
    public void processUpdate(InputStream body) throws Exception {
        String data = IOUtils.toString(body, StandardCharsets.UTF_8);
        logger.info("got telegram msg: {}", data);
        Update update = BotUtils.parseUpdate(data);
        Message message = update.message();
        if (update.message() == null) {
            message = update.editedMessage();
            if (message == null) {
                logger.error("error parsing telegram update: {}", update);
                return;
            }
        }
        User user_from = usersService.getUserByUID(telegramService.getUser(message.chat().id())).orElse(new User());
        logger.info("Found juick user {}", user_from.getUid());

        List<Long> chats = telegramService.getChats();
        String username = message.from().username();
        if (username == null) {
            username = message.from().firstName();
        }
        if (!chats.contains(message.chat().id())) {
            telegramService.addChat(message.chat().id());
            logger.info("added chat with {}", username);
            telegramService.createTelegramUser(message.from().id(), username);
            telegramBotManager.telegramSignupNotify(message.from().id().longValue(), usersService.getSignUpHashByTelegramID(message.from().id().longValue(), username));
        } else {
            if (user_from.getUid() == 0) {
                telegramBotManager.telegramSignupNotify(message.from().id().longValue(), usersService.getSignUpHashByTelegramID(message.from().id().longValue(), username));
            } else {
                String attachment = StringUtils.EMPTY;
                if (message.photo() != null) {
                    String fileId = Arrays.stream(message.photo()).max(Comparator.comparingInt(PhotoSize::fileSize))
                            .orElse(new PhotoSize()).fileId();
                    if (StringUtils.isNotEmpty(fileId)) {
                        GetFile request = new GetFile(fileId);
                        GetFileResponse response = telegramBotManager.getBot().execute(request);
                        logger.info("got file {}", response.file());
                        URL fileURL = new URL(telegramBotManager.getBot().getFullFilePath(response.file()));
                        attachment = HttpUtils.downloadImage(fileURL, tmpDir);
                        logger.info("received {}", attachment);
                    }
                }
                String text = message.text();
                if (StringUtils.isBlank(text)) {
                    text = message.caption();
                }
                if (StringUtils.isBlank(text)) {
                    text = StringUtils.EMPTY;
                }
                if (StringUtils.isNotEmpty(text) || StringUtils.isNotEmpty(attachment)) {
                    if (text.equalsIgnoreCase("/login") || text.equalsIgnoreCase("/start")) {
                        String msgUrl = "http://juick.com/login?" + usersService.getHashByUID(user_from.getUid());
                        String msg = String.format("Hi, %s!\nTap to [log in](%s)", user_from.getName(), msgUrl);
                        telegramBotManager.telegramNotify(message.from().id().longValue(), msg);
                    } else {
                        Message replyMessage = message.replyToMessage();
                        if (replyMessage != null) {
                            if (replyMessage.entities() != null) {
                                Optional<MessageEntity> juickLink = Arrays.stream(replyMessage.entities())
                                        .filter(this::isJuickLink)
                                        .findFirst();
                                if (juickLink.isPresent()) {
                                    if (StringUtils.isNotEmpty(juickLink.get().url())) {
                                        UriComponents uriComponents = UriComponentsBuilder.fromUriString(
                                                juickLink.get().url()).build();
                                        String path = uriComponents.getPath();
                                        if (StringUtils.isNotEmpty(path) && path.length() > 1) {
                                            int mid = Integer.valueOf(path.substring(1));
                                            String prefix = String.format("#%d ", mid);
                                            if (StringUtils.isNotEmpty(uriComponents.getFragment())) {
                                                int rid = Integer.valueOf(uriComponents.getFragment());
                                                prefix = String.format("#%d/%d ", mid, rid);
                                            }
                                            apiServer.processMessage(user_from, prefix + text, attachment);
                                            telegramBotManager.telegramNotify(message.from().id().longValue(), "Reply sent");
                                        } else {
                                            logger.warn("invalid path: {}", path);
                                        }
                                    } else {
                                        logger.warn("invalid entity: {}", juickLink);
                                    }
                                } else {
                                    telegramBotManager.telegramNotify(message.from().id().longValue(),
                                            "Can not reply to this message", replyMessage.messageId());
                                }
                            } else {
                                telegramBotManager.telegramNotify(message.from().id().longValue(),
                                        "Can not reply to this message", replyMessage.messageId());
                            }
                        } else {
                            apiServer.processMessage(user_from, text, attachment);
                            telegramBotManager.telegramNotify(message.from().id().longValue(), "Message sent");
                        }
                    }
                }
            }
        }
    }
    boolean isJuickLink(MessageEntity e) {
        return e.offset() == 0 && e.type().equals(MessageEntity.Type.text_link) && e.length() == 2;
    }
}