parent
b6b9690bd2
commit
ee06c102b9
|
@ -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/
|
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
|
@ -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
|
|
@ -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" "$@"
|
|
@ -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
|
|
@ -0,0 +1 @@
|
||||||
|
rootProject.name = 'Galaxus-API'
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,4 @@
|
||||||
|
package dev.ubujira.galaxusapi.entities;
|
||||||
|
|
||||||
|
public class Product {
|
||||||
|
}
|
|
@ -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<ProductImage> 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<Offer> 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;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -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<Result> 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("<b>", "").split("</b>");
|
||||||
|
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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue