From 0a8e30dbd76c11fd8506425cb96f38257264785a Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 21 May 2025 15:05:12 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E5=88=B0git?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 2 + .gitignore | 33 +++ .mvn/wrapper/maven-wrapper.properties | 19 ++ DogDemo.log | 0 mvnw | 259 ++++++++++++++++++ mvnw.cmd | 149 ++++++++++ pom.xml | 172 ++++++++++++ .../dogdemo/DogDemoApplication.java | 15 + .../dogdemo/common/ApiResponse.java | 44 +++ .../dogdemo/common/ResultCode.java | 82 ++++++ .../dogdemo/config/CorsConfig.java | 17 ++ .../config/security/SecurityConfig.java | 64 +++++ .../filter/JwtAuthenticationFilter.java | 61 +++++ .../dogdemo/controller/UserController.java | 67 +++++ .../jp/springp0421/dogdemo/dto/LoginDto.java | 32 +++ .../dogdemo/dto/RegistrationDto.java | 49 ++++ .../jp/springp0421/dogdemo/dto/UserDto.java | 24 ++ .../springp0421/dogdemo/entity/PetEntity.java | 30 ++ .../dogdemo/entity/UserEntity.java | 20 ++ .../dogdemo/exception/BusinessException.java | 38 +++ .../exception/GlobalExceptionHandler.java | 124 +++++++++ .../dogdemo/mapper/UserRepository.xml | 18 ++ .../dogdemo/repository/UserRepository.java | 15 + .../dogdemo/service/JwtService.java | 105 +++++++ .../dogdemo/service/UserService.java | 75 +++++ src/main/resources/application.properties | 16 ++ .../dogdemo/DogDemoApplicationTests.java | 13 + 27 files changed, 1543 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .mvn/wrapper/maven-wrapper.properties create mode 100644 DogDemo.log create mode 100644 mvnw create mode 100644 mvnw.cmd create mode 100644 pom.xml create mode 100644 src/main/java/co/jp/springp0421/dogdemo/DogDemoApplication.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/common/ApiResponse.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/common/ResultCode.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/config/CorsConfig.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/config/security/SecurityConfig.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/config/security/filter/JwtAuthenticationFilter.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/controller/UserController.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/dto/LoginDto.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/dto/RegistrationDto.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/dto/UserDto.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/entity/PetEntity.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/entity/UserEntity.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/exception/BusinessException.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/exception/GlobalExceptionHandler.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/mapper/UserRepository.xml create mode 100644 src/main/java/co/jp/springp0421/dogdemo/repository/UserRepository.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/service/JwtService.java create mode 100644 src/main/java/co/jp/springp0421/dogdemo/service/UserService.java create mode 100644 src/main/resources/application.properties create mode 100644 src/test/java/co/jp/springp0421/dogdemo/DogDemoApplicationTests.java 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..549e00a --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..d58dfb7 --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,19 @@ +# 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. +wrapperVersion=3.3.2 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip diff --git a/DogDemo.log b/DogDemo.log new file mode 100644 index 0000000..e69de29 diff --git a/mvnw b/mvnw new file mode 100644 index 0000000..19529dd --- /dev/null +++ b/mvnw @@ -0,0 +1,259 @@ +#!/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.2 +# +# 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:]' +} + +# 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 <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.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${0##*/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 +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$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..249bdf3 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,149 @@ +<# : 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.2 +@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) { "/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_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" +if ($env:MAVEN_USER_HOME) { + $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" +} +$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::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 +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -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..b6a052c --- /dev/null +++ b/pom.xml @@ -0,0 +1,172 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.4.5 + + + co.jp.springP0421 + DogDemo + 0.0.1-SNAPSHOT + DogDemo + DogDemo + + + + + + + + + + + + + + + 17 + 3.4.0 + 1.0.0 + 2024.0.1 + + + + + com.baomidou + mybatis-plus-boot-starter + 3.5.12 + + + io.jsonwebtoken + jjwt-api + 0.11.5 + + + org.springframework.boot + spring-boot-starter-data-rest + + + org.springframework.boot + spring-boot-starter-security + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.shell + spring-shell-starter + + + + com.mysql + mysql-connector-j + runtime + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.restdocs + spring-restdocs-mockmvc + test + + + org.springframework.security + spring-security-test + test + + + org.springframework.shell + spring-shell-starter-test + test + + + + org.jetbrains + annotations + 13.0 + compile + + + org.springframework.cloud + spring-cloud-config-server + + + + + + org.springframework.shell + spring-shell-dependencies + ${spring-shell.version} + pom + import + + + org.springframework.cloud + spring-cloud-dependencies + ${spring-cloud.version} + pom + import + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + org.projectlombok + lombok + + + + + + org.asciidoctor + asciidoctor-maven-plugin + 2.2.1 + + + generate-docs + prepare-package + + process-asciidoc + + + html + book + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + diff --git a/src/main/java/co/jp/springp0421/dogdemo/DogDemoApplication.java b/src/main/java/co/jp/springp0421/dogdemo/DogDemoApplication.java new file mode 100644 index 0000000..d12b66e --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/DogDemoApplication.java @@ -0,0 +1,15 @@ +package co.jp.springp0421.dogdemo; + +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +@MapperScan("co.jp.springp0421.dogdemo.repository") +public class DogDemoApplication { + + public static void main(String[] args) { + SpringApplication.run(DogDemoApplication.class, args); + } + +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/common/ApiResponse.java b/src/main/java/co/jp/springp0421/dogdemo/common/ApiResponse.java new file mode 100644 index 0000000..5ff5dd4 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/common/ApiResponse.java @@ -0,0 +1,44 @@ +package co.jp.springp0421.dogdemo.common; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@AllArgsConstructor +@NoArgsConstructor +public class ApiResponse { + //成功状况判定 + private boolean success; + //状态码 + private int code; + //状态信息 + private String message; + //数据 + private T data; + + public static ApiResponse success(T data) { + + return new ApiResponse<>(true, ResultCode.SUCCESS.getCode(), ResultCode.SUCCESS.getMessage(), data); + } + + public static ApiResponse success() { // 通常也会有一个不带数据的成功响应 + return new ApiResponse<>(true, ResultCode.SUCCESS.getCode(), ResultCode.SUCCESS.getMessage(), null); + } + + public static ApiResponse fail(ResultCode resultCode) { + if (resultCode == ResultCode.SUCCESS) { + throw new IllegalArgumentException("Cannot use SUCCESS ResultCode for fail method. Use a specific error code."); + } + // 修正:success 应为 false,并从 resultCode 获取 code 和 message + return new ApiResponse<>(false, resultCode.getCode(), resultCode.getMessage(), null); + } + + public static ApiResponse fail(ResultCode resultCode, T data) { + if (resultCode == ResultCode.SUCCESS) { + throw new IllegalArgumentException("Cannot use SUCCESS ResultCode for fail method. Use a specific error code."); + } + // 修正:success 应为 false,并从 resultCode 获取 code 和 message + return new ApiResponse<>(false, resultCode.getCode(), resultCode.getMessage(), data); + } +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/common/ResultCode.java b/src/main/java/co/jp/springp0421/dogdemo/common/ResultCode.java new file mode 100644 index 0000000..1e96910 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/common/ResultCode.java @@ -0,0 +1,82 @@ +package co.jp.springp0421.dogdemo.common; + +import lombok.Getter; + +@Getter +public enum ResultCode { + + SUCCESS(200, "Success"), + + // 客户端错误段 (1000 - 1999) + BAD_REQUEST(1000, "HTTP 400 Bad Request"), + UNAUTHORIZED(1001, "HTTP 401 Unauthorized"), + FORBIDDEN(1002, "HTTP 403 Forbidden"), + NOT_FOUND(1003, "HTTP 404 Not Found"), + METHOD_NOT_ALLOWED(1004, "HTTP 405 Method Not Allowed"), + REQUEST_TIMEOUT(1005, "HTTP 408 Request Timeout"), + CONFLICT(1006, "HTTP 409 Conflict"), + UNSUPPORTED_MEDIA_TYPE(1007, "HTTP 415 Unsupported Media Type"), + TOO_MANY_REQUESTS(1008, "HTTP 429 Too Many Requests"), + VALIDATION_ERROR(1009, "Parameter validation failure"), + + // 服务端错误段 (2000 - 2999) + INTERNAL_SERVER_ERROR(2000, "HTTP 500 Internal Server Error"), + SERVICE_UNAVAILABLE(2001, "HTTP 503 Service Unavailable"), + GATEWAY_TIMEOUT(2002, "HTTP 504 Gateway Timeout"), + DATABASE_ERROR(2003, "Database error"), + NETWORK_ERROR(2004, "Network error"), + THIRD_PARTY_SERVICE_ERROR(2005, "Third-party service error"), + + // ================================== 用户模块状态码 (3000 - 3999) ================================== + // 注册相关 + // USER_REGISTRATION_SUCCESS(3000, "用户注册成功"), + USER_EMAIL_ALREADY_EXISTS(3001, "Email already exists"), + + USER_USERNAME_ALREADY_EXISTS(3002, "Username"), + + USER_EMAIL_NOT_VALID(3006, "Email is not valid"), + + USER_PASSWORD_TOO_SHORT(3003, "password too short"), + USER_PASSWORD_TOO_WEAK(3004, "password too weak"), + USER_REGISTRATION_FAILED(3005, "User registration failed"), + + // 登录相关 + // USER_LOGIN_SUCCESS(3100, "登录成功"), + USER_ACCOUNT_NOT_FOUND(3101, "User account not found"), + USER_INVALID_CREDENTIALS(3102, "User invalid credentials"), + USER_ACCOUNT_LOCKED(3103, "User account locked"), + USER_ACCOUNT_DISABLED(3104, "User account disabled"), + USER_ACCOUNT_EXPIRED(3105, "User account expired"), + USER_LOGIN_FAILED(3106, "User login failed"), + USER_SESSION_EXPIRED(3107, "User session expired"), + USER_TOKEN_INVALID(3108, "User token invalid"), + USER_TOKEN_EXPIRED(3109, "User token expired(Token"), + USER_REFRESH_TOKEN_INVALID(3110, "User refresh token invalid"), + // USER_REFRESH_TOKEN_EXPIRED(3111, "User refresh token expired(Refresh Token"), + USER_LOGOUT_SUCCESS(3112, "loignout success"), + + // 用户信息相关 + USER_PROFILE_NOT_FOUND(3200, "User profile not found"), + USER_UPDATE_PROFILE_SUCCESS(3201, "User profile updated"), + USER_UPDATE_PROFILE_FAILED(3202, "User profile update failed"), + USER_CHANGE_PASSWORD_SUCCESS(3203, "Change password success"), + USER_CHANGE_PASSWORD_FAILED(3204, "Change password failed"), + USER_OLD_PASSWORD_MISMATCH(3205, "Old password mismatch"), + + // 权限相关 (如果你的用户模块包含复杂权限) + // USER_PERMISSION_DENIED(3300, "用户权限不足(细粒度)"), // 可用于补充 FORBIDDEN + + ; + + private final int code; + private final String message; + + ResultCode(int code, String message) { + this.code = code; + this.message = message; + } + + public String getMessage(String customDetail) { + return this.message + (customDetail == null || customDetail.isEmpty() ? "" : " (" + customDetail + ")"); + } +} \ No newline at end of file diff --git a/src/main/java/co/jp/springp0421/dogdemo/config/CorsConfig.java b/src/main/java/co/jp/springp0421/dogdemo/config/CorsConfig.java new file mode 100644 index 0000000..875732a --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/config/CorsConfig.java @@ -0,0 +1,17 @@ +package co.jp.springp0421.dogdemo.config; + +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 CorsConfig implements WebMvcConfigurer { + + @Override + public void addCorsMappings(CorsRegistry registry) { + registry.addMapping("/api/**") // 允许 /api/ 下的所有请求 + .allowedOrigins("http://localhost:1024") // 允许来自该域的请求 + .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // 允许的 HTTP 方法 + .allowedHeaders("*"); // 允许所有头部 + } +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/config/security/SecurityConfig.java b/src/main/java/co/jp/springp0421/dogdemo/config/security/SecurityConfig.java new file mode 100644 index 0000000..275bd95 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/config/security/SecurityConfig.java @@ -0,0 +1,64 @@ +package co.jp.springp0421.dogdemo.config.security; + +import co.jp.springp0421.dogdemo.config.security.filter.JwtAuthenticationFilter; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.Lazy; +import org.springframework.security.authentication.AuthenticationManager; +import org.springframework.security.authentication.AuthenticationProvider; +import org.springframework.security.authentication.dao.DaoAuthenticationProvider; +import org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; +import org.springframework.security.config.http.SessionCreationPolicy; +import org.springframework.security.core.userdetails.UserDetailsService; +import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; +import org.springframework.security.crypto.password.PasswordEncoder; +import org.springframework.security.web.SecurityFilterChain; +import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter; + +@Configuration +public class SecurityConfig { + + private final JwtAuthenticationFilter jwtAuthenticationFilter; + private final UserDetailsService userDetailsService; + + public SecurityConfig(@Lazy JwtAuthenticationFilter jwtAuthenticationFilter, @Lazy UserDetailsService userDetailsService) { + this.jwtAuthenticationFilter = jwtAuthenticationFilter; + this.userDetailsService = userDetailsService; + } + + @Bean + public PasswordEncoder passwordEncoder() { + return new BCryptPasswordEncoder(); + } + + @Bean + public AuthenticationProvider authenticationProvider() { + DaoAuthenticationProvider authProvider = new DaoAuthenticationProvider(); + authProvider.setUserDetailsService(userDetailsService); + authProvider.setPasswordEncoder(passwordEncoder()); + return authProvider; + } + + @Bean + public AuthenticationManager authenticationManager(AuthenticationConfiguration authenticationConfiguration) throws Exception { + return authenticationConfiguration.getAuthenticationManager(); + } + + // http config + @Bean + public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { + http.csrf(AbstractHttpConfigurer::disable) + .sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS)) + .authorizeHttpRequests(auth -> auth + .requestMatchers("/api/user/login", "/api/user/register", "/api/inuhouse", "/api/dogs/pet").permitAll() + .anyRequest().authenticated() + ) + .authenticationProvider(authenticationProvider()) + .addFilterBefore(jwtAuthenticationFilter, UsernamePasswordAuthenticationFilter.class); + + return http.build(); + } + +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/config/security/filter/JwtAuthenticationFilter.java b/src/main/java/co/jp/springp0421/dogdemo/config/security/filter/JwtAuthenticationFilter.java new file mode 100644 index 0000000..e9994ea --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/config/security/filter/JwtAuthenticationFilter.java @@ -0,0 +1,61 @@ +package co.jp.springp0421.dogdemo.config.security.filter; + +import co.jp.springp0421.dogdemo.service.JwtService; +import jakarta.servlet.FilterChain; +import jakarta.servlet.ServletException; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import org.springframework.lang.NonNull; +import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; +import org.springframework.security.core.context.SecurityContextHolder; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.security.core.userdetails.UserDetailsService; +import org.springframework.security.web.authentication.WebAuthenticationDetailsSource; +import org.springframework.stereotype.Component; +import org.springframework.web.filter.OncePerRequestFilter; + +import java.io.IOException; + +@Component +public class JwtAuthenticationFilter extends OncePerRequestFilter { + + private final JwtService jwtService; + private final UserDetailsService userDetailsService; + + public JwtAuthenticationFilter(JwtService jwtService, UserDetailsService userDetailsService) { + this.jwtService = jwtService; + this.userDetailsService = userDetailsService; + } + + @Override + protected void doFilterInternal(@NonNull HttpServletRequest request, @NonNull HttpServletResponse response, @NonNull FilterChain filterChain) + throws ServletException, IOException { + + final String authHeader = request.getHeader("Authorization"); + final String jwt; + final String username; + + //不需要token,直接返回Chain + if (authHeader == null || !authHeader.startsWith("Bearer ")) { + filterChain.doFilter(request, response); + return; + } + + //透过token读取username + jwt = authHeader.substring(7); + username = jwtService.extractUsername(jwt); + + //如果username为空且认证为空 + if (username != null && SecurityContextHolder.getContext().getAuthentication() == null) { + UserDetails userDetails = this.userDetailsService.loadUserByUsername(username); + if (jwtService.isTokenValid(jwt, userDetails)) { + UsernamePasswordAuthenticationToken authToken = + new UsernamePasswordAuthenticationToken(userDetails, null, userDetails.getAuthorities()); + + authToken.setDetails(new WebAuthenticationDetailsSource().buildDetails(request)); + SecurityContextHolder.getContext().setAuthentication(authToken); + } + } + filterChain.doFilter(request, response); + } +} \ No newline at end of file diff --git a/src/main/java/co/jp/springp0421/dogdemo/controller/UserController.java b/src/main/java/co/jp/springp0421/dogdemo/controller/UserController.java new file mode 100644 index 0000000..0295c1a --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/controller/UserController.java @@ -0,0 +1,67 @@ +package co.jp.springp0421.dogdemo.controller; + +import co.jp.springp0421.dogdemo.common.ApiResponse; +import co.jp.springp0421.dogdemo.dto.LoginDto; +import co.jp.springp0421.dogdemo.dto.RegistrationDto; +import co.jp.springp0421.dogdemo.dto.UserDto; +import co.jp.springp0421.dogdemo.entity.UserEntity; +import co.jp.springp0421.dogdemo.service.JwtService; +import co.jp.springp0421.dogdemo.service.UserService; +import jakarta.validation.Valid; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.security.authentication.AuthenticationManager; +import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; +import org.springframework.security.core.Authentication; +import org.springframework.security.core.context.SecurityContextHolder; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RestController; + +import java.util.HashMap; +import java.util.Map; + +@RestController +public class UserController { + + private final UserService userService; + private final AuthenticationManager authenticationManager; + private final JwtService jwtService; + + public UserController(UserService userService, AuthenticationManager authenticationManager, JwtService jwtService) { + this.userService = userService; + this.authenticationManager = authenticationManager; + this.jwtService = jwtService; + } + + @PostMapping("/api/user/register") + public ResponseEntity> registerUser(@Valid @RequestBody RegistrationDto registrationDto) { + + UserEntity registeredUser = userService.registerNewUser(registrationDto); + + UserDto userDto = new UserDto(); + + userDto.setEmail(registeredUser.getEmail()); + userDto.setName(registeredUser.getName()); + + return ResponseEntity.status(HttpStatus.CREATED).body(ApiResponse.success(userDto)); + } + + @PostMapping("/api/user/login") + public ResponseEntity>> authenticateUser(@Valid @RequestBody LoginDto loginDto) { + + Authentication authentication = authenticationManager.authenticate( + new UsernamePasswordAuthenticationToken(loginDto.getEmail(), loginDto.getPassword()) + ); + SecurityContextHolder.getContext().setAuthentication(authentication); + UserDetails userDetails = (UserDetails) authentication.getPrincipal(); + + String jwtToken = jwtService.generateToken(userDetails); + + Map tokenResponse = new HashMap<>(); + tokenResponse.put("token", jwtToken); + + return ResponseEntity.ok(ApiResponse.success(tokenResponse)); + } +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/dto/LoginDto.java b/src/main/java/co/jp/springp0421/dogdemo/dto/LoginDto.java new file mode 100644 index 0000000..960fb65 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/dto/LoginDto.java @@ -0,0 +1,32 @@ +package co.jp.springp0421.dogdemo.dto; + +import jakarta.validation.constraints.Email; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.Size; + +public class LoginDto { + + @NotBlank(message = "邮箱不能为空") + @Email(message = "邮箱格式不正确,请输入有效的邮箱地址") + private String email; + + @NotBlank(message = "密码不能为空") + @Size(min = 6, max = 30, message = "密码长度必须在6到30位之间") + private String password; + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password; + } +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/dto/RegistrationDto.java b/src/main/java/co/jp/springp0421/dogdemo/dto/RegistrationDto.java new file mode 100644 index 0000000..62d0851 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/dto/RegistrationDto.java @@ -0,0 +1,49 @@ +package co.jp.springp0421.dogdemo.dto; + +import jakarta.validation.constraints.Email; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.Pattern; +import jakarta.validation.constraints.Size; + +public class RegistrationDto { + + //注:username可以为空 + @Size(min = 2, max = 20, message = "用户名长度必须在2到20个字符之间") + @Pattern( + regexp = "^[a-zA-Z\\p{script=Han}]+$", + message = "用户名只能包含大小写英文字母和汉字,不能使用数字和标点符号" + ) + private String name; + + @NotBlank(message = "邮箱不能为空") + @Email(message = "邮箱格式不正确,请输入有效的邮箱地址") + private String email; + + @NotBlank(message = "密码不能为空") + @Size(min = 6, max = 30, message = "密码长度必须在6到30位之间") + private String password; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password; + } +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/dto/UserDto.java b/src/main/java/co/jp/springp0421/dogdemo/dto/UserDto.java new file mode 100644 index 0000000..919875d --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/dto/UserDto.java @@ -0,0 +1,24 @@ +package co.jp.springp0421.dogdemo.dto; + +public class UserDto { + + private String email; + + private String name; + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/entity/PetEntity.java b/src/main/java/co/jp/springp0421/dogdemo/entity/PetEntity.java new file mode 100644 index 0000000..4ba9f9f --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/entity/PetEntity.java @@ -0,0 +1,30 @@ +package co.jp.springp0421.dogdemo.entity; + +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; + +@Getter +@Setter +@NoArgsConstructor +public class PetEntity { + + private int ID; + //犬の名前 + private String name; + //犬の種類 + private String type; + //犬の誕生日 + private String brithday; + //犬の体重 + private int weight; + //犬の身長 + private int lenght; + //犬の性格 + private String persionarity; + //犬の健康状態 + private String status; + //犬の圖片 + private String image; + +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/entity/UserEntity.java b/src/main/java/co/jp/springp0421/dogdemo/entity/UserEntity.java new file mode 100644 index 0000000..c3ce837 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/entity/UserEntity.java @@ -0,0 +1,20 @@ +package co.jp.springp0421.dogdemo.entity; + +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; + +@Getter +@Setter +@NoArgsConstructor +public class UserEntity { + + private int id; + //name,null + private String name; + //login email + private String email; + + private String password; + +} \ No newline at end of file diff --git a/src/main/java/co/jp/springp0421/dogdemo/exception/BusinessException.java b/src/main/java/co/jp/springp0421/dogdemo/exception/BusinessException.java new file mode 100644 index 0000000..12cd552 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/exception/BusinessException.java @@ -0,0 +1,38 @@ +package co.jp.springp0421.dogdemo.exception; + +import co.jp.springp0421.dogdemo.common.ResultCode; + +public class BusinessException extends RuntimeException { + + private final ResultCode resultCode; + private final String detailMessage; // 附加详细信息 + + public BusinessException(ResultCode resultCode) { + super(resultCode.getMessage()); + this.resultCode = resultCode; + this.detailMessage = null; + } + + // 有详细信息的构造函数 + public BusinessException(ResultCode resultCode, String detailMessage) { + super(detailMessage != null && !detailMessage.isEmpty() ? detailMessage : resultCode.getMessage()); + this.resultCode = resultCode; + this.detailMessage = detailMessage; + } + + // 无详细信息的构造函数 + public BusinessException(ResultCode resultCode, Throwable cause) { + super(resultCode.getMessage(), cause); + this.resultCode = resultCode; + this.detailMessage = null; + } + + public ResultCode getResultCode() { + return resultCode; + } + + public String getDetailMessage() { + return detailMessage; + } + +} \ No newline at end of file diff --git a/src/main/java/co/jp/springp0421/dogdemo/exception/GlobalExceptionHandler.java b/src/main/java/co/jp/springp0421/dogdemo/exception/GlobalExceptionHandler.java new file mode 100644 index 0000000..a66d215 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/exception/GlobalExceptionHandler.java @@ -0,0 +1,124 @@ +package co.jp.springp0421.dogdemo.exception; + +import co.jp.springp0421.dogdemo.common.ApiResponse; +import co.jp.springp0421.dogdemo.common.ResultCode; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.security.authentication.BadCredentialsException; +import org.springframework.security.core.AuthenticationException; +import org.springframework.security.core.userdetails.UsernameNotFoundException; +import org.springframework.validation.BindException; +import org.springframework.web.bind.MethodArgumentNotValidException; +import org.springframework.web.bind.MissingServletRequestParameterException; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.RestControllerAdvice; + +import java.util.stream.Collectors; + +@RestControllerAdvice +public class GlobalExceptionHandler { + + // slf4j日志记录器 + private static final Logger logger = LoggerFactory.getLogger(GlobalExceptionHandler.class); + + // 业务异常 + @ExceptionHandler(BusinessException.class) + public ResponseEntity> handleBusinessException(BusinessException ex) { + logger.warn("业务异常: Code={}, Message={}, Detail={}", ex.getResultCode().getCode(), ex.getResultCode().getMessage(), ex.getDetailMessage(), ex); + + ApiResponse body; + + if (ex.getDetailMessage() != null && !ex.getDetailMessage().isEmpty()) { + body = ApiResponse.fail(ex.getResultCode(), ex.getDetailMessage()); + } else { + body = ApiResponse.fail(ex.getResultCode()); + } + + HttpStatus httpStatus = determineHttpStatusFromResultCode(ex.getResultCode()); + return new ResponseEntity<>(body, httpStatus); + } + + // 参数校验异常 + @ExceptionHandler({MethodArgumentNotValidException.class, BindException.class}) + public ResponseEntity> handleValidationExceptions(BindException ex) { // BindException 是 MethodArgumentNotValidException 的父类 + String errorMessage = ex.getBindingResult().getFieldErrors().stream() + .map(fieldError -> fieldError.getField() + ": " + fieldError.getDefaultMessage()) + .collect(Collectors.joining("; ")); + logger.warn("参数校验失败: {}", errorMessage, ex); + return new ResponseEntity<>(ApiResponse.fail(ResultCode.VALIDATION_ERROR, errorMessage), HttpStatus.BAD_REQUEST); + } + + // 参数缺失异常 + @ExceptionHandler(MissingServletRequestParameterException.class) + public ResponseEntity> handleMissingServletRequestParameterException(MissingServletRequestParameterException ex) { + String message = "请求参数 '" + ex.getParameterName() + "' 不能为空"; + logger.warn(message, ex); + return new ResponseEntity<>(ApiResponse.fail(ResultCode.BAD_REQUEST, message), HttpStatus.BAD_REQUEST); + } + + // Spring Security 用户认证异常 + @ExceptionHandler(AuthenticationException.class) + public ResponseEntity> handleAuthenticationException(AuthenticationException ex) { + logger.warn("认证失败: {}", ex.getMessage(), ex); + + if (ex instanceof BadCredentialsException) { + + return new ResponseEntity<>(ApiResponse.fail(ResultCode.USER_INVALID_CREDENTIALS), HttpStatus.UNAUTHORIZED); + } else if (ex instanceof UsernameNotFoundException) { + + return new ResponseEntity<>(ApiResponse.fail(ResultCode.USER_INVALID_CREDENTIALS, "用户名或密码错误(用户不存在)"), HttpStatus.UNAUTHORIZED); + } + + return new ResponseEntity<>(ApiResponse.fail(ResultCode.UNAUTHORIZED, ex.getMessage()), HttpStatus.UNAUTHORIZED); + } + + // Spring Security 权限异常 +// @ExceptionHandler(AccessDeniedException.class) +// public ResponseEntity> handleAccessDeniedException(AccessDeniedException ex) { +// logger.warn("权限不足: {}", ex.getMessage(), ex); +// return new ResponseEntity<>(ApiResponse.fail(ResultCode.FORBIDDEN), HttpStatus.FORBIDDEN); +// } + + // 其他异常 + @ExceptionHandler(Exception.class) + public ResponseEntity> handleAllUncaughtException(Exception ex) { + logger.error("发生未捕获的服务器内部错误!", ex); + + return new ResponseEntity<>(ApiResponse.fail(ResultCode.INTERNAL_SERVER_ERROR), HttpStatus.INTERNAL_SERVER_ERROR); + } + + private HttpStatus determineHttpStatusFromResultCode(ResultCode resultCode) { + if (resultCode == null) return HttpStatus.INTERNAL_SERVER_ERROR; + + switch (resultCode) { + case SUCCESS: + return HttpStatus.OK; + case UNAUTHORIZED: + case USER_INVALID_CREDENTIALS: + case USER_TOKEN_INVALID: + case USER_TOKEN_EXPIRED: + return HttpStatus.UNAUTHORIZED; + case FORBIDDEN: + return HttpStatus.FORBIDDEN; + case NOT_FOUND: + case USER_ACCOUNT_NOT_FOUND: + case USER_PROFILE_NOT_FOUND: + return HttpStatus.NOT_FOUND; + case CONFLICT: + case USER_EMAIL_ALREADY_EXISTS: + return HttpStatus.CONFLICT; + case BAD_REQUEST: + case VALIDATION_ERROR: + case USER_PASSWORD_TOO_SHORT: + return HttpStatus.BAD_REQUEST; + default: + if (resultCode.getCode() >= 2000 && resultCode.getCode() < 3000) { + return HttpStatus.INTERNAL_SERVER_ERROR; + } + + return HttpStatus.BAD_REQUEST; + } + } +} \ No newline at end of file diff --git a/src/main/java/co/jp/springp0421/dogdemo/mapper/UserRepository.xml b/src/main/java/co/jp/springp0421/dogdemo/mapper/UserRepository.xml new file mode 100644 index 0000000..e725fdc --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/mapper/UserRepository.xml @@ -0,0 +1,18 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/main/java/co/jp/springp0421/dogdemo/repository/UserRepository.java b/src/main/java/co/jp/springp0421/dogdemo/repository/UserRepository.java new file mode 100644 index 0000000..86ef670 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/repository/UserRepository.java @@ -0,0 +1,15 @@ +package co.jp.springp0421.dogdemo.repository; + +import co.jp.springp0421.dogdemo.entity.UserEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Mapper; + +import java.util.Optional; + +@Mapper +public interface UserRepository extends BaseMapper { + + boolean existsByEmail(String Email); + + Optional findByEmail(String Email); +} \ No newline at end of file diff --git a/src/main/java/co/jp/springp0421/dogdemo/service/JwtService.java b/src/main/java/co/jp/springp0421/dogdemo/service/JwtService.java new file mode 100644 index 0000000..a647628 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/service/JwtService.java @@ -0,0 +1,105 @@ +package co.jp.springp0421.dogdemo.service; + +import io.jsonwebtoken.*; +import io.jsonwebtoken.security.Keys; +import io.jsonwebtoken.security.SignatureException; +import org.jetbrains.annotations.NotNull; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.stereotype.Service; + +import java.security.Key; +import java.util.Base64; +import java.util.Date; +import java.util.HashMap; +import java.util.Map; +import java.util.function.Function; + +@Service +public class JwtService { + + private static final Logger logger = LoggerFactory.getLogger(JwtService.class); + //log + + @Value("${jwt.secret}") + private String secretKey; + + @Value("${jwt.token-expiration-ms}") + private long tokenExpirationMs; + + @org.jetbrains.annotations.NotNull + private Key getSignKey() { + byte[] keyBytes = Base64.getDecoder().decode(secretKey); + return Keys.hmacShaKeyFor(keyBytes); + } + + public String extractUsername(String token) { + try { + return extractClaim(token, Claims::getSubject); + } catch (ExpiredJwtException e) { + logger.warn("JWT token is expired when extracting username: {}", e.getMessage()); + return e.getClaims().getSubject(); + } catch (MalformedJwtException | SignatureException | UnsupportedJwtException | IllegalArgumentException e) { + logger.error("Invalid JWT token when extracting username: {}", e.getMessage()); + return null; + } + } + + public T extractClaim(String token, @NotNull Function claimsResolver) { + final Claims claims = extractAllClaims(token); + return claimsResolver.apply(claims); + } + + private Claims extractAllClaims(String token) { + return Jwts + .parserBuilder() + .setSigningKey(getSignKey()) + .build() + .parseClaimsJws(token) + .getBody(); + } + + public String generateToken(@NotNull UserDetails userDetails) { + Map claims = new HashMap<>(); + return createToken(claims, userDetails.getUsername()); + } + + private String createToken(Map claims, String subject) { + return Jwts.builder() + .setClaims(claims) + .setSubject(subject) + .setIssuedAt(new Date(System.currentTimeMillis())) + .setExpiration(new Date(System.currentTimeMillis() + tokenExpirationMs)) // 使用配置的过期时间 + .signWith(getSignKey(), SignatureAlgorithm.HS256) + .compact(); + } + + public boolean isTokenValid(String token, UserDetails userDetails) { + try { + final String username = extractUsername(token); + if (username == null) { + return false; + } + + return (username.equals(userDetails.getUsername()) && !isTokenActuallyExpired(token)); + } catch (ExpiredJwtException e) { + + logger.warn("Token validation failed: Expired JWT - {}", e.getMessage()); + return false; + } catch (MalformedJwtException | SignatureException | UnsupportedJwtException | IllegalArgumentException e) { + + logger.error("Token validation failed: Invalid JWT (format, signature, etc.) - {}", e.getMessage()); + return false; + } + } + + private boolean isTokenActuallyExpired(String token) { + return extractExpiration(token).before(new Date()); + } + + private Date extractExpiration(String token) { + return extractClaim(token, Claims::getExpiration); + } +} diff --git a/src/main/java/co/jp/springp0421/dogdemo/service/UserService.java b/src/main/java/co/jp/springp0421/dogdemo/service/UserService.java new file mode 100644 index 0000000..59bb3e7 --- /dev/null +++ b/src/main/java/co/jp/springp0421/dogdemo/service/UserService.java @@ -0,0 +1,75 @@ +package co.jp.springp0421.dogdemo.service; + +import java.util.Collection; +import java.util.Collections; + +import co.jp.springp0421.dogdemo.common.ResultCode; +import co.jp.springp0421.dogdemo.dto.RegistrationDto; +import co.jp.springp0421.dogdemo.entity.UserEntity; +import co.jp.springp0421.dogdemo.exception.BusinessException; +import co.jp.springp0421.dogdemo.repository.UserRepository; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.jetbrains.annotations.NotNull; +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.core.authority.SimpleGrantedAuthority; +import org.springframework.security.core.userdetails.User; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.security.core.userdetails.UserDetailsService; +import org.springframework.security.core.userdetails.UsernameNotFoundException; +import org.springframework.security.crypto.password.PasswordEncoder; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Service +public class UserService extends ServiceImpl implements UserDetailsService { + + private final UserRepository userRepository; + private final PasswordEncoder passwordEncoder; + + public UserService(UserRepository userRepository, PasswordEncoder passwordEncoder) { + this.userRepository = userRepository; + this.passwordEncoder = passwordEncoder; + } + + public UserEntity registerNewUser(@NotNull RegistrationDto registrationDto) throws BusinessException { + + if (userRepository.existsByEmail(registrationDto.getEmail())) { + throw new BusinessException(ResultCode.USER_EMAIL_ALREADY_EXISTS,"error: Email" + registrationDto.getEmail() + " had been used"); + } + + UserEntity newUser = new UserEntity(); + newUser.setName(registrationDto.getName()); + newUser.setEmail(registrationDto.getEmail()); + newUser.setPassword(passwordEncoder.encode(registrationDto.getPassword())); + + boolean success = this.save(newUser); + + if (success) { + + return newUser; + } else { + + throw new BusinessException(ResultCode.DATABASE_ERROR, "User registration failed"); + } + } + + @Override + @Transactional(readOnly = true) + public UserDetails loadUserByUsername(String email) throws UsernameNotFoundException { + UserEntity userEntity = userRepository.findByEmail(email) + .orElseThrow(() -> new UsernameNotFoundException(email + " not found")); + + Collection authorities = Collections + .singletonList(new SimpleGrantedAuthority("ROLE_USER")); + + return new User( + userEntity.getEmail(), + userEntity.getPassword(), + true, // enabled + true, // accountNonExpired + true, // credentialsNonExpired + true, // accountNonLocked + authorities // role + ); + } +} \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..fb1c65d --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,16 @@ +spring.application.name=DogDemo +server.address=localhost +server.port=8085 + +spring.sql.init.platform=mysql +spring.jpa.hibernate.ddl-auto=update +spring.jpa.show-sql=true +spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect + +spring.datasource.url=jdbc:mysql://192.168.1.192:3306/dog +spring.datasource.username=coder +spring.datasource.password=coder +spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver + +jwt.secret=XyRmP4NvTcW9aJoE1LbGz7uKYqF6sHdC +jwt.token-expiration-ms=900000 \ No newline at end of file diff --git a/src/test/java/co/jp/springp0421/dogdemo/DogDemoApplicationTests.java b/src/test/java/co/jp/springp0421/dogdemo/DogDemoApplicationTests.java new file mode 100644 index 0000000..f9a4ad5 --- /dev/null +++ b/src/test/java/co/jp/springp0421/dogdemo/DogDemoApplicationTests.java @@ -0,0 +1,13 @@ +package co.jp.springp0421.dogdemo; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class DogDemoApplicationTests { + + @Test + void contextLoads() { + } + +}