com.smile.moment.model.impl.AudioModelImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.smile.moment.model.impl.AudioModelImpl.java

Source

/*
 * Copyright (c) 2016 [zhiye.wei@gmail.com]
 *
 * 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.smile.moment.model.impl;

import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.smile.moment.app.SmileApplication;
import com.smile.moment.model.AudioLoadModel;
import com.smile.moment.model.entity.Voice;
import com.smile.moment.presenter.OnAudioLoadListener;
import com.smile.moment.presenter.OnLoadListener;
import com.smile.moment.utils.ApiUtil;
import com.smile.moment.utils.DateTimeFormatUtil;
import com.smile.moment.utils.NetWorkUtil;
import com.smile.moment.volley.VolleyHttpClient;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import java.util.List;

/**
 * @author Smile Wei
 * @since 2016/6/6.
 */
public class AudioModelImpl implements AudioLoadModel {
    @Override
    public void load(final OnAudioLoadListener listener, final String text) {
        if (!NetWorkUtil.isNetworkAvailable(SmileApplication.getContext())) {
            listener.networkError();
            return;
        }
        VolleyHttpClient.getInstance(SmileApplication.getContext())
                .get(ApiUtil.MOMENT_VOICE_CONTENT.replace("docId", text), null, new Response.Listener<String>() {
                    @Override
                    public void onResponse(String response) {
                        try {
                            JSONObject jsonObject = new JSONObject(response);
                            JSONObject jsonObject1 = jsonObject.getJSONObject(text);
                            String time = jsonObject1.getString("ptime");
                            JSONArray video = jsonObject1.getJSONArray("video");
                            String book = video.toString();
                            List<Voice> list = new Gson().fromJson(book, new TypeToken<List<Voice>>() {
                            }.getType());
                            list.remove(list.size() - 1);
                            listener.onSuccess(list, "(" + DateTimeFormatUtil.long2stringByFormatForZh(
                                    DateTimeFormatUtil.string2longSecondByFormat(time)) + ")");
                        } catch (JSONException e) {
                            e.printStackTrace();
                        }

                    }
                }, new Response.ErrorListener() {
                    @Override
                    public void onErrorResponse(VolleyError error) {
                        listener.onError(error);
                    }
                });
    }

    @Override
    public void load(OnLoadListener listener) {

    }
}