From d3362571f26ed326f2996b7203d91566b4a9ae6e Mon Sep 17 00:00:00 2001 From: Rodrigo Verdiani Date: Sat, 6 Jun 2026 18:44:43 -0300 Subject: [PATCH] feat(workspace): implement CRUD operations for workspaces --- .gitattributes | 2 + .gitignore | 253 +++++++++++++++ .mvn/wrapper/maven-wrapper.properties | 3 + docker-compose.yml | 30 ++ mvnw | 295 ++++++++++++++++++ mvnw.cmd | 189 +++++++++++ pom.xml | 217 +++++++++++++ .../ai/decompile/DecompileAiApplication.java | 11 + src/main/java/ai/decompile/WebConfig.java | 14 + .../exception/ConflictException.java | 7 + .../ai/decompile/exception/ErrorResponse.java | 6 + .../exception/GlobalExceptionHandler.java | 47 +++ .../exception/NotFoundException.java | 7 + .../controller/WorkspaceController.java | 63 ++++ .../workspace/model/dto/WorkspaceRequest.java | 5 + .../model/dto/WorkspaceResponse.java | 18 ++ .../workspace/model/entity/Workspace.java | 35 +++ .../model/repository/WorkspaceRepository.java | 11 + .../specification/WorkspaceSpecification.java | 13 + .../workspace/service/WorkspaceService.java | 63 ++++ src/main/resources/application.yml | 16 + .../V001__create_event_publication_table.sql | 15 + .../V002__create_workspaces_table.sql | 8 + .../DecompileAiApplicationTests.java | 11 + .../controller/WorkspaceControllerTest.java | 149 +++++++++ .../controller/WorkspaceIntegrationTest.java | 135 ++++++++ .../service/WorkspaceServiceTest.java | 149 +++++++++ src/test/resources/application-test.yml | 11 + 28 files changed, 1783 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .mvn/wrapper/maven-wrapper.properties create mode 100644 docker-compose.yml create mode 100755 mvnw create mode 100644 mvnw.cmd create mode 100644 pom.xml create mode 100644 src/main/java/ai/decompile/DecompileAiApplication.java create mode 100644 src/main/java/ai/decompile/WebConfig.java create mode 100644 src/main/java/ai/decompile/exception/ConflictException.java create mode 100644 src/main/java/ai/decompile/exception/ErrorResponse.java create mode 100644 src/main/java/ai/decompile/exception/GlobalExceptionHandler.java create mode 100644 src/main/java/ai/decompile/exception/NotFoundException.java create mode 100644 src/main/java/ai/decompile/workspace/controller/WorkspaceController.java create mode 100644 src/main/java/ai/decompile/workspace/model/dto/WorkspaceRequest.java create mode 100644 src/main/java/ai/decompile/workspace/model/dto/WorkspaceResponse.java create mode 100644 src/main/java/ai/decompile/workspace/model/entity/Workspace.java create mode 100644 src/main/java/ai/decompile/workspace/model/repository/WorkspaceRepository.java create mode 100644 src/main/java/ai/decompile/workspace/model/specification/WorkspaceSpecification.java create mode 100644 src/main/java/ai/decompile/workspace/service/WorkspaceService.java create mode 100644 src/main/resources/application.yml create mode 100644 src/main/resources/db/migration/V001__create_event_publication_table.sql create mode 100644 src/main/resources/db/migration/V002__create_workspaces_table.sql create mode 100644 src/test/java/ai/decompile/decompile_ai/DecompileAiApplicationTests.java create mode 100644 src/test/java/ai/decompile/workspace/controller/WorkspaceControllerTest.java create mode 100644 src/test/java/ai/decompile/workspace/controller/WorkspaceIntegrationTest.java create mode 100644 src/test/java/ai/decompile/workspace/service/WorkspaceServiceTest.java create mode 100644 src/test/resources/application-test.yml diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3b41682 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +/mvnw text eol=lf +*.cmd text eol=crlf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8dd4618 --- /dev/null +++ b/.gitignore @@ -0,0 +1,253 @@ +# Created by https://www.toptal.com/developers/gitignore/api/linux,intellij,jetbrains,java,react +# Edit at https://www.toptal.com/developers/gitignore?templates=linux,intellij,jetbrains,java,react + +target/ + +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/** +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint +.idea/**/sonarlint/ + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin +.idea/**/sonarIssues.xml + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced +.idea/**/markdown-navigator.xml +.idea/**/markdown-navigator-enh.xml +.idea/**/markdown-navigator/ + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 +.idea/$CACHE_FILE$ + +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream +.idea/codestream.xml + +# Azure Toolkit for IntelliJ plugin +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij +.idea/**/azureSettings.xml + +### Java ### +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +.env + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* + +### JetBrains ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff + +# AWS User-specific + +# Generated files + +# Sensitive or high-churn files + +# Gradle + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake + +# Mongo Explorer plugin + +# File-based project format + +# IntelliJ + +# mpeltonen/sbt-idea plugin + +# JIRA plugin + +# Cursive Clojure plugin + +# SonarLint plugin + +# Crashlytics plugin (for Android Studio and IntelliJ) + +# Editor-based Rest Client + +# Android studio 3.1+ serialized cache file + +### JetBrains Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 + +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream + +# Azure Toolkit for IntelliJ plugin +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### react ### +.DS_* +logs +**/*.backup.* +**/*.back.* + +node_modules +bower_components + +*.sublime* + +psd +thumb +sketch + +# End of https://www.toptal.com/developers/gitignore/api/linux,intellij,jetbrains,java,react diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..216df05 --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,3 @@ +wrapperVersion=3.3.4 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2592bae --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,30 @@ +services: + postgres: + container_name: decompile-ai-postgres + image: pgvector/pgvector:pg18 + environment: + - POSTGRES_USER=decompile_ai + - POSTGRES_PASSWORD=decompile_ai + - POSTGRES_DB=decompile_ai + ports: + - "5432:5432" + volumes: + - postgres:/var/lib/postgresql + networks: + - decompile-ai-network + + rabbit-mq: + container_name: decompile-ai-rabbitmq + image: rabbitmq:4-management + ports: + - "5672:5672" + - "15672:15672" + networks: + - decompile-ai-network + +networks: + decompile-ai-network: + driver: bridge + +volumes: + postgres: \ No newline at end of file diff --git a/mvnw b/mvnw new file mode 100755 index 0000000..bd8896b --- /dev/null +++ b/mvnw @@ -0,0 +1,295 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you 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 +# +# http://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. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Apache Maven Wrapper startup batch script, version 3.3.4 +# +# Optional ENV vars +# ----------------- +# JAVA_HOME - location of a JDK home dir, required when download maven via java source +# MVNW_REPOURL - repo url base for downloading maven distribution +# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output +# ---------------------------------------------------------------------------- + +set -euf +[ "${MVNW_VERBOSE-}" != debug ] || set -x + +# OS specific support. +native_path() { printf %s\\n "$1"; } +case "$(uname)" in +CYGWIN* | MINGW*) + [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" + native_path() { cygpath --path --windows "$1"; } + ;; +esac + +# set JAVACMD and JAVACCMD +set_java_home() { + # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched + 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" + JAVACCMD="$JAVA_HOME/jre/sh/javac" + else + JAVACMD="$JAVA_HOME/bin/java" + JAVACCMD="$JAVA_HOME/bin/javac" + + if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then + echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 + echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 + return 1 + fi + fi + else + JAVACMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v java + )" || : + JAVACCMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v javac + )" || : + + if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then + echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 + return 1 + fi + fi +} + +# hash string like Java String::hashCode +hash_string() { + str="${1:-}" h=0 + while [ -n "$str" ]; do + char="${str%"${str#?}"}" + h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) + str="${str#?}" + done + printf %x\\n $h +} + +verbose() { :; } +[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } + +die() { + printf %s\\n "$1" >&2 + exit 1 +} + +trim() { + # MWRAPPER-139: + # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. + # Needed for removing poorly interpreted newline sequences when running in more + # exotic environments such as mingw bash on Windows. + printf "%s" "${1}" | tr -d '[:space:]' +} + +scriptDir="$(dirname "$0")" +scriptName="$(basename "$0")" + +# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties +while IFS="=" read -r key value; do + case "${key-}" in + distributionUrl) distributionUrl=$(trim "${value-}") ;; + distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; + esac +done <"$scriptDir/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" + +case "${distributionUrl##*/}" in +maven-mvnd-*bin.*) + MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ + case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in + *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; + :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; + :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; + :Linux*x86_64*) distributionPlatform=linux-amd64 ;; + *) + echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 + distributionPlatform=linux-amd64 + ;; + esac + distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" + ;; +maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; +*) MVN_CMD="mvn${scriptName#mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; +esac + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" +distributionUrlName="${distributionUrl##*/}" +distributionUrlNameMain="${distributionUrlName%.*}" +distributionUrlNameMain="${distributionUrlNameMain%-bin}" +MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" +MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" + +exec_maven() { + unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : + exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" +} + +if [ -d "$MAVEN_HOME" ]; then + verbose "found existing MAVEN_HOME at $MAVEN_HOME" + exec_maven "$@" +fi + +case "${distributionUrl-}" in +*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; +*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; +esac + +# prepare tmp dir +if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then + clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } + trap clean HUP INT TERM EXIT +else + die "cannot create temp dir" +fi + +mkdir -p -- "${MAVEN_HOME%/*}" + +# Download and Install Apache Maven +verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +verbose "Downloading from: $distributionUrl" +verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +# select .zip or .tar.gz +if ! command -v unzip >/dev/null; then + distributionUrl="${distributionUrl%.zip}.tar.gz" + distributionUrlName="${distributionUrl##*/}" +fi + +# verbose opt +__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' +[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v + +# normalize http auth +case "${MVNW_PASSWORD:+has-password}" in +'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; +has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; +esac + +if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then + verbose "Found wget ... using wget" + wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" +elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then + verbose "Found curl ... using curl" + curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" +elif set_java_home; then + verbose "Falling back to use Java to download" + javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" + targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" + cat >"$javaSource" <<-END + public class Downloader extends java.net.Authenticator + { + protected java.net.PasswordAuthentication getPasswordAuthentication() + { + return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); + } + public static void main( String[] args ) throws Exception + { + setDefault( new Downloader() ); + java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); + } + } + END + # For Cygwin/MinGW, switch paths to Windows format before running javac and java + verbose " - Compiling Downloader.java ..." + "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" + verbose " - Running Downloader.java ..." + "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" +fi + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +if [ -n "${distributionSha256Sum-}" ]; then + distributionSha256Result=false + if [ "$MVN_CMD" = mvnd.sh ]; then + echo "Checksum validation is not supported for maven-mvnd." >&2 + echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + elif command -v sha256sum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c - >/dev/null 2>&1; then + distributionSha256Result=true + fi + elif command -v shasum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 + echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + fi + if [ $distributionSha256Result = false ]; then + echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 + echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 + exit 1 + fi +fi + +# unzip and move +if command -v unzip >/dev/null; then + unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" +else + tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" +fi + +# Find the actual extracted directory name (handles snapshots where filename != directory name) +actualDistributionDir="" + +# First try the expected directory name (for regular distributions) +if [ -d "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" ]; then + if [ -f "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/bin/$MVN_CMD" ]; then + actualDistributionDir="$distributionUrlNameMain" + fi +fi + +# If not found, search for any directory with the Maven executable (for snapshots) +if [ -z "$actualDistributionDir" ]; then + # enable globbing to iterate over items + set +f + for dir in "$TMP_DOWNLOAD_DIR"/*; do + if [ -d "$dir" ]; then + if [ -f "$dir/bin/$MVN_CMD" ]; then + actualDistributionDir="$(basename "$dir")" + break + fi + fi + done + set -f +fi + +if [ -z "$actualDistributionDir" ]; then + verbose "Contents of $TMP_DOWNLOAD_DIR:" + verbose "$(ls -la "$TMP_DOWNLOAD_DIR")" + die "Could not find Maven distribution directory in extracted archive" +fi + +verbose "Found extracted Maven distribution directory: $actualDistributionDir" +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$actualDistributionDir/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$actualDistributionDir" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" + +clean || : +exec_maven "$@" diff --git a/mvnw.cmd b/mvnw.cmd new file mode 100644 index 0000000..92450f9 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,189 @@ +<# : batch portion +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM http://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Apache Maven Wrapper startup batch script, version 3.3.4 +@REM +@REM Optional ENV vars +@REM MVNW_REPOURL - repo url base for downloading maven distribution +@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output +@REM ---------------------------------------------------------------------------- + +@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) +@SET __MVNW_CMD__= +@SET __MVNW_ERROR__= +@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% +@SET PSModulePath= +@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( + IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) +) +@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% +@SET __MVNW_PSMODULEP_SAVE= +@SET __MVNW_ARG0_NAME__= +@SET MVNW_USERNAME= +@SET MVNW_PASSWORD= +@IF NOT "%__MVNW_CMD__%"=="" ("%__MVNW_CMD__%" %*) +@echo Cannot start maven from wrapper >&2 && exit /b 1 +@GOTO :EOF +: end batch / begin powershell #> + +$ErrorActionPreference = "Stop" +if ($env:MVNW_VERBOSE -eq "true") { + $VerbosePreference = "Continue" +} + +# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties +$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl +if (!$distributionUrl) { + Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" +} + +switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { + "maven-mvnd-*" { + $USE_MVND = $true + $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" + $MVN_CMD = "mvnd.cmd" + break + } + default { + $USE_MVND = $false + $MVN_CMD = $script -replace '^mvnw','mvn' + break + } +} + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +if ($env:MVNW_REPOURL) { + $MVNW_REPO_PATTERN = if ($USE_MVND -eq $False) { "/org/apache/maven/" } else { "/maven/mvnd/" } + $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace "^.*$MVNW_REPO_PATTERN",'')" +} +$distributionUrlName = $distributionUrl -replace '^.*/','' +$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' + +$MAVEN_M2_PATH = "$HOME/.m2" +if ($env:MAVEN_USER_HOME) { + $MAVEN_M2_PATH = "$env:MAVEN_USER_HOME" +} + +if (-not (Test-Path -Path $MAVEN_M2_PATH)) { + New-Item -Path $MAVEN_M2_PATH -ItemType Directory | Out-Null +} + +$MAVEN_WRAPPER_DISTS = $null +if ((Get-Item $MAVEN_M2_PATH).Target[0] -eq $null) { + $MAVEN_WRAPPER_DISTS = "$MAVEN_M2_PATH/wrapper/dists" +} else { + $MAVEN_WRAPPER_DISTS = (Get-Item $MAVEN_M2_PATH).Target[0] + "/wrapper/dists" +} + +$MAVEN_HOME_PARENT = "$MAVEN_WRAPPER_DISTS/$distributionUrlNameMain" +$MAVEN_HOME_NAME = ([System.Security.Cryptography.SHA256]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' +$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" + +if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { + Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" + Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" + exit $? +} + +if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { + Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" +} + +# prepare tmp dir +$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile +$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" +$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null +trap { + if ($TMP_DOWNLOAD_DIR.Exists) { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } + } +} + +New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null + +# Download and Install Apache Maven +Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +Write-Verbose "Downloading from: $distributionUrl" +Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +$webclient = New-Object System.Net.WebClient +if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { + $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) +} +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum +if ($distributionSha256Sum) { + if ($USE_MVND) { + Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." + } + Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash + if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { + Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." + } +} + +# unzip and move +Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null + +# Find the actual extracted directory name (handles snapshots where filename != directory name) +$actualDistributionDir = "" + +# First try the expected directory name (for regular distributions) +$expectedPath = Join-Path "$TMP_DOWNLOAD_DIR" "$distributionUrlNameMain" +$expectedMvnPath = Join-Path "$expectedPath" "bin/$MVN_CMD" +if ((Test-Path -Path $expectedPath -PathType Container) -and (Test-Path -Path $expectedMvnPath -PathType Leaf)) { + $actualDistributionDir = $distributionUrlNameMain +} + +# If not found, search for any directory with the Maven executable (for snapshots) +if (!$actualDistributionDir) { + Get-ChildItem -Path "$TMP_DOWNLOAD_DIR" -Directory | ForEach-Object { + $testPath = Join-Path $_.FullName "bin/$MVN_CMD" + if (Test-Path -Path $testPath -PathType Leaf) { + $actualDistributionDir = $_.Name + } + } +} + +if (!$actualDistributionDir) { + Write-Error "Could not find Maven distribution directory in extracted archive" +} + +Write-Verbose "Found extracted Maven distribution directory: $actualDistributionDir" +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$actualDistributionDir" -NewName $MAVEN_HOME_NAME | Out-Null +try { + Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null +} catch { + if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { + Write-Error "fail to move MAVEN_HOME" + } +} finally { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } +} + +Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..458791a --- /dev/null +++ b/pom.xml @@ -0,0 +1,217 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 4.0.6 + + + ai.decompile + decompile-ai + 0.0.1-SNAPSHOT + + + + + + + + + + + + + + + + + 25 + 2.0.6 + + + + org.springframework.boot + spring-boot-starter-actuator + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-flyway + + + org.springframework.boot + spring-boot-starter-webmvc + + + org.flywaydb + flyway-database-postgresql + + + org.springframework.modulith + spring-modulith-starter-core + + + org.springframework.modulith + spring-modulith-starter-jpa + + + + org.postgresql + postgresql + runtime + + + org.springframework.modulith + spring-modulith-actuator + runtime + + + org.springframework.modulith + spring-modulith-observability + runtime + + + org.springframework.modulith + spring-modulith-runtime + runtime + + + org.projectlombok + lombok + true + + + com.h2database + h2 + test + + + org.springframework.boot + spring-boot-starter-actuator-test + test + + + org.springframework.boot + spring-boot-starter-data-jpa-test + test + + + org.springframework.boot + spring-boot-starter-flyway-test + test + + + org.springframework.boot + spring-boot-starter-webmvc-test + test + + + org.springframework.modulith + spring-modulith-starter-test + test + + + org.springdoc + springdoc-openapi-starter-webmvc-ui + 3.0.2 + + + com.github.docker-java + docker-java + 3.7.1 + compile + + + com.github.docker-java + docker-java-transport-httpclient5 + 3.7.1 + + + org.apache.commons + commons-lang3 + 3.20.0 + compile + + + + + + + org.springframework.modulith + spring-modulith-bom + ${spring-modulith.version} + pom + import + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + default-compile + compile + + compile + + + + + org.projectlombok + lombok + + + + + + default-testCompile + test-compile + + testCompile + + + + + org.projectlombok + lombok + + + + + + + + com.diffplug.spotless + spotless-maven-plugin + 3.6.0 + + + + + + + + + + diff --git a/src/main/java/ai/decompile/DecompileAiApplication.java b/src/main/java/ai/decompile/DecompileAiApplication.java new file mode 100644 index 0000000..c870d53 --- /dev/null +++ b/src/main/java/ai/decompile/DecompileAiApplication.java @@ -0,0 +1,11 @@ +package ai.decompile; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class DecompileAiApplication { + static void main(String[] args) { + SpringApplication.run(DecompileAiApplication.class, args); + } +} diff --git a/src/main/java/ai/decompile/WebConfig.java b/src/main/java/ai/decompile/WebConfig.java new file mode 100644 index 0000000..b42acdd --- /dev/null +++ b/src/main/java/ai/decompile/WebConfig.java @@ -0,0 +1,14 @@ +package ai.decompile; + +import lombok.NonNull; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.servlet.config.annotation.CorsRegistry; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +@Configuration +public class WebConfig implements WebMvcConfigurer { + @Override + public void addCorsMappings(@NonNull CorsRegistry registry) { + registry.addMapping("/**").allowedOrigins("*").allowedMethods("*").allowedHeaders("*"); + } +} diff --git a/src/main/java/ai/decompile/exception/ConflictException.java b/src/main/java/ai/decompile/exception/ConflictException.java new file mode 100644 index 0000000..d02dfaa --- /dev/null +++ b/src/main/java/ai/decompile/exception/ConflictException.java @@ -0,0 +1,7 @@ +package ai.decompile.exception; + +public class ConflictException extends RuntimeException { + public ConflictException(String message) { + super(message); + } +} diff --git a/src/main/java/ai/decompile/exception/ErrorResponse.java b/src/main/java/ai/decompile/exception/ErrorResponse.java new file mode 100644 index 0000000..3f5c7ca --- /dev/null +++ b/src/main/java/ai/decompile/exception/ErrorResponse.java @@ -0,0 +1,6 @@ +package ai.decompile.exception; + +import java.time.Instant; + +public record ErrorResponse( + int status, String error, String message, String path, Instant timestamp) {} diff --git a/src/main/java/ai/decompile/exception/GlobalExceptionHandler.java b/src/main/java/ai/decompile/exception/GlobalExceptionHandler.java new file mode 100644 index 0000000..18b8fd2 --- /dev/null +++ b/src/main/java/ai/decompile/exception/GlobalExceptionHandler.java @@ -0,0 +1,47 @@ +package ai.decompile.exception; + +import jakarta.servlet.http.HttpServletRequest; +import java.time.Instant; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.RestControllerAdvice; + +@RestControllerAdvice +public class GlobalExceptionHandler { + @ExceptionHandler(NotFoundException.class) + public ResponseEntity handleNotFound( + NotFoundException ex, HttpServletRequest request) { + return buildResponse(HttpStatus.NOT_FOUND, ex, request); + } + + @ExceptionHandler(ConflictException.class) + public ResponseEntity handleConflict( + ConflictException ex, HttpServletRequest request) { + return buildResponse(HttpStatus.CONFLICT, ex, request); + } + + @ExceptionHandler(IllegalArgumentException.class) + public ResponseEntity handleBadRequest( + IllegalArgumentException ex, HttpServletRequest request) { + return buildResponse(HttpStatus.BAD_REQUEST, ex, request); + } + + @ExceptionHandler(Exception.class) + public ResponseEntity handleGeneral(Exception ex, HttpServletRequest request) { + return buildResponse(HttpStatus.INTERNAL_SERVER_ERROR, ex, request); + } + + private ResponseEntity buildResponse( + HttpStatus status, Exception ex, HttpServletRequest request) { + var errorResponse = + new ErrorResponse( + status.value(), + status.getReasonPhrase(), + ex.getMessage(), + request.getRequestURI(), + Instant.now()); + + return ResponseEntity.status(status).body(errorResponse); + } +} diff --git a/src/main/java/ai/decompile/exception/NotFoundException.java b/src/main/java/ai/decompile/exception/NotFoundException.java new file mode 100644 index 0000000..5ed0713 --- /dev/null +++ b/src/main/java/ai/decompile/exception/NotFoundException.java @@ -0,0 +1,7 @@ +package ai.decompile.exception; + +public class NotFoundException extends RuntimeException { + public NotFoundException(String message) { + super(message); + } +} diff --git a/src/main/java/ai/decompile/workspace/controller/WorkspaceController.java b/src/main/java/ai/decompile/workspace/controller/WorkspaceController.java new file mode 100644 index 0000000..567b99f --- /dev/null +++ b/src/main/java/ai/decompile/workspace/controller/WorkspaceController.java @@ -0,0 +1,63 @@ +package ai.decompile.workspace.controller; + +import ai.decompile.workspace.model.dto.WorkspaceRequest; +import ai.decompile.workspace.model.dto.WorkspaceResponse; +import ai.decompile.workspace.service.WorkspaceService; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import java.util.List; +import java.util.UUID; +import lombok.RequiredArgsConstructor; +import org.springframework.web.bind.annotation.*; + +@RestController +@RequestMapping("/workspace") +@RequiredArgsConstructor +public class WorkspaceController { + private final WorkspaceService workspaceService; + + @Operation( + summary = "Get a list of workspaces", + description = "Retrieve a list of workspaces, optionally filtered by name.", + tags = {"Workspace"}, + operationId = "getWorkspaces") + @GetMapping + public List getWorkspaces( + @Parameter( + description = "Filter workspaces whose name contains this value (case-insensitive)") + @RequestParam(required = false) + String name) { + return workspaceService.getWorkspaces(name); + } + + @Operation( + summary = "Create a workspace", + description = "Create a workspace", + tags = {"Workspace"}, + operationId = "createWorkspace") + @PostMapping + public WorkspaceResponse createWorkspace(@RequestBody WorkspaceRequest request) { + return workspaceService.createWorkspace(request); + } + + @Operation( + summary = "Update a workspace", + description = "Update a workspace", + tags = {"Workspace"}, + operationId = "updateWorkspace") + @PutMapping("/{id}") + public WorkspaceResponse updateWorkspace( + @PathVariable UUID id, @RequestBody WorkspaceRequest request) { + return workspaceService.updateWorkspace(id, request); + } + + @Operation( + summary = "Delete a workspace", + description = "Delete a workspace", + tags = {"Workspace"}, + operationId = "deleteWorkspace") + @DeleteMapping("/{id}") + public void deleteWorkspace(@PathVariable UUID id) { + workspaceService.deleteWorkspace(id); + } +} diff --git a/src/main/java/ai/decompile/workspace/model/dto/WorkspaceRequest.java b/src/main/java/ai/decompile/workspace/model/dto/WorkspaceRequest.java new file mode 100644 index 0000000..69fbd3a --- /dev/null +++ b/src/main/java/ai/decompile/workspace/model/dto/WorkspaceRequest.java @@ -0,0 +1,5 @@ +package ai.decompile.workspace.model.dto; + +import jakarta.validation.constraints.NotBlank; + +public record WorkspaceRequest(@NotBlank String name, String description) {} diff --git a/src/main/java/ai/decompile/workspace/model/dto/WorkspaceResponse.java b/src/main/java/ai/decompile/workspace/model/dto/WorkspaceResponse.java new file mode 100644 index 0000000..2ad65a5 --- /dev/null +++ b/src/main/java/ai/decompile/workspace/model/dto/WorkspaceResponse.java @@ -0,0 +1,18 @@ +package ai.decompile.workspace.model.dto; + +import ai.decompile.workspace.model.entity.Workspace; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotNull; +import java.time.Instant; +import java.util.UUID; + +public record WorkspaceResponse( + @NotNull UUID id, @NotBlank String name, String description, @NotNull Instant updatedAt) { + public static WorkspaceResponse from(Workspace workspace) { + return new WorkspaceResponse( + workspace.getId(), + workspace.getName(), + workspace.getDescription(), + workspace.getUpdatedAt()); + } +} diff --git a/src/main/java/ai/decompile/workspace/model/entity/Workspace.java b/src/main/java/ai/decompile/workspace/model/entity/Workspace.java new file mode 100644 index 0000000..e381ced --- /dev/null +++ b/src/main/java/ai/decompile/workspace/model/entity/Workspace.java @@ -0,0 +1,35 @@ +package ai.decompile.workspace.model.entity; + +import jakarta.persistence.*; +import java.time.Instant; +import java.util.UUID; +import lombok.*; +import org.hibernate.annotations.CreationTimestamp; +import org.hibernate.annotations.UpdateTimestamp; + +@Entity +@Table(name = "workspaces") +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +@Builder +public class Workspace { + @Id + @GeneratedValue(strategy = GenerationType.UUID) + private UUID id; + + @Column(nullable = false, length = 150) + private String name; + + @Column(length = 500) + private String description; + + @CreationTimestamp + @Column(name = "created_at", nullable = false, updatable = false) + private Instant createdAt; + + @UpdateTimestamp + @Column(name = "updated_at", nullable = false) + private Instant updatedAt; +} diff --git a/src/main/java/ai/decompile/workspace/model/repository/WorkspaceRepository.java b/src/main/java/ai/decompile/workspace/model/repository/WorkspaceRepository.java new file mode 100644 index 0000000..e4d86b3 --- /dev/null +++ b/src/main/java/ai/decompile/workspace/model/repository/WorkspaceRepository.java @@ -0,0 +1,11 @@ +package ai.decompile.workspace.model.repository; + +import ai.decompile.workspace.model.entity.Workspace; +import java.util.UUID; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.JpaSpecificationExecutor; + +public interface WorkspaceRepository + extends JpaRepository, JpaSpecificationExecutor { + boolean existsByNameIgnoreCase(String name); +} diff --git a/src/main/java/ai/decompile/workspace/model/specification/WorkspaceSpecification.java b/src/main/java/ai/decompile/workspace/model/specification/WorkspaceSpecification.java new file mode 100644 index 0000000..3c9712e --- /dev/null +++ b/src/main/java/ai/decompile/workspace/model/specification/WorkspaceSpecification.java @@ -0,0 +1,13 @@ +package ai.decompile.workspace.model.specification; + +import ai.decompile.workspace.model.entity.Workspace; +import org.springframework.data.jpa.domain.Specification; + +public class WorkspaceSpecification { + + private WorkspaceSpecification() {} + + public static Specification nameContains(String name) { + return (root, _, cb) -> cb.like(cb.lower(root.get("name")), "%" + name.toLowerCase() + "%"); + } +} diff --git a/src/main/java/ai/decompile/workspace/service/WorkspaceService.java b/src/main/java/ai/decompile/workspace/service/WorkspaceService.java new file mode 100644 index 0000000..7276478 --- /dev/null +++ b/src/main/java/ai/decompile/workspace/service/WorkspaceService.java @@ -0,0 +1,63 @@ +package ai.decompile.workspace.service; + +import ai.decompile.exception.ConflictException; +import ai.decompile.exception.NotFoundException; +import ai.decompile.workspace.model.dto.WorkspaceRequest; +import ai.decompile.workspace.model.dto.WorkspaceResponse; +import ai.decompile.workspace.model.entity.Workspace; +import ai.decompile.workspace.model.repository.WorkspaceRepository; +import ai.decompile.workspace.model.specification.WorkspaceSpecification; +import java.util.List; +import java.util.UUID; +import lombok.RequiredArgsConstructor; +import org.apache.commons.lang3.StringUtils; +import org.springframework.stereotype.Service; + +@Service +@RequiredArgsConstructor +public class WorkspaceService { + private final WorkspaceRepository workspaceRepository; + + public List getWorkspaces(String name) { + if (StringUtils.isNotBlank(name)) { + return workspaceRepository.findAll(WorkspaceSpecification.nameContains(name)).stream() + .map(WorkspaceResponse::from) + .toList(); + } + + return workspaceRepository.findAll().stream().map(WorkspaceResponse::from).toList(); + } + + public WorkspaceResponse createWorkspace(WorkspaceRequest request) { + if (workspaceRepository.existsByNameIgnoreCase(request.name())) { + throw new ConflictException( + "A workspace with the name '" + request.name() + "' already exists."); + } + + var workspace = + workspaceRepository.save( + Workspace.builder().name(request.name()).description(request.description()).build()); + + return WorkspaceResponse.from(workspace); + } + + public WorkspaceResponse updateWorkspace(UUID id, WorkspaceRequest request) { + var workspace = getWorkspace(id); + + workspace.setName(request.name()); + workspace.setDescription(request.description()); + + return WorkspaceResponse.from(workspaceRepository.save(workspace)); + } + + public void deleteWorkspace(UUID id) { + var workspace = getWorkspace(id); + workspaceRepository.delete(workspace); + } + + private Workspace getWorkspace(UUID id) { + return workspaceRepository + .findById(id) + .orElseThrow(() -> new NotFoundException("Workspace with id '" + id + "' not found")); + } +} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..51aa7d6 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,16 @@ +spring: + application: + name: decompile-ai + datasource: + url: jdbc:postgresql://localhost:5432/decompile_ai + username: decompile_ai + password: decompile_ai + jpa: + hibernate: + ddl-auto: validate + flyway: + enabled: true + +logging: + level: + org.springframework.modulith: DEBUG diff --git a/src/main/resources/db/migration/V001__create_event_publication_table.sql b/src/main/resources/db/migration/V001__create_event_publication_table.sql new file mode 100644 index 0000000..7b0d9cf --- /dev/null +++ b/src/main/resources/db/migration/V001__create_event_publication_table.sql @@ -0,0 +1,15 @@ +CREATE TABLE IF NOT EXISTS event_publication +( + id UUID NOT NULL, + listener_id TEXT NOT NULL, + event_type TEXT NOT NULL, + serialized_event TEXT NOT NULL, + publication_date TIMESTAMP WITH TIME ZONE NOT NULL, + completion_date TIMESTAMP WITH TIME ZONE, + status TEXT, + completion_attempts INT, + last_resubmission_date TIMESTAMP WITH TIME ZONE, + PRIMARY KEY (id) +); +CREATE INDEX IF NOT EXISTS event_publication_serialized_event_hash_idx ON event_publication USING hash (serialized_event); +CREATE INDEX IF NOT EXISTS event_publication_by_completion_date_idx ON event_publication (completion_date); \ No newline at end of file diff --git a/src/main/resources/db/migration/V002__create_workspaces_table.sql b/src/main/resources/db/migration/V002__create_workspaces_table.sql new file mode 100644 index 0000000..b09f444 --- /dev/null +++ b/src/main/resources/db/migration/V002__create_workspaces_table.sql @@ -0,0 +1,8 @@ +CREATE TABLE workspaces +( + id UUID PRIMARY KEY, + name VARCHAR(150) NOT NULL, + description VARCHAR(500), + created_at TIMESTAMP WITH TIME ZONE NOT NULL, + updated_at TIMESTAMP WITH TIME ZONE NOT NULL +); \ No newline at end of file diff --git a/src/test/java/ai/decompile/decompile_ai/DecompileAiApplicationTests.java b/src/test/java/ai/decompile/decompile_ai/DecompileAiApplicationTests.java new file mode 100644 index 0000000..302502a --- /dev/null +++ b/src/test/java/ai/decompile/decompile_ai/DecompileAiApplicationTests.java @@ -0,0 +1,11 @@ +package ai.decompile.decompile_ai; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class DecompileAiApplicationTests { + + @Test + void contextLoads() {} +} diff --git a/src/test/java/ai/decompile/workspace/controller/WorkspaceControllerTest.java b/src/test/java/ai/decompile/workspace/controller/WorkspaceControllerTest.java new file mode 100644 index 0000000..099d233 --- /dev/null +++ b/src/test/java/ai/decompile/workspace/controller/WorkspaceControllerTest.java @@ -0,0 +1,149 @@ +package ai.decompile.workspace.controller; + +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.ArgumentMatchers.isNull; +import static org.mockito.Mockito.*; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*; + +import ai.decompile.exception.ConflictException; +import ai.decompile.exception.NotFoundException; +import ai.decompile.workspace.model.dto.WorkspaceRequest; +import ai.decompile.workspace.model.dto.WorkspaceResponse; +import ai.decompile.workspace.service.WorkspaceService; +import com.fasterxml.jackson.databind.ObjectMapper; +import java.time.Instant; +import java.util.List; +import java.util.UUID; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.webmvc.test.autoconfigure.WebMvcTest; +import org.springframework.http.MediaType; +import org.springframework.test.context.bean.override.mockito.MockitoBean; +import org.springframework.test.web.servlet.MockMvc; + +@WebMvcTest(WorkspaceController.class) +class WorkspaceControllerTest { + + @Autowired private MockMvc mockMvc; + + @MockitoBean private WorkspaceService workspaceService; + + private final ObjectMapper objectMapper = new ObjectMapper(); + + @Test + void getWorkspacesShouldReturn200WithList() throws Exception { + var id = UUID.randomUUID(); + var response = new WorkspaceResponse(id, "Test", "Desc", Instant.now()); + when(workspaceService.getWorkspaces(isNull())).thenReturn(List.of(response)); + + mockMvc + .perform(get("/workspace")) + .andExpect(status().isOk()) + .andExpect(jsonPath("$[0].id").value(id.toString())) + .andExpect(jsonPath("$[0].name").value("Test")) + .andExpect(jsonPath("$[0].description").value("Desc")); + } + + @Test + void getWorkspacesShouldFilterByName() throws Exception { + var id = UUID.randomUUID(); + var response = new WorkspaceResponse(id, "Filtered", "Desc", Instant.now()); + when(workspaceService.getWorkspaces(eq("fil"))).thenReturn(List.of(response)); + + mockMvc + .perform(get("/workspace").param("name", "fil")) + .andExpect(status().isOk()) + .andExpect(jsonPath("$[0].id").value(id.toString())) + .andExpect(jsonPath("$[0].name").value("Filtered")); + } + + @Test + void createWorkspaceShouldReturn200() throws Exception { + var id = UUID.randomUUID(); + var request = new WorkspaceRequest("New Workspace", "A description"); + var response = new WorkspaceResponse(id, "New Workspace", "A description", Instant.now()); + when(workspaceService.createWorkspace(any())).thenReturn(response); + + mockMvc + .perform( + post("/workspace") + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(request))) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.id").value(id.toString())) + .andExpect(jsonPath("$.name").value("New Workspace")); + } + + @Test + void createWorkspaceShouldReturn409OnConflict() throws Exception { + var request = new WorkspaceRequest("Duplicate", "desc"); + when(workspaceService.createWorkspace(any())) + .thenThrow(new ConflictException("A workspace with the name 'Duplicate' already exists.")); + + mockMvc + .perform( + post("/workspace") + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(request))) + .andExpect(status().isConflict()) + .andExpect(jsonPath("$.status").value(409)) + .andExpect(jsonPath("$.error").value("Conflict")); + } + + @Test + void updateWorkspaceShouldReturn200() throws Exception { + var id = UUID.randomUUID(); + var request = new WorkspaceRequest("Updated", "Updated desc"); + var response = new WorkspaceResponse(id, "Updated", "Updated desc", Instant.now()); + when(workspaceService.updateWorkspace(eq(id), any())).thenReturn(response); + + mockMvc + .perform( + put("/workspace/{id}", id) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(request))) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.name").value("Updated")); + } + + @Test + void updateWorkspaceShouldReturn404OnNotFound() throws Exception { + var id = UUID.randomUUID(); + var request = new WorkspaceRequest("Updated", "Updated desc"); + when(workspaceService.updateWorkspace(eq(id), any())) + .thenThrow(new NotFoundException("Workspace with id '" + id + "' not found")); + + mockMvc + .perform( + put("/workspace/{id}", id) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(request))) + .andExpect(status().isNotFound()) + .andExpect(jsonPath("$.status").value(404)) + .andExpect(jsonPath("$.error").value("Not Found")); + } + + @Test + void deleteWorkspaceShouldReturn200() throws Exception { + var id = UUID.randomUUID(); + doNothing().when(workspaceService).deleteWorkspace(id); + + mockMvc.perform(delete("/workspace/{id}", id)).andExpect(status().isOk()); + } + + @Test + void deleteWorkspaceShouldReturn404OnNotFound() throws Exception { + var id = UUID.randomUUID(); + doThrow(new NotFoundException("Workspace with id '" + id + "' not found")) + .when(workspaceService) + .deleteWorkspace(id); + + mockMvc + .perform(delete("/workspace/{id}", id)) + .andExpect(status().isNotFound()) + .andExpect(jsonPath("$.status").value(404)) + .andExpect(jsonPath("$.error").value("Not Found")); + } +} diff --git a/src/test/java/ai/decompile/workspace/controller/WorkspaceIntegrationTest.java b/src/test/java/ai/decompile/workspace/controller/WorkspaceIntegrationTest.java new file mode 100644 index 0000000..00b3058 --- /dev/null +++ b/src/test/java/ai/decompile/workspace/controller/WorkspaceIntegrationTest.java @@ -0,0 +1,135 @@ +package ai.decompile.workspace.controller; + +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*; + +import ai.decompile.workspace.model.dto.WorkspaceRequest; +import ai.decompile.workspace.model.dto.WorkspaceResponse; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.webmvc.test.autoconfigure.AutoConfigureMockMvc; +import org.springframework.http.MediaType; +import org.springframework.test.context.ActiveProfiles; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.transaction.annotation.Transactional; + +@SpringBootTest +@AutoConfigureMockMvc +@ActiveProfiles("test") +@Transactional +class WorkspaceIntegrationTest { + + @Autowired private MockMvc mockMvc; + + private final ObjectMapper objectMapper = new ObjectMapper(); + + @Test + void getWorkspacesShouldReturnEmptyList() throws Exception { + mockMvc + .perform(get("/workspace")) + .andExpect(status().isOk()) + .andExpect(jsonPath("$").isArray()) + .andExpect(jsonPath("$").isEmpty()); + } + + @Test + void getWorkspacesShouldFilterByName() throws Exception { + var requestA = new WorkspaceRequest("Alpha Project", "desc"); + var requestB = new WorkspaceRequest("Beta Test", "desc"); + + mockMvc + .perform( + post("/workspace") + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(requestA))) + .andExpect(status().isOk()); + + mockMvc + .perform( + post("/workspace") + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(requestB))) + .andExpect(status().isOk()); + + mockMvc + .perform(get("/workspace").param("name", "alpha")) + .andExpect(status().isOk()) + .andExpect(jsonPath("$").isArray()) + .andExpect(jsonPath("$.length()").value(1)) + .andExpect(jsonPath("$[0].name").value("Alpha Project")); + } + + @Test + void fullCrudFlow() throws Exception { + var request = new WorkspaceRequest("CRUD Test", "CRUD Description"); + + var createdJson = + mockMvc + .perform( + post("/workspace") + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(request))) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.name").value("CRUD Test")) + .andReturn() + .getResponse() + .getContentAsString(); + + var created = objectMapper.readValue(createdJson, WorkspaceResponse.class); + + var updateRequest = new WorkspaceRequest("CRUD Updated", "Updated Description"); + mockMvc + .perform( + put("/workspace/{id}", created.id()) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(updateRequest))) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.name").value("CRUD Updated")); + + mockMvc.perform(delete("/workspace/{id}", created.id())).andExpect(status().isOk()); + + mockMvc.perform(delete("/workspace/{id}", created.id())).andExpect(status().isNotFound()); + } + + @Test + void createWorkspaceShouldReturn409OnDuplicateName() throws Exception { + var request = new WorkspaceRequest("Unique Name", "desc"); + + mockMvc + .perform( + post("/workspace") + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(request))) + .andExpect(status().isOk()); + + mockMvc + .perform( + post("/workspace") + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(request))) + .andExpect(status().isConflict()) + .andExpect(jsonPath("$.status").value(409)) + .andExpect(jsonPath("$.error").value("Conflict")); + } + + @Test + void nonexistentWorkspaceShouldReturn404() throws Exception { + var nonExistentId = "00000000-0000-0000-0000-000000000000"; + var request = new WorkspaceRequest("Update", "desc"); + + mockMvc + .perform( + put("/workspace/{id}", nonExistentId) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(request))) + .andExpect(status().isNotFound()) + .andExpect(jsonPath("$.status").value(404)); + + mockMvc + .perform(delete("/workspace/{id}", nonExistentId)) + .andExpect(status().isNotFound()) + .andExpect(jsonPath("$.status").value(404)); + } +} diff --git a/src/test/java/ai/decompile/workspace/service/WorkspaceServiceTest.java b/src/test/java/ai/decompile/workspace/service/WorkspaceServiceTest.java new file mode 100644 index 0000000..8dc7527 --- /dev/null +++ b/src/test/java/ai/decompile/workspace/service/WorkspaceServiceTest.java @@ -0,0 +1,149 @@ +package ai.decompile.workspace.service; + +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.*; + +import ai.decompile.exception.ConflictException; +import ai.decompile.exception.NotFoundException; +import ai.decompile.workspace.model.dto.WorkspaceRequest; +import ai.decompile.workspace.model.dto.WorkspaceResponse; +import ai.decompile.workspace.model.entity.Workspace; +import ai.decompile.workspace.model.repository.WorkspaceRepository; +import java.time.Instant; +import java.util.List; +import java.util.Optional; +import java.util.UUID; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; +import org.springframework.data.jpa.domain.Specification; + +@ExtendWith(MockitoExtension.class) +class WorkspaceServiceTest { + + @Mock private WorkspaceRepository workspaceRepository; + + @InjectMocks private WorkspaceService workspaceService; + + private UUID id; + private Workspace workspace; + private WorkspaceRequest request; + + @BeforeEach + void setUp() { + id = UUID.randomUUID(); + workspace = + Workspace.builder() + .id(id) + .name("Test Workspace") + .description("Test Description") + .createdAt(Instant.now()) + .updatedAt(Instant.now()) + .build(); + request = new WorkspaceRequest("Test Workspace", "Test Description"); + } + + @Test + void getWorkspacesShouldReturnEmptyList() { + when(workspaceRepository.findAll()).thenReturn(List.of()); + + List result = workspaceService.getWorkspaces(null); + + assertTrue(result.isEmpty()); + verify(workspaceRepository).findAll(); + } + + @Test + void getWorkspacesShouldReturnList() { + when(workspaceRepository.findAll()).thenReturn(List.of(workspace)); + + List result = workspaceService.getWorkspaces(null); + + assertEquals(1, result.size()); + assertEquals(id, result.getFirst().id()); + assertEquals("Test Workspace", result.getFirst().name()); + } + + @Test + void getWorkspacesShouldFilterByName() { + when(workspaceRepository.findAll(any(Specification.class))).thenReturn(List.of(workspace)); + + List result = workspaceService.getWorkspaces("test"); + + assertEquals(1, result.size()); + assertEquals("Test Workspace", result.getFirst().name()); + verify(workspaceRepository).findAll(any(Specification.class)); + } + + @Test + void createWorkspaceShouldSucceed() { + when(workspaceRepository.existsByNameIgnoreCase(request.name())).thenReturn(false); + when(workspaceRepository.save(any(Workspace.class))).thenReturn(workspace); + + WorkspaceResponse result = workspaceService.createWorkspace(request); + + assertEquals(id, result.id()); + assertEquals("Test Workspace", result.name()); + verify(workspaceRepository).existsByNameIgnoreCase(request.name()); + verify(workspaceRepository).save(any(Workspace.class)); + } + + @Test + void createWorkspaceShouldThrowConflictWhenNameExists() { + when(workspaceRepository.existsByNameIgnoreCase(request.name())).thenReturn(true); + + ConflictException ex = + assertThrows(ConflictException.class, () -> workspaceService.createWorkspace(request)); + + assertTrue(ex.getMessage().contains("Test Workspace")); + verify(workspaceRepository, never()).save(any()); + } + + @Test + void updateWorkspaceShouldSucceed() { + when(workspaceRepository.findById(id)).thenReturn(Optional.of(workspace)); + when(workspaceRepository.save(any(Workspace.class))).thenReturn(workspace); + + WorkspaceResponse result = workspaceService.updateWorkspace(id, request); + + assertEquals(id, result.id()); + verify(workspaceRepository).findById(id); + verify(workspaceRepository).save(any(Workspace.class)); + } + + @Test + void updateWorkspaceShouldThrowNotFound() { + when(workspaceRepository.findById(id)).thenReturn(Optional.empty()); + + NotFoundException ex = + assertThrows(NotFoundException.class, () -> workspaceService.updateWorkspace(id, request)); + + assertTrue(ex.getMessage().contains(id.toString())); + verify(workspaceRepository, never()).save(any()); + } + + @Test + void deleteWorkspaceShouldSucceed() { + when(workspaceRepository.findById(id)).thenReturn(Optional.of(workspace)); + + workspaceService.deleteWorkspace(id); + + verify(workspaceRepository).findById(id); + verify(workspaceRepository).delete(workspace); + } + + @Test + void deleteWorkspaceShouldThrowNotFound() { + when(workspaceRepository.findById(id)).thenReturn(Optional.empty()); + + NotFoundException ex = + assertThrows(NotFoundException.class, () -> workspaceService.deleteWorkspace(id)); + + assertTrue(ex.getMessage().contains(id.toString())); + verify(workspaceRepository, never()).delete(any(Workspace.class)); + } +} diff --git a/src/test/resources/application-test.yml b/src/test/resources/application-test.yml new file mode 100644 index 0000000..95e7d17 --- /dev/null +++ b/src/test/resources/application-test.yml @@ -0,0 +1,11 @@ +spring: + datasource: + url: jdbc:h2:mem:testdb;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE;DEFAULT_NULL_ORDERING=HIGH + username: sa + password: + driver-class-name: org.h2.Driver + jpa: + hibernate: + ddl-auto: create-drop + flyway: + enabled: false