diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2065bc --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +HELP.md +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..802d052 --- /dev/null +++ b/build.gradle @@ -0,0 +1,41 @@ +plugins { + id 'java' + id 'maven-publish' +} + +java { + withJavadocJar() + withSourcesJar() +} + +group = 'dev.ubujira' +version = '0.5.0' +sourceCompatibility = '17' + +repositories { + mavenCentral() +} + +dependencies { + implementation 'com.squareup.okhttp3:okhttp:4.9.3' + implementation 'com.google.code.gson:gson:2.9.0' + implementation 'org.junit.jupiter:junit-jupiter:5.8.2' + + compileOnly 'org.projectlombok:lombok:1.18.24' + annotationProcessor 'org.projectlombok:lombok:1.18.24' + + testCompileOnly 'org.projectlombok:lombok:1.18.24' + testAnnotationProcessor 'org.projectlombok:lombok:1.18.24' + +} + +publishing { + publications { + maven(MavenPublication) { + groupId = 'dev.ubujira' + artifactId = 'Galaxus-API' + + from components.java + } + } +} \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..41d9927 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..00e33ed --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..1b6c787 --- /dev/null +++ b/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# 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 +# +# https://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. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..49d784e --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'Galaxus-API' diff --git a/src/main/java/dev/ubujira/galaxusapi/GalaxusAPI.java b/src/main/java/dev/ubujira/galaxusapi/GalaxusAPI.java new file mode 100644 index 0000000..0a07e02 --- /dev/null +++ b/src/main/java/dev/ubujira/galaxusapi/GalaxusAPI.java @@ -0,0 +1,76 @@ +package dev.ubujira.galaxusapi; + +import com.google.gson.JsonArray; +import com.google.gson.JsonParser; +import dev.ubujira.galaxusapi.entities.PriceHistory; +import dev.ubujira.galaxusapi.entities.ProductDetails; +import dev.ubujira.galaxusapi.entities.SearchResult; +import okhttp3.*; + +import java.io.IOException; + +public class GalaxusAPI { + + private final String URL; + + private final OkHttpClient client = new OkHttpClient().newBuilder().build(); + + private final Site site; + + public GalaxusAPI(Site site) { + this.URL = site.getUrl(); + this.site = site; + } + + public ProductDetails getProductDetailed(int productId) { + try { + JsonArray json = JsonParser.parseString(doRequest(URL + "/pdp-get-product-details-critical-data-refetch", "[{\"operationName\":\"PDP_GET_PRODUCT_DETAILS_CRITICAL_DATA_REFETCH\",\"variables\":{\"productId\":2352460,\"supplierId\":null,\"secondHandSalesOfferId\":null,\"sectorId\":5},\"query\":\"query PDP_GET_PRODUCT_DETAILS_CRITICAL_DATA_REFETCH($productId: Int!) {\\n productDetails: productDetailsV3(productId: $productId) {\\n mandatorSpecificData {\\n isBestseller\\n isDeleted\\n showroomSites\\n sectorIds\\n }\\n product {\\n id\\n productId\\n name\\n nameProperties\\n productTypeId\\n productTypeName\\n brandId\\n brandName\\n averageRating\\n totalRatings\\n totalQuestions\\n isProductSet\\n images {\\n url\\n height\\n width\\n }\\n energyEfficiency {\\n energyEfficiencyColorType\\n energyEfficiencyLabelText\\n energyEfficiencyLabelSigns\\n energyEfficiencyImage {\\n url\\n height\\n width\\n }\\n }\\n seo {\\n seoProductTypeName\\n seoNameProperties\\n productGroups {\\n productGroup1\\n productGroup2\\n productGroup3\\n productGroup4\\n __typename\\n }\\n __typename\\n }\\n hasVariants\\n __typename\\n }\\n offers {\\n ...ProductDetailsOffer\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment ProductDetailsOffer on ProductDetailOffer {\\n id\\n productId\\n offerId\\n shopOfferId\\n price {\\n amountIncl\\n amountExcl\\n currency\\n fraction\\n __typename\\n }\\n deliveryOptions {\\n mail {\\n classification\\n futureReleaseDate\\n __typename\\n }\\n pickup {\\n siteId\\n classification\\n futureReleaseDate\\n __typename\\n }\\n detailsProvider {\\n productId\\n offerId\\n quantity\\n type\\n __typename\\n }\\n __typename\\n }\\n supplier {\\n name\\n countryIsoCode\\n countryName\\n customsType\\n link\\n __typename\\n }\\n label\\n type\\n volumeDiscountPrices {\\n minAmount\\n price {\\n amountIncl\\n amountExcl\\n currency\\n __typename\\n }\\n isDefault\\n __typename\\n }\\n salesInformation {\\n numberOfItems\\n numberOfItemsSold\\n isEndingSoon\\n __typename\\n }\\n incentiveText\\n isIncentiveCashback\\n isNew\\n isSalesPromotion\\n hideInProductDiscovery\\n canAddToBasket\\n hidePrice\\n insteadOfPrice {\\n type\\n price {\\n amountIncl\\n amountExcl\\n currency\\n fraction\\n __typename\\n }\\n __typename\\n }\\n minOrderQuantity\\n secondHandOfferInfo {\\n conditions {\\n name\\n value\\n description\\n __typename\\n }\\n generalCondition {\\n name\\n value\\n description\\n __typename\\n }\\n description\\n sellerCustomerId\\n images {\\n fileUrl\\n description\\n width\\n height\\n __typename\\n }\\n warranty {\\n title\\n description\\n tooltip\\n isSpecificWarranty\\n __typename\\n }\\n __typename\\n }\\n returnText {\\n title\\n description\\n __typename\\n }\\n warrantyOverviews {\\n title\\n description\\n __typename\\n }\\n digitecConnect {\\n months\\n value\\n type\\n __typename\\n }\\n specifications {\\n title\\n description\\n link\\n type\\n properties {\\n name\\n propertyId\\n description\\n descriptionLink\\n type\\n values {\\n value\\n description\\n descriptionLink\\n link\\n propertyDefinitionOptionId\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}]").body().string()).getAsJsonArray(); + System.out.println(json); + return new ProductDetails(json); + } catch (IOException e) { + e.printStackTrace(); + } + return null; + } + + + public SearchResult getSearchResults(String query) { + try { + String json = doRequest(URL, "{\"query\":\"query GET_INCREMENTAL_SEARCH_RESULT($query: String!) { incrementalSearch(query: $query) { searchResults { Suggestion { total results { name id } } ProductType { total results { id name } } Product { total results { name currency price insteadOfPrice id imageSource } } } } }\",\"variables\":\"{ \\\"query\\\": \\\"" + query + "\\\" }\"}").body().string(); + return new SearchResult(JsonParser.parseString(json).getAsJsonObject()); + } catch (IOException e) { + e.printStackTrace(); + } + return null; + } + + public PriceHistory getPriceHistory(int productId) { + try { + String json = doRequest(URL + "/pdp-price-history", "[{\"operationName\":\"PDP_PRICE_HISTORY\",\"variables\":{\"productId\":" + productId + "},\"query\":\"query PDP_PRICE_HISTORY($productId: Int!) {\\n priceHistory(productId: $productId) {\\n points {\\n amountIncl\\n amountExcl\\n type\\n validFrom\\n }\\n }\\n}\\n\"}]").body().string(); + return new PriceHistory(JsonParser.parseString(json).getAsJsonArray()); + } catch (IOException e) { + e.printStackTrace(); + } + return null; + } + + public Response doRequest(String url, String json) { + MediaType mediaType = MediaType.parse("application/json"); + RequestBody body = RequestBody.create(json, mediaType); + Request request = new Request.Builder() + .url(url) + .method("POST", body) + .addHeader("content-type", "application/json") + .addHeader("dnt", "1") // Do not track + .addHeader("origin", site.getOrigin()) + .addHeader("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36") + .build(); + try { + return client.newCall(request).execute(); + } catch (IOException e) { + e.printStackTrace(); + } + return null; + } + +} diff --git a/src/main/java/dev/ubujira/galaxusapi/Site.java b/src/main/java/dev/ubujira/galaxusapi/Site.java new file mode 100644 index 0000000..3afe2dd --- /dev/null +++ b/src/main/java/dev/ubujira/galaxusapi/Site.java @@ -0,0 +1,20 @@ +package dev.ubujira.galaxusapi; + +import lombok.Getter; + +public enum Site { + + GALAXUS("https://www.galaxus.ch/api/graphql", "https://www.galaxus.ch"), + DIGITEC("https://www.digitec.ch/api/graphql", "https://www.digitec.ch"); + + @Getter + private String url; + @Getter + private String origin; + + Site(String url, String origin) { + this.url = url; + this.origin = origin; + } + +} diff --git a/src/main/java/dev/ubujira/galaxusapi/entities/PriceHistory.java b/src/main/java/dev/ubujira/galaxusapi/entities/PriceHistory.java new file mode 100644 index 0000000..3d9a2e8 --- /dev/null +++ b/src/main/java/dev/ubujira/galaxusapi/entities/PriceHistory.java @@ -0,0 +1,67 @@ +package dev.ubujira.galaxusapi.entities; + +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; + +import java.time.Instant; +import java.time.format.DateTimeFormatter; +import java.time.temporal.TemporalAccessor; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class PriceHistory { + + public final List pricePoints = new ArrayList<>(); + public final float currentPrice; + + //[{"data":{"priceHistory":{"points":[{"amountIncl":19.3,"amountExcl":17.92,"type":"PRICE","validFrom":"2021-01-08T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.8,"amountExcl":17.46,"type":"PRICE","validFrom":"2021-02-15T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":6.3,"amountExcl":5.85,"type":"PRICE","validFrom":"2021-04-21T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.8,"amountExcl":17.46,"type":"PRICE","validFrom":"2021-04-24T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":12,"amountExcl":11.14,"type":"PRICE","validFrom":"2021-04-26T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":10.6,"amountExcl":9.84,"type":"PRICE","validFrom":"2021-04-29T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":11.2,"amountExcl":10.4,"type":"PRICE","validFrom":"2021-05-01T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":13.4,"amountExcl":12.44,"type":"PRICE","validFrom":"2021-05-20T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":12.1,"amountExcl":11.23,"type":"PRICE","validFrom":"2021-05-21T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":12.2,"amountExcl":11.33,"type":"PRICE","validFrom":"2021-05-22T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":12.3,"amountExcl":11.42,"type":"PRICE","validFrom":"2021-05-26T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":12.4,"amountExcl":11.51,"type":"PRICE","validFrom":"2021-06-03T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":12.5,"amountExcl":11.61,"type":"PRICE","validFrom":"2021-06-05T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":13,"amountExcl":12.07,"type":"PRICE","validFrom":"2021-06-07T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":13.1,"amountExcl":12.16,"type":"PRICE","validFrom":"2021-06-09T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":13.2,"amountExcl":12.26,"type":"PRICE","validFrom":"2021-06-10T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":13.4,"amountExcl":12.44,"type":"PRICE","validFrom":"2021-06-11T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":12.5,"amountExcl":11.61,"type":"PRICE","validFrom":"2021-06-12T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":17.9,"amountExcl":16.62,"type":"PRICE","validFrom":"2021-06-15T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.8,"amountExcl":17.46,"type":"PRICE","validFrom":"2021-06-25T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.7,"amountExcl":17.36,"type":"PRICE","validFrom":"2021-07-07T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.6,"amountExcl":17.27,"type":"PRICE","validFrom":"2021-07-22T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.7,"amountExcl":17.36,"type":"PRICE","validFrom":"2021-07-25T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.8,"amountExcl":17.46,"type":"PRICE","validFrom":"2021-07-29T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":19.8,"amountExcl":18.38,"type":"PRICE","validFrom":"2021-08-06T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":19.6,"amountExcl":18.2,"type":"PRICE","validFrom":"2021-10-29T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.9,"amountExcl":17.55,"type":"PRICE","validFrom":"2021-11-03T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":19.8,"amountExcl":18.38,"type":"PRICE","validFrom":"2021-11-12T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.9,"amountExcl":17.55,"type":"PRICE","validFrom":"2021-11-15T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":19.8,"amountExcl":18.38,"type":"PRICE","validFrom":"2021-12-13T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":23.7,"amountExcl":22.01,"type":"PRICE","validFrom":"2021-12-16T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":19.8,"amountExcl":18.38,"type":"PRICE","validFrom":"2022-01-06T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":20,"amountExcl":18.57,"type":"PRICE","validFrom":"2022-01-13T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":21,"amountExcl":19.5,"type":"PRICE","validFrom":"2022-01-14T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":20,"amountExcl":18.57,"type":"PRICE","validFrom":"2022-01-15T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":21,"amountExcl":19.5,"type":"PRICE","validFrom":"2022-01-17T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":20,"amountExcl":18.57,"type":"PRICE","validFrom":"2022-01-22T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":21,"amountExcl":19.5,"type":"PRICE","validFrom":"2022-01-24T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":20,"amountExcl":18.57,"type":"PRICE","validFrom":"2022-01-29T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":24,"amountExcl":22.28,"type":"PRICE","validFrom":"2022-02-02T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":20,"amountExcl":18.57,"type":"PRICE","validFrom":"2022-02-03T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":24.2,"amountExcl":22.47,"type":"PRICE","validFrom":"2022-02-10T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18.1,"amountExcl":16.81,"type":"PRICE","validFrom":"2022-02-18T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":18,"amountExcl":16.71,"type":"PRICE","validFrom":"2022-02-20T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":10.8,"amountExcl":10.03,"type":"PRICE","validFrom":"2022-02-27T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":11.3,"amountExcl":10.49,"type":"PRICE","validFrom":"2022-03-02T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":11.6,"amountExcl":10.77,"type":"PRICE","validFrom":"2022-03-04T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":17.8,"amountExcl":16.53,"type":"PRICE","validFrom":"2022-03-10T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":17.9,"amountExcl":16.62,"type":"PRICE","validFrom":"2022-03-11T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":21,"amountExcl":19.5,"type":"PRICE","validFrom":"2022-03-12T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":23.2,"amountExcl":21.54,"type":"PRICE","validFrom":"2022-03-15T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":21,"amountExcl":19.5,"type":"PRICE","validFrom":"2022-03-16T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":11.6,"amountExcl":10.77,"type":"PRICE","validFrom":"2022-03-23T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":20,"amountExcl":18.57,"type":"PRICE","validFrom":"2022-03-31T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":21,"amountExcl":19.5,"type":"PRICE","validFrom":"2022-04-01T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":20,"amountExcl":18.57,"type":"PRICE","validFrom":"2022-04-05T12:00:00Z","__typename":"SalesPriceHistoryPoint"},{"amountIncl":21,"amountExcl":19.5,"type":"PRICE","validFrom":"2022-04-07T12:00:00Z","__typename":"SalesPriceHistoryPoint"}],"__typename":"SalesPriceHistoryResponse"}}}] + public PriceHistory(JsonArray jsonArray) { + JsonObject jsonObject = jsonArray.get(0).getAsJsonObject().getAsJsonObject("data"); + JsonObject priceHistoryObject = jsonObject.get("priceHistory").getAsJsonObject(); + JsonArray pointsArray = priceHistoryObject.get("points").getAsJsonArray(); + + for (JsonElement point : pointsArray) { + JsonObject pointObject = point.getAsJsonObject(); + PricePoint pricePoint = new PricePoint(pointObject); + pricePoints.add(pricePoint); + } + + currentPrice = pricePoints.get(pricePoints.size() - 1).getPriceInclTax(); + } + + public List getPricePoints() { + return pricePoints; + } + + public float getCurrentPrice() { + return currentPrice; + } + + public static class PricePoint { + private final float priceExclTax; + private final float priceInclTax; + private final Date validFrom; + + public PricePoint(JsonObject jsonObject) { + priceExclTax = jsonObject.get("amountExcl").getAsFloat(); + priceInclTax = jsonObject.get("amountIncl").getAsFloat(); + + TemporalAccessor ta = DateTimeFormatter.ISO_INSTANT.parse(jsonObject.get("validFrom").getAsString()); + validFrom = Date.from(Instant.from(ta)); + } + + public float getPriceExclTax() { + return priceExclTax; + } + + public float getPriceInclTax() { + return priceInclTax; + } + + public Date getValidFrom() { + return validFrom; + } + } +} diff --git a/src/main/java/dev/ubujira/galaxusapi/entities/Product.java b/src/main/java/dev/ubujira/galaxusapi/entities/Product.java new file mode 100644 index 0000000..845c52f --- /dev/null +++ b/src/main/java/dev/ubujira/galaxusapi/entities/Product.java @@ -0,0 +1,4 @@ +package dev.ubujira.galaxusapi.entities; + +public class Product { +} diff --git a/src/main/java/dev/ubujira/galaxusapi/entities/ProductDetails.java b/src/main/java/dev/ubujira/galaxusapi/entities/ProductDetails.java new file mode 100644 index 0000000..4088ca8 --- /dev/null +++ b/src/main/java/dev/ubujira/galaxusapi/entities/ProductDetails.java @@ -0,0 +1,111 @@ +package dev.ubujira.galaxusapi.entities; + +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import lombok.Getter; + +import java.util.ArrayList; +import java.util.List; + +public class ProductDetails { + + @Getter + private final MandatorSpecificData mandatorSpecificData; + @Getter + private final Product product; + + public ProductDetails(JsonArray jsonArray) { + JsonObject jsonObject = jsonArray.get(0).getAsJsonObject().getAsJsonObject("data").getAsJsonObject("productDetails"); + + mandatorSpecificData = new MandatorSpecificData(jsonObject.get("mandatorSpecificData").getAsJsonObject()); + product = new Product(jsonObject.get("product").getAsJsonObject()); + } + + @Getter + public static class MandatorSpecificData { + private final boolean isBestseller; + private final boolean isDeleted; + + public MandatorSpecificData(JsonObject jsonObject) { + isBestseller = jsonObject.get("isBestseller").getAsBoolean(); + isDeleted = jsonObject.get("isDeleted").getAsBoolean(); + } + } + + + @Getter + public static class Product { + private final String id; + private final int productId; + private final String name; + + private final int productTypeId; + private final String productTypeName; + + private final String brandName; + private final int brandId; + + private final float averageRating; + private final int totalRatings; + + private final boolean isProductSet; + + private List images = new ArrayList<>(); + + public Product(JsonObject jsonObject) { + id = jsonObject.get("id").getAsString(); + productId = jsonObject.get("productId").getAsInt(); + name = jsonObject.get("name").getAsString(); + + productTypeId = jsonObject.get("productTypeId").getAsInt(); + productTypeName = jsonObject.get("productTypeName").getAsString(); + + brandName = jsonObject.get("brandName").getAsString(); + brandId = jsonObject.get("brandId").getAsInt(); + + averageRating = jsonObject.get("averageRating").getAsFloat(); + totalRatings = jsonObject.get("totalRatings").getAsInt(); + + isProductSet = jsonObject.get("isProductSet").getAsBoolean(); + + JsonArray imageArray = jsonObject.get("images").getAsJsonArray(); + for (JsonElement jsonElement : imageArray.getAsJsonArray()) { + images.add(new ProductImage(jsonElement.getAsJsonObject())); + } + } + + @Getter + public static class ProductImage { + private final String url; + private final int height; + private final int width; + + public ProductImage(JsonObject jsonObject) { + url = jsonObject.get("url").getAsString(); + height = jsonObject.get("height").getAsInt(); + width = jsonObject.get("width").getAsInt(); + } + } + } + + public static class Offers { + public List offers = new ArrayList<>(); + + public Offers(JsonObject jsonObject) { + + } + + public static class Offer { + public String id; + public int offerId; + public int shopOfferId; + + public float priceInclusive; + public float priceExclusive; + public String currency; + + } + } + +} diff --git a/src/main/java/dev/ubujira/galaxusapi/entities/SearchResult.java b/src/main/java/dev/ubujira/galaxusapi/entities/SearchResult.java new file mode 100644 index 0000000..795948a --- /dev/null +++ b/src/main/java/dev/ubujira/galaxusapi/entities/SearchResult.java @@ -0,0 +1,56 @@ +package dev.ubujira.galaxusapi.entities; + +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import lombok.Getter; + +import java.util.ArrayList; +import java.util.List; + +public class SearchResult { + + @Getter + private final List results = new ArrayList<>(); + @Getter + private final int resultsCount; + + public SearchResult(JsonObject jsonObject) { + JsonObject data = jsonObject.getAsJsonObject("data") + .getAsJsonObject("incrementalSearch") + .getAsJsonObject("searchResults") + .getAsJsonObject("Product"); + + this.resultsCount = data.get("total").getAsInt(); + + JsonArray results = data.getAsJsonArray("results"); + for (JsonElement resultElement : results.getAsJsonArray()) { + JsonObject result = resultElement.getAsJsonObject(); + this.results.add(new Result(result)); + } + } + + @Getter + public static class Result { + private final int productId; + private final String productName; + private final String brandName; + private final String imageUrl; + private final float price; + private final float insteadOfPrice; + + public Result(JsonObject jsonObject) { + productId = jsonObject.get("id").getAsInt(); + + String[] productParts = jsonObject.get("name").getAsString().replace("", "").split(""); + productName = productParts[1]; + brandName = productParts[0]; + + imageUrl = jsonObject.get("imageSource").getAsString(); + + price = jsonObject.get("price").getAsFloat(); + insteadOfPrice = jsonObject.get("insteadOfPrice").isJsonNull() ? 0 : jsonObject.get("insteadOfPrice").getAsFloat(); + } + } + +}