Converted api classes to be only statically accessible | Renamed SpoonacularController to RecipeSearchController
This commit is contained in:
@@ -19,27 +19,25 @@ import java.util.stream.Collectors;
|
||||
@Component
|
||||
public class RecipeInformation {
|
||||
|
||||
private final Dotenv dotenv;
|
||||
private final OkHttpClient client;
|
||||
private final static Dotenv dotenv = Dotenv.configure().ignoreIfMissing().ignoreIfMalformed().load();
|
||||
private final static OkHttpClient client = new OkHttpClient();
|
||||
|
||||
public RecipeInformation(){
|
||||
dotenv = Dotenv.configure().ignoreIfMissing().ignoreIfMalformed().load();
|
||||
client = new OkHttpClient();
|
||||
private RecipeInformation(){
|
||||
}
|
||||
|
||||
public List<Recipe> getRecipeFromIds(List<Integer> ids) throws IOException {
|
||||
public static List<Recipe> getRecipeFromIds(List<Integer> ids) throws IOException {
|
||||
String idsString = ids.stream().map(String::valueOf)
|
||||
.collect(Collectors.joining(","));
|
||||
return new ObjectMapper().readValue(queryInformationBulk(idsString).body().string(), new TypeReference<>(){});
|
||||
}
|
||||
|
||||
public List<ExtendedRecipeByIngredient> getExtendedRecipeFromIds(List<Integer> ids) throws IOException {
|
||||
public static List<ExtendedRecipeByIngredient> getExtendedRecipeFromIds(List<Integer> ids) throws IOException {
|
||||
String idsString = ids.stream().map(String::valueOf)
|
||||
.collect(Collectors.joining(","));
|
||||
return new ObjectMapper().readValue(queryInformationBulk(idsString).body().string(), new TypeReference<>() {});
|
||||
}
|
||||
|
||||
private Response queryInformationBulk(String idsString) throws IOException {
|
||||
private static Response queryInformationBulk(String idsString) throws IOException {
|
||||
Request request = APIAuthentication.addAuthHeaders(new Request.Builder()
|
||||
.url("https://" + dotenv.get("X-RapidAPI-Host") +
|
||||
"/recipes/informationBulk?ids=" + idsString))
|
||||
@@ -47,7 +45,7 @@ public class RecipeInformation {
|
||||
return client.newCall(request).execute();
|
||||
}
|
||||
|
||||
public List<ExtendedRecipeByIngredient> getRecepieByIngredientsExtended(List<RecipeByIngredient> recipeByIngredients) throws IOException {
|
||||
public static List<ExtendedRecipeByIngredient> getRecepieByIngredientsExtended(List<RecipeByIngredient> recipeByIngredients) throws IOException {
|
||||
List<Integer> ids = recipeByIngredients.stream().map(RecipeByIngredient::getId).toList();
|
||||
List<ExtendedRecipeByIngredient> extendedRecipeByIngredients = getExtendedRecipeFromIds(ids);
|
||||
Iterator<RecipeByIngredient> recipeByIngredientIterator = recipeByIngredients.iterator();
|
||||
|
||||
@@ -23,20 +23,15 @@ import java.util.Random;
|
||||
public class RecipeSearch {
|
||||
private static final boolean IGNOREPANTRY = true;
|
||||
|
||||
private final Random rnd;
|
||||
private final Dotenv dotenv;
|
||||
private final RecipeInformation recipeInformation;
|
||||
private static final Random rnd = new Random();
|
||||
private static final Dotenv dotenv = Dotenv.configure().ignoreIfMissing().ignoreIfMalformed().load();
|
||||
|
||||
private final OkHttpClient client;
|
||||
private static final OkHttpClient client = new OkHttpClient();
|
||||
|
||||
public RecipeSearch(){
|
||||
rnd = new Random();
|
||||
dotenv = Dotenv.configure().ignoreIfMissing().ignoreIfMalformed().load();
|
||||
recipeInformation = new RecipeInformation();
|
||||
client = new OkHttpClient();
|
||||
private RecipeSearch(){
|
||||
}
|
||||
|
||||
public List<ExtendedRecipeByIngredient> getForIngridients(Iterable<Item> items, int number) throws java.io.IOException {
|
||||
public static List<ExtendedRecipeByIngredient> getForIngridients(Iterable<Item> items, int number) throws java.io.IOException {
|
||||
List<String> itemNames = new LinkedList<>();
|
||||
items.forEach(item -> itemNames.add(item.getName()));
|
||||
String ingridients = String.join(",", itemNames);
|
||||
@@ -53,14 +48,14 @@ public class RecipeSearch {
|
||||
String responseString = response.body().string();
|
||||
|
||||
List<RecipeByIngredient> recipeByIngredients = new ObjectMapper().readValue(responseString, new TypeReference<>(){});
|
||||
return recipeInformation.getRecepieByIngredientsExtended(recipeByIngredients);
|
||||
return RecipeInformation.getRecepieByIngredientsExtended(recipeByIngredients);
|
||||
}
|
||||
|
||||
public ExtendedRecipeByIngredient getOneForIngridients(Iterable<Item> items, int number) throws IOException {
|
||||
return this.getForIngridients(items, number).get(rnd.nextInt(number));
|
||||
public static ExtendedRecipeByIngredient getOneForIngridients(Iterable<Item> items, int number) throws IOException {
|
||||
return getForIngridients(items, number).get(rnd.nextInt(number));
|
||||
}
|
||||
|
||||
public List<Recipe> getRandom(List<String> tags, int number) throws java.io.IOException, JSONException {
|
||||
public static List<Recipe> getRandom(List<String> tags, int number) throws java.io.IOException, JSONException {
|
||||
String tagString = String.join(",", tags);
|
||||
Request request = APIAuthentication.addAuthHeaders(new Request.Builder()
|
||||
.url("https://" + dotenv.get("X-RapidAPI-Host") +
|
||||
|
||||
Reference in New Issue
Block a user