aboutsummaryrefslogtreecommitdiff
path: root/juick-notifications/src/main/java/com/juick/components/Notifications.java
blob: 8cf5d5da57003fcdea21e2124bdd3dc6cde9a8fe (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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
/*
 * Juick
 * Copyright (C) 2013, Ugnich Anton
 *
 * 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.components;

import com.google.android.gcm.server.*;
import com.juick.json.MessageSerializer;
import com.juick.xmpp.JID;
import com.juick.xmpp.Message.MessageListener;
import com.juick.xmpp.Stream;
import com.juick.xmpp.StreamComponent;
import com.juick.xmpp.extensions.JuickMessage;
import com.juick.xmpp.utils.XmlUtils;
import com.notnoop.apns.APNS;
import com.notnoop.apns.ApnsService;
import org.apache.commons.lang3.math.NumberUtils;
import org.apache.http.Consts;
import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.apache.http.util.TextUtils;
import org.json.JSONObject;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.core.env.Environment;
import org.springframework.http.HttpMethod;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;

import javax.inject.Inject;
import java.io.IOException;
import java.net.Socket;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 *
 * @author Ugnich Anton
 */
@Component
public class Notifications implements DisposableBean, Stream.StreamListener, MessageListener {

    private static Logger logger = Logger.getLogger(Notifications.class.getName());

    String wns_application_sip;
    String wns_client_secret;
    @Inject
    RestTemplate rest;
    Socket socket;
    Stream xmpp;
    Sender GCMSender;
    ExecutorService service;

    @Inject
    public Notifications(Environment env, ExecutorService service) {
        this.service = service;
        logger.info("component initialized");
        wns_application_sip = env.getProperty("wns_application_sip", "");
        wns_client_secret = env.getProperty("wns_client_secret", "");
        GCMSender = new Sender(env.getProperty("gcm_key", ""), Endpoint.GCM);

        setupXmppComponent(new JID("", env.getProperty("push_jid"), ""), env.getProperty("xmpp_host", "localhost"),
                NumberUtils.toInt(env.getProperty("xmpp_port", ""), 5347), env.getProperty("push_xmpp_password", ""));
        service.submit(() -> xmpp.startParsing());
    }

    @Override
    public void destroy() {
        logger.info("component destroyed");
    }

    public void setupXmppComponent(JID jid, String host, int port, String password) {
        try {
            socket = new Socket(host, port);
            xmpp = new StreamComponent(jid, socket.getInputStream(), socket.getOutputStream(), password);
            xmpp.addChildParser(new JuickMessage());
            xmpp.addListener((Stream.StreamListener) this);
            xmpp.addListener((MessageListener) this);
        } catch (IOException e) {
            logger.log(Level.SEVERE, e.getMessage(), e);
        }
    }

    @Override
    public void onStreamReady() {
        logger.info("XMPP STREAM READY");
    }

    @Override
    public void onStreamFail(Exception e) {logger.log(Level.SEVERE, "XMPP STREAM FAIL", e);}

    @Override
    public void onMessage(com.juick.xmpp.Message msg) {
        JuickMessage jmsg = (JuickMessage)msg.getChild(JuickMessage.XMLNS);
        boolean isPM = jmsg.getMID() == 0;
        boolean isReply = jmsg.getRID() > 0;
        int pmTo = 0;

        /*** ANDROID ***/
        final List<String> regids = new ArrayList<>();
        if (isPM) {
            regids.addAll(rest.exchange(String.format("http://api.juick.com/notifications?type=gcm&uid=%s",
                    jmsg.getUser().getUID()),
                    HttpMethod.GET, null, new ParameterizedTypeReference<List<String>>() {}).getBody());
        } else {
            regids.addAll(rest.exchange(String.format("http://api.juick.com/notifications?type=gcm&uid=%s&mid=%s",
                    jmsg.getUser().getUID(), jmsg.getMID()),
                    HttpMethod.GET, null, new ParameterizedTypeReference<List<String>>() {}).getBody());
        }

        if (!regids.isEmpty()) {
            MessageSerializer messageSerializer = new MessageSerializer();
            String json = messageSerializer.serialize(jmsg).toString();
            logger.info(json);
            Message message = new Message.Builder().addData("message", json).build();
            try {
                MulticastResult result = GCMSender.send(message, regids, 3);
                List<Result> results = result.getResults();
                for (int i = 0; i < results.size(); i++) {
                    logger.info("RES " + i + ": " + results.get(i).toString());
                }
            } catch (IOException e) {
                logger.log(Level.SEVERE, e.getMessage(), e);
            } catch (IllegalArgumentException err) {
                logger.warning("Android: Invalid API Key");
            }
        } else {
            logger.info("GMS: no recipients");
        }

        /*** WinPhone ***/
        final List<String> urls = new ArrayList<>();
        if (isPM) {
            urls.addAll(rest.exchange(String.format("http://api.juick.com/notifications?type=mpns&uid=%s",
                    jmsg.getUser().getUID()),
                    HttpMethod.GET, null, new ParameterizedTypeReference<List<String>>() {}).getBody());
        } else {
            urls.addAll(rest.exchange(String.format("http://api.juick.com/notifications?type=mpns&uid=%s&mid=%s",
                    jmsg.getUser().getUID(), jmsg.getMID()),
                    HttpMethod.GET, null, new ParameterizedTypeReference<List<String>>() {}).getBody());
        }


        if (urls.isEmpty()) {
            logger.info("WNS: no recipients");
        } else {
            try {
                String wnsToken = getWnsAccessToken();
                String text1 = "@" + jmsg.getUser().getUName();
                if (!jmsg.Tags.isEmpty()) {
                    text1 += ":" + XmlUtils.escape(jmsg.getTagsString());
                }
                String text2 = XmlUtils.escape(jmsg.getText());
                String xml = "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
                        + "<toast>"
                        + "<visual>"
                        + "<binding template=\"ToastImageAndText02\">"
                        + "<image id=\"1\" src=\"http://i.juick.com/as/" + jmsg.getUser().getUID() + ".png\" />"
                        + "<text id=\"1\">" + text1 + "</text>"
                        + "<text id=\"2\">" + text2 + "</text>"
                        + "</binding>"
                        + "</visual>"
                        + "<commands>"
                        + "<command arguments=\"?mid=" + jmsg.getMID() + "\" />"
                        + "</commands>"
                        + "</toast>";
                logger.fine(xml);
                for (String url : urls) {
                    logger.info("WNS: " + url);
                    sendWNS(wnsToken, url, xml);
                }
            } catch (IOException | IllegalStateException e) {
                logger.log(Level.SEVERE, "WNS: ", e);
            }
        }

        /*** iOS ***/
        final List<String> tokens = new ArrayList<>();
        if (isPM) {
            tokens.addAll(rest.exchange(String.format("http://api.juick.com/notifications?type=apns&uid=%s",
                    jmsg.getUser().getUID()),
                    HttpMethod.GET, null, new ParameterizedTypeReference<List<String>>() {}).getBody());
        } else {
            tokens.addAll(rest.exchange(String.format("http://api.juick.com/notifications?type=apns&uid=%s&mid=%s",
                    jmsg.getUser().getUID(), jmsg.getMID()),
                    HttpMethod.GET, null, new ParameterizedTypeReference<List<String>>() {}).getBody());
        }
        if (!tokens.isEmpty()) {
            ApnsService service = APNS.newService().withCert("/etc/juick/ios.p12", "juick")
                    .withSandboxDestination().build();
            for (String token : tokens) {
                String payload = APNS.newPayload().alertTitle("@" + jmsg.getUser().getUName()).alertBody(jmsg.getText()).build();
                logger.info("APNS: " + token);
                service.push(token, payload);
            }
        } else {
            logger.info("APNS: no recipients");
        }
    }

    String getWnsAccessToken() throws IOException, IllegalStateException {
        if(TextUtils.isEmpty(wns_application_sip)) {
            throw new IllegalStateException("'wns_application_sip' is not initialized");
        }
        if(TextUtils.isEmpty(wns_client_secret)) {
            throw new IllegalStateException("'wns_client_secret' is not initialized");
        }
        HttpClient client = HttpClientBuilder.create().build();
        String url = "https://login.live.com/accesstoken.srf";
        List<NameValuePair> formParams = new ArrayList<>();
        formParams.add(new BasicNameValuePair("grant_type", "client_credentials"));
        formParams.add(new BasicNameValuePair("client_id", wns_application_sip));
        formParams.add(new BasicNameValuePair("client_secret", wns_client_secret));
        formParams.add(new BasicNameValuePair("scope", "notify.windows.com"));
        UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formParams, Consts.UTF_8);
        HttpPost httppost = new HttpPost(url);
        httppost.setEntity(entity);
        HttpResponse response = client.execute(httppost);
        int statusCode = response.getStatusLine().getStatusCode();
        String responseContent = EntityUtils.toString(response.getEntity(), Consts.UTF_8);
        JSONObject json = new JSONObject(responseContent);
        if(statusCode != 200) {
            throw new IOException(json.opt("error") + ": " + json.opt("error_description"));
        }
        String tokenType = (String)json.get("token_type");
        if(tokenType.length() >= 1) {
            tokenType = Character.toUpperCase(tokenType.charAt(0)) + tokenType.substring(1);
        }
        return tokenType + " " + json.get("access_token");
    }

    void sendWNS(String wnsToken, String url, String xml) throws IOException {
        HttpClient client = HttpClientBuilder.create().build();
        StringEntity entity = new StringEntity(xml, Consts.UTF_8);
        HttpPost httpPost = new HttpPost(url);
        httpPost.setHeader("Content-Type", "text/xml");
        httpPost.setHeader("Authorization", wnsToken);
        httpPost.setHeader("X-WNS-Type", "wns/toast");
        httpPost.setEntity(entity);
        HttpResponse response = client.execute(httpPost);
        int statusCode = response.getStatusLine().getStatusCode();
        if(statusCode != 200) {
            String headersContent = stringifyWnsHttpHeaders(response.getAllHeaders());
            throw new IOException(headersContent);
        }
    }

    static String stringifyWnsHttpHeaders(Header[] allHeaders) {
        String[] wnsHeaders = Arrays.stream(allHeaders)
                .filter(x -> x.getName().startsWith("X-WNS-") || x.getName().startsWith("WWW-"))
                .map(x -> x.getName() + ": " + x.getValue())
                .toArray(String[]::new);
        return String.join("\n", wnsHeaders);
    }
}