/*
* Copyright (C) 2008-2024, 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
" : ">"; var suffix = isHtml ? "" : "\n"; if (quote != null) { if (quote.length() > 50) { result = prefix + StringUtils.abbreviate(quote, "…", 47).replace('\n', ' ') + suffix; } else if (!quote.isEmpty()) { result = prefix + quote.replace('\n', ' ') + suffix; } } return result; } private final static String urlWhiteSpacePrefix = "((?<=\\s)|(?<=\\A))"; private final static String urlRegex = "((?:(?:ht|f)tps?://(?:www\\.)?([^\\s()<>/?#]+)([^\\s()<>«»]*)?))"; private final static String urlWithWhitespacesRegex = urlWhiteSpacePrefix + urlRegex; private final static Pattern regexLinks2 = Pattern.compile("((?<=\\s)|(?<=\\A))([\\[{])((?:ht|f)tps?://(?:www\\.)?([^/\\s\")!>]*)/?(?:[^]}](?]+)\\*((?=\\s)|(?=\\Z)|(?=\\p{Punct}))"; private final static String italicRegex = "((?<=\\s)|(?<=\\A))/([^\\/\\n<>]+)/((?=\\s)|(?=\\Z)|(?=\\p{Punct}))"; private final static String underlineRegex = "((?<=\\s)|(?<=\\A))_([^\\_\\n<>]+)_((?=\\s)|(?=\\Z)|(?=\\p{Punct}))"; private final static String citateRegex = "(?:(?<=\\n)|(?<=\\A))(?:>|>) *(.*)?(\\r?\\n|(?=\\Z))"; public static List
" + msg + ""; } public static String formatMessage(String msg) { return formatMessage(msg, false); } public static String formatMessage(String msg, boolean compatibleWithDurov) { msg = msg.replaceAll("&", "&"); msg = msg.replaceAll("<", "<"); msg = msg.replaceAll(">", ">"); // -- // — if (!compatibleWithDurov) { msg = msg.replaceAll("((?<=\\s)|(?<=\\A))\\-\\-?((?=\\s)|(?=\\Z))", "$1—$2"); } // http://juick.com/last?page=2 // juick.com msg = msg.replaceAll(urlWithWhitespacesRegex, "$1$3"); // [link text][http://juick.com/last?page=2] // [link text](http://juick.com/last?page=2) // www.juick.com
$1"); msg = msg.replaceAll("
", "\n"); if (!compatibleWithDurov) { msg = msg.replaceAll("\n", "
\n"); } return msg; } public static String formatHtml(Message jmsg) { StringBuilder sb = new StringBuilder(); boolean isReply = jmsg.getRid() > 0; String title = isReply ? "Reply by @" : "@"; String subtitle = isReply ? "" + jmsg.getReplyQuote() + "" : "" + getTagsString(jmsg) + ""; boolean isCode = jmsg.getTags().stream().anyMatch(t -> t.getName().equals("code")); sb.append(title).append(jmsg.getUser().getName()).append(":") .append(subtitle).append("
") .append(isCode ? formatMessageCode(StringUtils.defaultString(jmsg.getText())) : formatMessage(StringUtils.defaultString(jmsg.getText()))).append("
"); if (StringUtils.isNotEmpty(jmsg.getAttachmentType())) { // FIXME: attachment does not serialized to xml if (jmsg.getAttachment() == null) { if (jmsg.getRid() > 0) { sb.append(String.format("", jmsg.getMid(), jmsg.getRid(), jmsg.getAttachmentType())); } else { sb.append(String.format("", jmsg.getMid(), jmsg.getAttachmentType())); } } else { sb.append(""); } } return sb.toString(); } public static String getMessageHashTags(final Message jmsg) { StringBuilder hashtags = new StringBuilder(); for (Tag tag : jmsg.getTags()) { hashtags.append("#").append(tag).append(" "); } return hashtags.toString(); } public static String getMarkdownTags(final Message jmsg) { return jmsg.getTags().stream().map(t -> String.format("[%s](http://juick.com/tag/%s)", t.getName(), percentEncode(t.getName()))) .collect(Collectors.joining(", ")); } public static String getUserHtmlLink(final User user, final String webDomain) { if (user.getUri().toASCIIString().length() > 0) { return String.format("%s", user.getUri(), user.getName()); } else { return String.format("%s", webDomain, user.getName(), user.getName()); } } // TODO: check if it is really needed public static String percentEncode(final String s) { return URLEncoder.encode(s, StandardCharsets.UTF_8).replace("+", "%20") .replace("*", "%2A").replace("%7E", "~"); } public static String formatMarkdownText(final Message msg) { return StringUtils.defaultString(msg.getText()) .replaceAll(replyNumberRegex, String.format("$1[/$2](https://juick.com/m/%d#$2)$3", msg.getMid())); } public static String attachmentUrl(final Message jmsg) { if (StringUtils.isEmpty(jmsg.getAttachmentType())) { return StringUtils.EMPTY; } // FIXME: attachment does not serialized to xml if (jmsg.getAttachment() == null) { if (jmsg.getRid() > 0) { return String.format("http://i.juick.com/photos-1024/%d-%d.%s", jmsg.getMid(), jmsg.getRid(), jmsg.getAttachmentType()); } else { return String.format("http://i.juick.com/photos-1024/%d.%s", jmsg.getMid(), jmsg.getAttachmentType()); } } else { return jmsg.getAttachment().getMedium().getUrl(); } } public static boolean replyStartsWithQuote(Message msg) { return msg.getRid() > 0 && StringUtils.defaultString(msg.getText()).startsWith(">"); } public static SetparseTags(String strTags) { return StringUtils.isEmpty(strTags) ? Collections.emptySet() : Arrays.stream(strTags.split(" ")).map(Tag::new) .collect(Collectors.toCollection(LinkedHashSet::new)); } public static String getTagsString(Message msg) { StringBuilder builder = new StringBuilder(); Set tags = msg.getTags(); if (!tags.isEmpty()) { for (Tag Tag : tags) builder.append(" *").append(Tag.getName()); if (msg.isFriendsOnly()) builder.append(" *friends"); if (msg.ReadOnly) builder.append(" *readonly"); } return builder.toString(); } public static boolean isPM(Message message) { return message.getMid() == 0; } public static boolean isReply(Message message) { return message.getRid() > 0; } public static String stripNonSafeUrls(String input) { // strip login urls try { Matcher urlMatcher = Pattern.compile(MessageUtils.urlRegex).matcher(input); while (urlMatcher.find()) { URI uri = URI.create(urlMatcher.group(0)); if (uri.getHost().equals("juick.com")) { UriComponentsBuilder uriComponentsBuilder = UriComponentsBuilder.fromUri(uri); uriComponentsBuilder.replaceQueryParam("hash"); input = input.replace(urlMatcher.group(0), uriComponentsBuilder.build().toUriString()); } } } catch (IllegalArgumentException | NullPointerException e) { return input; } return input; } private static List collectMatches(Pattern pattern, String input) { Matcher matcher = pattern.matcher(input); List result = new ArrayList<>(); while (matcher.find()) { result.add(matcher.group()); } return result; } public static List getMentions(Message msg) { return collectMatches(usernamePattern, msg.getText()); } public static List getGlobalMentions(Message msg) { return collectMatches(jidPattern, msg.getText()); } /** * * @param type Name of the entity * @param input data to find matches * @param patternText pattern to match * @param textGroup function which return text representation * @param linkGroup function which return link address * @param endGroupId group id used to set end of entity (e.g. do not count linebreak as part of quote entity) * @return list of entities */ private static List entitiesForType(String type, String input, String patternText, Function textGroup, Function > linkGroup, int endGroupId) { List result = new ArrayList<>(); Pattern pattern = Pattern.compile(patternText); Matcher matcher = pattern.matcher(input); while (matcher.find()) { Entity entity = new Entity(); entity.setType(type); entity.setText(textGroup.apply(matcher)); Optional link = linkGroup.apply(matcher); link.ifPresent(entity::setUrl); entity.setStart(matcher.start()); entity.setEnd(matcher.end(endGroupId)); result.add(entity); } return result; } public static boolean isSensitive(Message msg) { return msg.getTags().stream().anyMatch((t) -> t.getName().equals("NSFW")); } }