aboutsummaryrefslogtreecommitdiff
path: root/juick-core/src/main/java/com/juick/formatters/PlainTextFormatter.java
blob: d75365e0444e11f7034e0a90e5cdd2120bc25efe (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
package com.juick.formatters;

import org.apache.commons.lang3.StringUtils;
import org.ocpsoft.prettytime.PrettyTime;

import java.util.Locale;

/**
 * Created by vitalyster on 12.10.2016.
 */
public class PlainTextFormatter {
    static PrettyTime pt = new PrettyTime(new Locale("ru"));

    public static String formatPost(com.juick.Message jmsg) {
        StringBuilder sb = new StringBuilder();
        boolean isReply = jmsg.getRid() > 0;
        String title = isReply ? "Reply by @"  : "@";
        String subtitle = isReply ? jmsg.getReplyQuote() : jmsg.getTagsString();
        sb.append(title).append(jmsg.getUser().getName()).append(":\n")
                .append(subtitle).append("\n").append(jmsg.getText()).append("\n");
        if (jmsg.getPhoto() != null) {
            sb.append(jmsg.getAttachmentURL());
        }
        return sb.toString();
    }

    public static String formatPostSummary(com.juick.Message m) {
        int cropLength = 384;
        String timeAgo = pt.format(m.getDate());
        String repliesCount = m.getReplies() == 1 ? "; 1 reply" : m.getReplies() == 0 ? ""
                : String.format("; %d replies", m.getReplies());
        String txt = m.getText().length() >= cropLength ?
                StringUtils.substring(m.getText(), 0, cropLength) + " [...]" : m.getText();
        return String.format("@%s:%s\n%s\n#%d (%s%s) http://juick.com/%d",
                m.getUser().getName(), m.getTagsString(), txt, m.getMid(), timeAgo, repliesCount, m.getMid());
    }

    public static String formatUrl(com.juick.Message jmsg) {
        if (jmsg.getRid() > 0) {
            return String.format("https://juick.com/%d#%d", jmsg.getMid(), jmsg.getRid());
        }
        return  "https://juick.com/" + jmsg.getMid();
    }
}