fedilab-Android-App/app/src/main/java/fr/gouv/etalab/mastodon/translation/YandexQuery.java

77 lines
2.8 KiB
Java
Raw Normal View History

/* Copyright 2017 Thomas Schneider
*
2017-07-10 10:33:24 +02:00
* This file is a part of Mastalab
*
* 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.
*
2017-07-10 10:33:24 +02:00
* Mastalab 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.
*
2017-08-04 11:11:27 +02:00
* You should have received a copy of the GNU General Public License along with Mastalab; if not,
* see <http://www.gnu.org/licenses>. */
package fr.gouv.etalab.mastodon.translation;
import com.loopj.android.http.AsyncHttpResponseHandler;
import org.json.JSONException;
import cz.msebera.android.httpclient.Header;
2017-10-26 11:53:28 +02:00
import fr.gouv.etalab.mastodon.client.Entities.Status;
2017-10-31 12:47:51 +01:00
import fr.gouv.etalab.mastodon.helper.Helper;
import fr.gouv.etalab.mastodon.interfaces.OnTranslatedInterface;
/**
* Created by Thomas on 03/07/2017.
* Yandex client API
*/
public class YandexQuery {
private OnTranslatedInterface listener;
public YandexQuery(OnTranslatedInterface listenner) {
this.listener = listenner;
}
2017-10-26 11:53:28 +02:00
public void getYandexTextview(final Status status, final String text, final String toLanguage) throws JSONException {
YandexClient.get(text, toLanguage, new AsyncHttpResponseHandler() {
@Override
public void onStart() {
2017-08-21 17:32:09 +02:00
}
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] response) {
String str_response = new String(response);
2017-10-26 11:53:28 +02:00
listener.onTranslatedTextview(status, str_response,false);
}
@Override
public void onFailure(int statusCode, Header[] headers, byte[] errorResponse, Throwable e) {
2017-10-26 11:53:28 +02:00
listener.onTranslatedTextview(status, null, true);
}
});
}
2017-10-31 12:47:51 +01:00
public void getYandexTranslation(final Helper.targetField target, final String content, final String toLanguage) throws JSONException {
YandexClient.get(content, toLanguage, new AsyncHttpResponseHandler() {
@Override
public void onStart() {
}
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] response) {
String str_response = new String(response);
listener.onTranslated(target, str_response,false);
}
@Override
public void onFailure(int statusCode, Header[] headers, byte[] errorResponse, Throwable e) {
listener.onTranslated(target, null, true);
}
});
}
}