com.nttec.everychan.chans.cirno.Chan410Reader.java Source code

Java tutorial

Introduction

Here is the source code for com.nttec.everychan.chans.cirno.Chan410Reader.java

Source

/*
 * Everychan Android (Meta Imageboard Client)
 * Copyright (C) 2014-2016  miku-nyan <https://github.com/miku-nyan>
 *     
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.nttec.everychan.chans.cirno;

import java.io.IOException;
import java.io.InputStream;
import java.text.DateFormat;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.apache.commons.lang3.StringEscapeUtils;

import com.nttec.everychan.api.models.PostModel;
import com.nttec.everychan.api.util.WakabaReader;

/**
 * ? ? 410chan.org,  ??? ? (?    ??)
 * @author miku-nyan
 *
 */
public class Chan410Reader extends WakabaReader {

    private static final Pattern SPAN_ADMIN_PATTERN = Pattern.compile("<span class=\"admin\">(.*?)</span>(.*?)",
            Pattern.DOTALL);
    private static final char[] END_THREAD_FILTER = "<div id=\"thread".toCharArray();
    private int curPos = 0;

    public Chan410Reader(InputStream in) {
        super(in, DateFormats.CHAN_410_DATE_FORMAT);
    }

    public Chan410Reader(InputStream in, DateFormat dateFormat) {
        super(in, dateFormat);
    }

    @Override
    protected void customFilters(int ch) throws IOException {
        if (ch == END_THREAD_FILTER[curPos]) {
            ++curPos;
            if (curPos == END_THREAD_FILTER.length) {
                skipUntilSequence(">".toCharArray());
                finalizeThread();

                curPos = 0;
            }
        } else {
            if (curPos != 0)
                curPos = ch == END_THREAD_FILTER[0] ? 1 : 0;
        }
    }

    @Override
    protected void postprocessPost(PostModel post) {
        if (post.subject.contains("\u21E9"))
            post.sage = true;
    }

    @Override
    protected void parseDate(String date) {
        super.parseDate(date);
        if (currentPost.timestamp == 0) {
            Matcher matcher = SPAN_ADMIN_PATTERN.matcher(date);
            if (matcher.matches()) {
                currentPost.trip = (currentPost.trip == null ? "" : currentPost.trip)
                        + StringEscapeUtils.unescapeHtml4(matcher.group(1).trim());
                super.parseDate(matcher.group(2));
            }
        }
    }
}