aboutsummaryrefslogtreecommitdiff
path: root/juick-api/src/main/java/com/juick/api/controllers/Notifications.java
blob: c08689aa98891fcea2a8fa60d0fb65087dfccd01 (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
180
181
182
183
184
185
186
/*
 * 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.Message;
import com.juick.Status;
import com.juick.DeviceRegistration;
import com.juick.User;
import com.juick.server.helpers.AnonymousUser;
import com.juick.server.util.HttpBadRequestException;
import com.juick.server.util.HttpForbiddenException;
import com.juick.service.MessagesService;
import com.juick.service.PushQueriesService;
import com.juick.service.SubscriptionService;
import com.juick.server.util.UserUtils;
import com.juick.service.UserService;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;

import javax.inject.Inject;
import java.io.IOException;
import java.security.Principal;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;

/**
 * Created by vitalyster on 24.10.2016.
 */
@RestController
public class Notifications {

    @Inject
    private PushQueriesService pushQueriesService;
    @Inject
    private MessagesService messagesService;
    @Inject
    private SubscriptionService subscriptionService;
    @Inject
    private UserService userService;


    private User collectTokens(Integer uid) {
        User user = userService.getUserByUID(uid).orElse(AnonymousUser.INSTANCE);
        pushQueriesService.getGCMRegID(uid).forEach(t -> user.getDevices().add(new DeviceRegistration("gcm", t)));
        pushQueriesService.getAPNSToken(uid).forEach(t -> user.getDevices().add(new DeviceRegistration("apns", t)));
        pushQueriesService.getMPNSURL(uid).forEach(t -> user.getDevices().add(new DeviceRegistration("mpns", t)));
        return user;
    }

    @RequestMapping(value = "/notifications", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public ResponseEntity<List<User>> doGet(
            @RequestParam(required = false, defaultValue = "0") int uid,
            @RequestParam(required = false, defaultValue = "0") int mid,
            @RequestParam(required = false, defaultValue = "0") int rid) {
        User visitor = UserUtils.getCurrentUser();
        if ((visitor.getUid() == 0) || !(visitor.getName().equals("juick"))) {
            throw new HttpForbiddenException();
        }
        if (uid > 0 && mid == 0) {
            // PM
            return ResponseEntity.ok(Collections.singletonList(collectTokens(uid)));
        } else {
            if (mid > 0) {
                Message msg = messagesService.getMessage(mid);
                if (msg != null) {
                    List<User> users;
                    if (rid > 0) {
                        Message reply = messagesService.getReply(mid, rid);
                        users = subscriptionService.getUsersSubscribedToComments(mid, reply.getUser().getUid());
                    } else {
                        users = subscriptionService.getSubscribedUsers(msg.getUser().getUid(), mid);
                    }

                    return ResponseEntity.ok(users.stream().map(User::getUid)
                            .map(this::collectTokens).collect(Collectors.toList()));
                }
            }
        }
        throw new HttpBadRequestException();
    }

    @RequestMapping(value = "/notifications", method = RequestMethod.DELETE, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public Status doDelete(
            @RequestBody List<DeviceRegistration> list) throws IOException {
        User visitor = UserUtils.getCurrentUser();
        // FIXME: it is possible to delete other user's tokens
        if ((visitor.getUid() == 0) || !(visitor.getName().equals("juick"))) {
            throw new HttpForbiddenException();
        }
        list.forEach(t -> {
            switch (t.getType()) {
                case "gcm":
                    pushQueriesService.deleteGCMToken(t.getToken());
                    break;
                case "apns":
                    pushQueriesService.deleteAPNSToken(t.getToken());
                    break;
                case "mpns":
                    pushQueriesService.deleteMPNSToken(t.getToken());
                    break;
                default:
                    throw new HttpBadRequestException();
            }
        });

        return Status.OK;
    }

    @RequestMapping(value = "/notifications", method = RequestMethod.PUT, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public Status doPut(
            @RequestBody List<DeviceRegistration> list) throws IOException {
        User visitor = UserUtils.getCurrentUser();
        if (visitor.getUid() == 0) {
            throw new HttpForbiddenException();
        }
        list.forEach(t -> {
            switch (t.getType()) {
                case "gcm":
                    pushQueriesService.addGCMToken(visitor.getUid(), t.getToken());
                    break;
                case "apns":
                    pushQueriesService.addAPNSToken(visitor.getUid(), t.getToken());
                    break;
                case "mpns":
                    pushQueriesService.addMPNSToken(visitor.getUid(), t.getToken());
                    break;
                default:
                    throw new HttpBadRequestException();
            }
        });
        return Status.OK;
    }

    @Deprecated
    @RequestMapping(value = "/android/register", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public Status doAndroidRegister(
            @RequestParam(name = "regid") String regId) {
        User visitor = UserUtils.getCurrentUser();
        if (visitor.getUid() == 0) {
            throw new HttpForbiddenException();
        }
        pushQueriesService.addGCMToken(visitor.getUid(), regId);
        return Status.OK;
    }

    @Deprecated
    @RequestMapping(value = "/android/unregister", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public Status doAndroidUnRegister(@RequestParam(name = "regid") String regId) {
        pushQueriesService.deleteGCMToken(regId);
        return Status.OK;
    }

    @Deprecated
    @RequestMapping(value = "/winphone/register", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public Status doWinphoneRegister(
            Principal principal,
            @RequestParam(name = "url") String regId) {
        User visitor = UserUtils.getCurrentUser();
        pushQueriesService.addMPNSToken(visitor.getUid(), regId);
        return Status.OK;
    }

    @Deprecated
    @RequestMapping(value = "/winphone/unregister", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public Status doWinphoneUnRegister(@RequestParam(name = "url") String regId) {
        pushQueriesService.deleteMPNSToken(regId);
        return Status.OK;
    }
}