com.metinkale.prayerapp.vakit.times.NVCTimes.java Source code

Java tutorial

Introduction

Here is the source code for com.metinkale.prayerapp.vakit.times.NVCTimes.java

Source

/*
 * Copyright (c) 2016 Metin Kale
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

package com.metinkale.prayerapp.vakit.times;

import android.support.annotation.NonNull;

import com.koushikdutta.ion.Ion;
import com.koushikdutta.ion.builder.Builders;
import com.metinkale.prayerapp.App;

import org.joda.time.LocalDate;

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

class NVCTimes extends WebTimes {

    @SuppressWarnings("unused")
    NVCTimes() {
        super();
    }

    NVCTimes(long id) {
        super(id);
    }

    public static String getName(String id) {
        try {
            URL url = new URL("http://namazvakti.com/XML.php?cityID=" + id);
            URLConnection ucon = url.openConnection();
            ucon.setConnectTimeout(3000);
            ucon.setReadTimeout(3000);

            InputStream is = ucon.getInputStream();
            BufferedInputStream bis = new BufferedInputStream(is);

            BufferedReader reader = new BufferedReader(new InputStreamReader(bis, "UTF-8"));

            String line;

            while ((line = reader.readLine()) != null) {
                if (line.contains("cityNameTR")) {
                    line = line.substring(line.indexOf("cityNameTR"));
                    line = line.substring(line.indexOf("\"") + 1);
                    line = line.substring(0, line.indexOf("\""));
                    return line;

                }
            }
        } catch (Exception ignore) {
        }
        return null;
    }

    @NonNull
    @Override
    public Source getSource() {
        return Source.NVC;
    }

    @NonNull
    protected Builders.Any.F[] createIonBuilder() {
        String id = getId();
        if (id.startsWith("N_"))
            id = id.substring(2);
        return new Builders.Any.F[] {
                Ion.with(App.get()).load("http://namazvakti.com/XML.php?cityID=" + id).setTimeout(3000) };
    }

    protected boolean parseResult(@NonNull String result) {
        int i = 0;
        String[] lines = result.split("\n");

        int y = LocalDate.now().getYear();
        for (String line : lines) {
            if (line.contains("<prayertimes")) {
                String day = line.substring(line.indexOf("day=") + 5);
                String month = line.substring(line.indexOf("month=") + 7);
                day = day.substring(0, day.indexOf("\""));
                month = month.substring(0, month.indexOf("\""));
                if (day.length() == 1) {
                    day = "0" + day;
                }
                if (month.length() == 1) {
                    month = "0" + month;
                }
                String data = line.substring(line.indexOf(">") + 1, line.lastIndexOf("<"));
                data = data.replace("*", "").replace("\t", " ");
                List<String> d = new ArrayList<>(Arrays.asList(data.split(" ")));
                d.remove(15);
                d.remove(14);
                d.remove(13);
                d.remove(12);
                d.remove(10);
                d.remove(8);
                d.remove(7);
                d.remove(4);
                d.remove(3);
                d.remove(1);

                data = "";
                for (String s : d) {
                    if (s.length() == 4) {
                        data += " 0" + s;
                    } else {
                        data += " " + s;
                    }
                }
                setTimes(new LocalDate(y, Integer.parseInt(month), Integer.parseInt(day)),
                        data.substring(1).split(" "));
                i++;
            }

        }
        return i > 25;
    }

}