chat/client/src/main/java/org/apidesign/html/chatserver/client/ChatClient.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 09 Jan 2015 06:10:00 +0100
changeset 227 fd26342cf23d
parent 83 1b1d3f559196
permissions -rw-r--r--
Switching to HTML/Java@1.1 and bck2brwsr@0.12
jtulach@5
     1
/**
jtulach@5
     2
 * The MIT License (MIT)
jtulach@5
     3
 *
jtulach@5
     4
 * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@5
     5
 *
jtulach@5
     6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
jtulach@5
     7
 * of this software and associated documentation files (the "Software"), to deal
jtulach@5
     8
 * in the Software without restriction, including without limitation the rights
jtulach@5
     9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jtulach@5
    10
 * copies of the Software, and to permit persons to whom the Software is
jtulach@5
    11
 * furnished to do so, subject to the following conditions:
jtulach@5
    12
 *
jtulach@5
    13
 * The above copyright notice and this permission notice shall be included in
jtulach@5
    14
 * all copies or substantial portions of the Software.
jtulach@5
    15
 *
jtulach@5
    16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jtulach@5
    17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jtulach@5
    18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jtulach@5
    19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jtulach@5
    20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jtulach@5
    21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jtulach@5
    22
 * THE SOFTWARE.
jtulach@5
    23
 */
jtulach@13
    24
package org.apidesign.html.chatserver.client;
jtulach@5
    25
jtulach@5
    26
import net.java.html.json.ComputedProperty;
jtulach@5
    27
import net.java.html.json.Function;
jtulach@5
    28
import net.java.html.json.Model;
jtulach@9
    29
import net.java.html.json.OnReceive;
jtulach@5
    30
import net.java.html.json.Property;
jtulach@13
    31
import org.apidesign.html.chatserver.model.Message;
jtulach@13
    32
import org.apidesign.html.chatserver.model.Query;
jtulach@5
    33
jtulach@5
    34
/**
jtulach@5
    35
 *
jtulach@5
    36
 * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@5
    37
 */
jaroslav@227
    38
@Model(className = "ChatModel", targetId = "", properties = {
jtulach@5
    39
    @Property(name = "user", type = String.class),
jtulach@11
    40
    @Property(name = "comment", type = String.class),
jtulach@5
    41
    @Property(name = "msgs", type = Message.class, array = true)
jtulach@5
    42
})
jtulach@5
    43
class ChatClient {
jtulach@5
    44
    @ComputedProperty
jtulach@11
    45
    static boolean sendEnabled(String user, String comment) {
jtulach@11
    46
        boolean res = user != null && comment != null && !user.isEmpty() && !comment.isEmpty();
jtulach@5
    47
        return res;
jtulach@5
    48
    }
jtulach@5
    49
    
jtulach@5
    50
    @Function
jtulach@5
    51
    static void submit(ChatModel m) {
jtulach@11
    52
        if (!sendEnabled(m.getUser(), m.getComment())) {
jtulach@5
    53
            return;
jtulach@5
    54
        }
jtulach@57
    55
        Message msg = new Message();
jtulach@15
    56
        msg.setUser(m.getUser());
jtulach@15
    57
        msg.setComment(m.getComment());
jtulach@15
    58
        m.postComment(msg);
jtulach@11
    59
    }
jtulach@11
    60
    
jtulach@15
    61
    @OnReceive(url = "/chat", method = "POST", data = Message.class)
jtulach@11
    62
    static void postComment(ChatModel m, Message addedMessage) {
jtulach@11
    63
        if (addedMessage.getComment().equals(m.getComment())) {
jtulach@11
    64
            m.setComment("");
jtulach@11
    65
        }
jtulach@5
    66
    }
jtulach@5
    67
    
jtulach@9
    68
    @OnReceive(url = "/chat?since=0")
jtulach@9
    69
    static void initialRead(ChatModel m, Query q) {
jtulach@9
    70
        m.getMsgs().clear();
jtulach@9
    71
        m.getMsgs().addAll(q.getMessages());
jtulach@11
    72
        moreMessages(m);
jtulach@11
    73
    }
jtulach@11
    74
    
jtulach@11
    75
    @OnReceive(url = "/chat?since={since}")
jtulach@11
    76
    static void updateMsgs(ChatModel m, Query q) {
jtulach@11
    77
        m.getMsgs().addAll(q.getMessages());
jtulach@11
    78
        moreMessages(m);
jtulach@11
    79
    }
jtulach@11
    80
    
jtulach@11
    81
    private static void moreMessages(ChatModel m) {
jtulach@13
    82
        long now = 0;
jtulach@13
    83
        for (Message msg : m.getMsgs()) {
jtulach@13
    84
            if (now < msg.getSince()) {
jtulach@13
    85
                now = msg.getSince();
jtulach@13
    86
            }
jtulach@13
    87
        }
jtulach@13
    88
        m.updateMsgs("" + (now + 1));
jtulach@9
    89
    }
jtulach@5
    90
}