Compare commits
17 Commits
master
...
1.2.1-e0f5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0b634901ff | ||
|
|
1b2f247a62 | ||
|
|
e0f590b2bf | ||
| e25bff8f07 | |||
| 5abf319465 | |||
| b9fb097836 | |||
| 8c39329d6b | |||
| 416332936a | |||
| efe7a737b2 | |||
|
|
7958399f0c | ||
|
|
2c276acaf9 | ||
|
|
50d01058aa | ||
| f5b9bc787b | |||
| cf2e34e0d0 | |||
| 8379a510c8 | |||
| 61724ad1bc | |||
| ecae124cef |
7
.idea/discord.xml
generated
Normal file
7
.idea/discord.xml
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="DiscordProjectSettings">
|
||||
<option name="show" value="ASK" />
|
||||
<option name="description" value="" />
|
||||
</component>
|
||||
</project>
|
||||
23
README.md
23
README.md
@@ -1,3 +1,24 @@
|
||||
# DeepJ
|
||||
█▀█ █▀█ █ █▀▀ █ █▄ █ ▄▀█ █
|
||||
█▄█ █▀▄ █ █▄█ █ █ ▀█ █▀█ █▄▄
|
||||
|
||||
Java Wrapper for DeepL API
|
||||
█▄▄ █▄█
|
||||
█▄█ █
|
||||
|
||||
█▀ ▀█▀ █▀▀ █ █ █▀▀ █▄ █
|
||||
▄█ █ ██▄ ▀▄▀ ██▄ █ ▀█
|
||||
|
||||
________________________________________
|
||||
|
||||
█ █ █▀█ █▀█ ▄▀█ ▀█▀ █▀▀ █▀█
|
||||
█▄█ █▀▀ █▄█ █▀█ █ ██▄ █▄█
|
||||
|
||||
█▄▄ █▄█
|
||||
█▄█ █
|
||||
|
||||
█▀ █▀▀ ▀█▀
|
||||
▄█ █▄█ ▄█▄
|
||||
|
||||
________________________________________
|
||||
|
||||
DeepJ is a Java Wrapper for the DeepL Free Public API. This was originally made by Steven (Forked From) and Updated by 5gi
|
||||
@@ -3,9 +3,9 @@ plugins {
|
||||
id 'maven-publish'
|
||||
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
||||
}
|
||||
|
||||
group 'tech.nevets.deepj'
|
||||
version '1.1.0'
|
||||
apply plugin: 'maven-publish'
|
||||
group 'com.the5gi.deepj'
|
||||
version '1.2.1'
|
||||
|
||||
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11
|
||||
|
||||
@@ -17,8 +17,6 @@ dependencies {
|
||||
implementation group: 'org.json', name: 'json', version: '20210307'
|
||||
}
|
||||
|
||||
apply plugin: 'maven-publish'
|
||||
|
||||
publishing {
|
||||
publications{
|
||||
publish(MavenPublication) {
|
||||
|
||||
115
src/main/java/com/the5gi/DeepJ/Translator.java
Normal file
115
src/main/java/com/the5gi/DeepJ/Translator.java
Normal file
@@ -0,0 +1,115 @@
|
||||
package com.the5gi.DeepJ;
|
||||
|
||||
import org.json.JSONArray;
|
||||
import org.json.JSONObject;
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.net.URLEncoder;
|
||||
import java.net.http.HttpClient;
|
||||
import java.net.http.HttpRequest;
|
||||
import java.net.http.HttpResponse;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.Objects;
|
||||
|
||||
public class Translator {
|
||||
public static String globalAuthKey = "null";
|
||||
|
||||
public static void setGlobalAuthKey(String key) {
|
||||
globalAuthKey = key;
|
||||
}
|
||||
private Request request;
|
||||
public Translator() {
|
||||
if (globalAuthKey == null) {
|
||||
System.out.println("\n[DeepJ] You are currently using the Global Auth Key Translator Constructor." +
|
||||
"\n[DeepJ] If you are trying to use global auth keys, Call the method \"Translator.setGlobalAuthKey(String key)\" and then re-use this contructor." +
|
||||
"\n[DeepJ] If you want to define an different authkey every time do: \"new Translator(String authKey)\"\n");
|
||||
} else {
|
||||
request = new Request(globalAuthKey);
|
||||
}
|
||||
}
|
||||
public Translator(String authKey) {
|
||||
if (!Objects.equals(globalAuthKey, "null")) {
|
||||
System.out.println("[DeepJ] Looks like you have defined a global auth key already! You can use if by just typing \"new Traslator()\"" +
|
||||
"\n instead of \"new Translator(String authKey)\". NOTE: This will work but just some advice :)");
|
||||
}
|
||||
request = new Request(authKey);
|
||||
}
|
||||
public Translator(String authKey, boolean silence) {
|
||||
if (!Objects.equals(globalAuthKey, "null") && !silence) {
|
||||
System.out.println("[DeepJ] Looks like you have defined a global auth key already! You can use if by just typing \"new Traslator()\"" +
|
||||
"\n instead of \"new Translator(String authKey)\". NOTE: This will work but this is just some advice :)");
|
||||
}
|
||||
request = new Request(authKey);
|
||||
}
|
||||
|
||||
public String translate(Language langToTranslateTo, String sourceMessage) {
|
||||
String response = "Error processing request";
|
||||
try {
|
||||
response = request.queryAPI(langToTranslateTo, sourceMessage);
|
||||
} catch (IOException | InterruptedException e) {
|
||||
System.out.println(response);
|
||||
e.printStackTrace();
|
||||
}
|
||||
String message = "Error Processing Request (Note: This could be due to the api updating or your api being taxed to often)";
|
||||
JSONObject jsonObject = new JSONObject(response);
|
||||
JSONArray jsonArray = jsonObject.getJSONArray("translations");
|
||||
for (int i = 0; i < jsonArray.length(); i++) {
|
||||
JSONObject jsonObject1 = jsonArray.getJSONObject(i);
|
||||
message = jsonObject1.getString("text");
|
||||
}
|
||||
return message;
|
||||
}
|
||||
protected static class Request {
|
||||
private final String authKey;
|
||||
public Request(String authKey) {
|
||||
this.authKey = authKey;
|
||||
}
|
||||
public String queryAPI(Language langEnum, String message) throws IOException, InterruptedException {
|
||||
String encodedAuthKey = URLEncoder.encode(authKey, StandardCharsets.UTF_8);
|
||||
String encodedMessage = URLEncoder.encode(message, StandardCharsets.UTF_8);
|
||||
HttpClient client = HttpClient.newHttpClient();
|
||||
HttpRequest request = HttpRequest.newBuilder().GET()
|
||||
.header("Accept","*/*")
|
||||
.header("Content-Type", "application/x-www-form-urlencoded")
|
||||
.uri(URI.create("https://api-free.deepl.com/v2/translate?auth_key=" + encodedAuthKey + "&target_lang=" + langEnum.getApiString() + "&text=" + encodedMessage)).build();
|
||||
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
|
||||
return response.body();
|
||||
}
|
||||
}
|
||||
|
||||
public enum Language {
|
||||
Bulgarian("BG"),
|
||||
Czech("CS"),
|
||||
Danish("DA"),
|
||||
German("DE"),
|
||||
Greek("EL"),
|
||||
EnglishUK("EN-GB"),
|
||||
EnglishUS("EN-US"),
|
||||
Spanish("ES"),
|
||||
Estonian("ET"),
|
||||
Finish("FI"),
|
||||
French("FR"),
|
||||
Hungarian("HU"),
|
||||
Italian("IT"),
|
||||
Japanese("JA"),
|
||||
Lithuanian("LT"),
|
||||
Latvian("LV"),
|
||||
Dutch("NL"),
|
||||
Polish("PL"),
|
||||
PortugueseBrazil("PT-BR"),
|
||||
PortuguesePortugal("PT-PT"),
|
||||
Romanian("RO"),
|
||||
Russian("RU"),
|
||||
Slovak("SK"),
|
||||
Slovenian("SL"),
|
||||
Swedish("SV"),
|
||||
Chinese("ZH");
|
||||
private final String apiString;
|
||||
Language(String apiString) {
|
||||
this.apiString = apiString;
|
||||
}
|
||||
public String getApiString() {
|
||||
return this.apiString;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
package tech.nevets.deepj;
|
||||
|
||||
public enum Languages {
|
||||
BG,
|
||||
CS,
|
||||
DA,
|
||||
DE,
|
||||
EL,
|
||||
ENGB,
|
||||
ENUS,
|
||||
ES,
|
||||
ET,
|
||||
FI,
|
||||
FR,
|
||||
HU,
|
||||
IT,
|
||||
JA,
|
||||
LT,
|
||||
LV,
|
||||
NL,
|
||||
PL,
|
||||
PTBR,
|
||||
PTPT,
|
||||
RO,
|
||||
RU,
|
||||
SK,
|
||||
SL,
|
||||
SV,
|
||||
ZH
|
||||
}
|
||||
@@ -1,46 +0,0 @@
|
||||
package tech.nevets.deepj;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.net.URLEncoder;
|
||||
import java.net.http.HttpClient;
|
||||
import java.net.http.HttpRequest;
|
||||
import java.net.http.HttpResponse;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
||||
public class Request {
|
||||
public Request() {
|
||||
}
|
||||
|
||||
public String get(String authKey, Enum<Languages> langEnum, String message) throws IOException, InterruptedException {
|
||||
String encodedAuthKey = URLEncoder.encode(authKey, StandardCharsets.UTF_8);
|
||||
|
||||
String lang;
|
||||
lang = langEnum.toString();
|
||||
|
||||
if (langEnum == Languages.ENUS) {
|
||||
lang = "EN-US";
|
||||
} else if (langEnum == Languages.ENGB) {
|
||||
lang = "EN-GB";
|
||||
} else if (langEnum == Languages.PTBR) {
|
||||
lang = "PT-BR";
|
||||
} else if (langEnum == Languages.PTPT) {
|
||||
lang = "PT-PT";
|
||||
}
|
||||
|
||||
String encodedMessage = URLEncoder.encode(message, StandardCharsets.UTF_8);
|
||||
|
||||
HttpClient client = HttpClient.newHttpClient();
|
||||
HttpRequest request = HttpRequest.newBuilder()
|
||||
.GET()
|
||||
.header("Accept","*/*")
|
||||
.header("Content-Type", "application/x-www-form-urlencoded")
|
||||
.uri(URI.create("https://api-free.deepl.com/v2/translate?auth_key=" + encodedAuthKey + "&target_lang=" + lang + "&text=" + encodedMessage))
|
||||
.build();
|
||||
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
|
||||
|
||||
String data = response.body();
|
||||
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
package tech.nevets.deepj;
|
||||
|
||||
import org.json.JSONArray;
|
||||
import org.json.JSONObject;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public class Translator {
|
||||
private final String authKey;
|
||||
Request r = new Request();
|
||||
|
||||
public Translator(String authKey) {
|
||||
this.authKey = authKey;
|
||||
}
|
||||
public String translate(Enum<Languages> lang, String sourceMessage) {
|
||||
String response = "Error processing request";
|
||||
try {
|
||||
response = r.get(authKey, lang, sourceMessage);
|
||||
} catch (IOException | InterruptedException e) {
|
||||
System.out.println("Error processing request");
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
String message = "Error Processing Request";
|
||||
|
||||
JSONObject jo = new JSONObject(response);
|
||||
JSONArray ja = jo.getJSONArray("translations");
|
||||
|
||||
for (int i = 0; i < ja.length(); i++) {
|
||||
JSONObject joo = ja.getJSONObject(i);
|
||||
message = joo.getString("text");
|
||||
}
|
||||
|
||||
return message;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user