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.jar b/.mvn/wrapper/maven-wrapper.jar new file mode 100644 index 0000000..cb28b0e Binary files /dev/null and b/.mvn/wrapper/maven-wrapper.jar differ diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..462686e --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,2 @@ +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.3/apache-maven-3.9.3-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar diff --git a/README.md b/README.md deleted file mode 100644 index 0a65f5e..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -# taskmanagmentapi diff --git a/mvnw b/mvnw new file mode 100644 index 0000000..66df285 --- /dev/null +++ b/mvnw @@ -0,0 +1,308 @@ +#!/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 +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Apache Maven Wrapper startup batch script, version 3.2.0 +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ] ; then + + if [ -f /usr/local/etc/mavenrc ] ; then + . /usr/local/etc/mavenrc + fi + + if [ -f /etc/mavenrc ] ; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ] ; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +mingw=false +case "$(uname)" in + CYGWIN*) cygwin=true ;; + MINGW*) mingw=true;; + Darwin*) darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + JAVA_HOME="$(/usr/libexec/java_home)"; export JAVA_HOME + else + JAVA_HOME="/Library/Java/Home"; export JAVA_HOME + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ] ; then + if [ -r /etc/gentoo-release ] ; then + JAVA_HOME=$(java-config --jre-home) + fi +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$JAVA_HOME" ] && + JAVA_HOME=$(cygpath --unix "$JAVA_HOME") + [ -n "$CLASSPATH" ] && + CLASSPATH=$(cygpath --path --unix "$CLASSPATH") +fi + +# For Mingw, ensure paths are in UNIX format before anything is touched +if $mingw ; then + [ -n "$JAVA_HOME" ] && [ -d "$JAVA_HOME" ] && + JAVA_HOME="$(cd "$JAVA_HOME" || (echo "cannot cd into $JAVA_HOME."; exit 1); pwd)" +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="$(which javac)" + if [ -n "$javaExecutable" ] && ! [ "$(expr "\"$javaExecutable\"" : '\([^ ]*\)')" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=$(which readlink) + if [ ! "$(expr "$readLink" : '\([^ ]*\)')" = "no" ]; then + if $darwin ; then + javaHome="$(dirname "\"$javaExecutable\"")" + javaExecutable="$(cd "\"$javaHome\"" && pwd -P)/javac" + else + javaExecutable="$(readlink -f "\"$javaExecutable\"")" + fi + javaHome="$(dirname "\"$javaExecutable\"")" + javaHome=$(expr "$javaHome" : '\(.*\)/bin') + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="$(\unset -f command 2>/dev/null; \command -v java)" + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ] ; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + if [ -z "$1" ] + then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ] ; do + if [ -d "$wdir"/.mvn ] ; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=$(cd "$wdir/.." || exit 1; pwd) + fi + # end of workaround + done + printf '%s' "$(cd "$basedir" || exit 1; pwd)" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + # Remove \r in case we run on Windows within Git Bash + # and check out the repository with auto CRLF management + # enabled. Otherwise, we may read lines that are delimited with + # \r\n and produce $'-Xarg\r' rather than -Xarg due to word + # splitting rules. + tr -s '\r\n' ' ' < "$1" + fi +} + +log() { + if [ "$MVNW_VERBOSE" = true ]; then + printf '%s\n' "$1" + fi +} + +BASE_DIR=$(find_maven_basedir "$(dirname "$0")") +if [ -z "$BASE_DIR" ]; then + exit 1; +fi + +MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}; export MAVEN_PROJECTBASEDIR +log "$MAVEN_PROJECTBASEDIR" + +########################################################################################## +# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +# This allows using the maven wrapper in projects that prohibit checking in binary data. +########################################################################################## +wrapperJarPath="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" +if [ -r "$wrapperJarPath" ]; then + log "Found $wrapperJarPath" +else + log "Couldn't find $wrapperJarPath, downloading it ..." + + if [ -n "$MVNW_REPOURL" ]; then + wrapperUrl="$MVNW_REPOURL/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar" + else + wrapperUrl="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar" + fi + while IFS="=" read -r key value; do + # Remove '\r' from value to allow usage on windows as IFS does not consider '\r' as a separator ( considers space, tab, new line ('\n'), and custom '=' ) + safeValue=$(echo "$value" | tr -d '\r') + case "$key" in (wrapperUrl) wrapperUrl="$safeValue"; break ;; + esac + done < "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.properties" + log "Downloading from: $wrapperUrl" + + if $cygwin; then + wrapperJarPath=$(cygpath --path --windows "$wrapperJarPath") + fi + + if command -v wget > /dev/null; then + log "Found wget ... using wget" + [ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--quiet" + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + wget $QUIET "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath" + else + wget $QUIET --http-user="$MVNW_USERNAME" --http-password="$MVNW_PASSWORD" "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath" + fi + elif command -v curl > /dev/null; then + log "Found curl ... using curl" + [ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--silent" + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + curl $QUIET -o "$wrapperJarPath" "$wrapperUrl" -f -L || rm -f "$wrapperJarPath" + else + curl $QUIET --user "$MVNW_USERNAME:$MVNW_PASSWORD" -o "$wrapperJarPath" "$wrapperUrl" -f -L || rm -f "$wrapperJarPath" + fi + else + log "Falling back to using Java to download" + javaSource="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/MavenWrapperDownloader.java" + javaClass="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/MavenWrapperDownloader.class" + # For Cygwin, switch paths to Windows format before running javac + if $cygwin; then + javaSource=$(cygpath --path --windows "$javaSource") + javaClass=$(cygpath --path --windows "$javaClass") + fi + if [ -e "$javaSource" ]; then + if [ ! -e "$javaClass" ]; then + log " - Compiling MavenWrapperDownloader.java ..." + ("$JAVA_HOME/bin/javac" "$javaSource") + fi + if [ -e "$javaClass" ]; then + log " - Running MavenWrapperDownloader.java ..." + ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$wrapperUrl" "$wrapperJarPath") || rm -f "$wrapperJarPath" + fi + fi + fi +fi +########################################################################################## +# End of extension +########################################################################################## + +# If specified, validate the SHA-256 sum of the Maven wrapper jar file +wrapperSha256Sum="" +while IFS="=" read -r key value; do + case "$key" in (wrapperSha256Sum) wrapperSha256Sum=$value; break ;; + esac +done < "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.properties" +if [ -n "$wrapperSha256Sum" ]; then + wrapperSha256Result=false + if command -v sha256sum > /dev/null; then + if echo "$wrapperSha256Sum $wrapperJarPath" | sha256sum -c > /dev/null 2>&1; then + wrapperSha256Result=true + fi + elif command -v shasum > /dev/null; then + if echo "$wrapperSha256Sum $wrapperJarPath" | shasum -a 256 -c > /dev/null 2>&1; then + wrapperSha256Result=true + fi + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." + echo "Please install either command, or disable validation by removing 'wrapperSha256Sum' from your maven-wrapper.properties." + exit 1 + fi + if [ $wrapperSha256Result = false ]; then + echo "Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised." >&2 + echo "Investigate or delete $wrapperJarPath to attempt a clean download." >&2 + echo "If you updated your Maven version, you need to update the specified wrapperSha256Sum property." >&2 + exit 1 + fi +fi + +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$JAVA_HOME" ] && + JAVA_HOME=$(cygpath --path --windows "$JAVA_HOME") + [ -n "$CLASSPATH" ] && + CLASSPATH=$(cygpath --path --windows "$CLASSPATH") + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=$(cygpath --path --windows "$MAVEN_PROJECTBASEDIR") +fi + +# Provide a "standardized" way to retrieve the CLI args that will +# work with both Windows and non-Windows executions. +MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $*" +export MAVEN_CMD_LINE_ARGS + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +# shellcheck disable=SC2086 # safe args +exec "$JAVACMD" \ + $MAVEN_OPTS \ + $MAVEN_DEBUG_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/mvnw.cmd b/mvnw.cmd new file mode 100644 index 0000000..95ba6f5 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,205 @@ +@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 https://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.2.0 +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM set title of command window +title %0 +@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %* +if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %* +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +set WRAPPER_URL="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar" + +FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperUrl" SET WRAPPER_URL=%%B +) + +@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +@REM This allows using the maven wrapper in projects that prohibit checking in binary data. +if exist %WRAPPER_JAR% ( + if "%MVNW_VERBOSE%" == "true" ( + echo Found %WRAPPER_JAR% + ) +) else ( + if not "%MVNW_REPOURL%" == "" ( + SET WRAPPER_URL="%MVNW_REPOURL%/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar" + ) + if "%MVNW_VERBOSE%" == "true" ( + echo Couldn't find %WRAPPER_JAR%, downloading it ... + echo Downloading from: %WRAPPER_URL% + ) + + powershell -Command "&{"^ + "$webclient = new-object System.Net.WebClient;"^ + "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ + "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ + "}"^ + "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%WRAPPER_URL%', '%WRAPPER_JAR%')"^ + "}" + if "%MVNW_VERBOSE%" == "true" ( + echo Finished downloading %WRAPPER_JAR% + ) +) +@REM End of extension + +@REM If specified, validate the SHA-256 sum of the Maven wrapper jar file +SET WRAPPER_SHA_256_SUM="" +FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperSha256Sum" SET WRAPPER_SHA_256_SUM=%%B +) +IF NOT %WRAPPER_SHA_256_SUM%=="" ( + powershell -Command "&{"^ + "$hash = (Get-FileHash \"%WRAPPER_JAR%\" -Algorithm SHA256).Hash.ToLower();"^ + "If('%WRAPPER_SHA_256_SUM%' -ne $hash){"^ + " Write-Output 'Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised.';"^ + " Write-Output 'Investigate or delete %WRAPPER_JAR% to attempt a clean download.';"^ + " Write-Output 'If you updated your Maven version, you need to update the specified wrapperSha256Sum property.';"^ + " exit 1;"^ + "}"^ + "}" + if ERRORLEVEL 1 goto error +) + +@REM Provide a "standardized" way to retrieve the CLI args that will +@REM work with both Windows and non-Windows executions. +set MAVEN_CMD_LINE_ARGS=%* + +%MAVEN_JAVA_EXE% ^ + %JVM_CONFIG_MAVEN_PROPS% ^ + %MAVEN_OPTS% ^ + %MAVEN_DEBUG_OPTS% ^ + -classpath %WRAPPER_JAR% ^ + "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^ + %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat" +if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%"=="on" pause + +if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE% + +cmd /C exit /B %ERROR_CODE% diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..456cb77 --- /dev/null +++ b/pom.xml @@ -0,0 +1,69 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.1.1 + + + com.task + info + 0.0.1-SNAPSHOT + info + Demo project for Spring Boot + + 17 + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + com.h2database + h2 + runtime + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + diff --git a/src/main/java/com/task/info/Controller/AuthoController.java b/src/main/java/com/task/info/Controller/AuthoController.java new file mode 100644 index 0000000..79e8559 --- /dev/null +++ b/src/main/java/com/task/info/Controller/AuthoController.java @@ -0,0 +1,138 @@ +package com.task.info.Controller; + +import org.aspectj.lang.annotation.AfterReturning; + +import java.util.*; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import com.task.info.Entity.Employee; +import com.task.info.Entity.Task; +import com.task.info.Service.EmployeService; +import com.task.info.Service.TaskService; + +import jakarta.persistence.EntityNotFoundException; + +@Controller // on presentation layer +@RestController +@RequestMapping("/api/auth") +public class AuthoController { + + @Autowired + private TaskService taskservice; + @Autowired + private EmployeService em; + + @GetMapping("/task") + public List gettasks() { + Task t = new Task(); + t.setTitle("backend"); + t.setDes("set the database"); + t.setDeadline(3.5); + t.setPrioritylevel(2); + return this.taskservice.getAllTask(); + } + + @PostMapping("/task") + public Task addtask(@RequestBody Task task) { + this.taskservice.addtask(task); + return task; + } + + @GetMapping("/signin") + public List getEmployees() { + return this.em.getAllEmployees(); + } + + // @PostMapping("/signup") + // public Employee add(@RequestBody Employee emp) { + // this.em.addEmployee(emp); + // return emp; + // } + + @PostMapping("/signin") + public ResponseEntity addEmployee(@RequestBody Employee emp) { + try { + + em.addEmployee(emp); + return new ResponseEntity("Succesfully", HttpStatus.CREATED); + } catch (IllegalArgumentException e) { + return new ResponseEntity<>(e.getMessage(), HttpStatus.BAD_REQUEST); + } + } + + @PostMapping("/tasks/{taskid}/assign/{empid}") + public ResponseEntity assigntask(@PathVariable Integer taskid, @PathVariable Integer empid, + @RequestParam(required = false) String title, + @RequestParam(required = false) String des, + @RequestParam(required = false) Integer priority) { + + taskservice.assigntask(taskid, empid, title, des, priority); + return new ResponseEntity("Task Assigned Succesfully", HttpStatus.OK); + } + + @PutMapping("/update/empolyee/{empid}") + public ResponseEntity updatestatusbyemployee( + @PathVariable Integer empid, + @RequestParam Integer taskid, + @RequestParam String status) { + try { + Task u = taskservice.updatestatusbyemployee(empid, taskid, status); + return new ResponseEntity<>(u, HttpStatus.OK); + } catch (IllegalArgumentException e) { + return new ResponseEntity<>(HttpStatus.BAD_REQUEST); + } catch (EntityNotFoundException e) { + return ResponseEntity.notFound().build(); + } catch (Exception e) { + return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR); + } + + } + + @PutMapping("/complete/{taskid}") + public ResponseEntity markTaskComplete(@PathVariable Integer taskid) { + taskservice.markTaskComplete(taskid); + return new ResponseEntity<>("Task Marked as Complete", HttpStatus.OK); + } + + @GetMapping("/task/status") + public ResponseEntity>> getAllTaskStatus() { + List> tasklist = taskservice.getAllTaskStatus(); + return new ResponseEntity<>(tasklist, HttpStatus.OK); + } + + @DeleteMapping("/delete/{taskid}") + public ResponseEntity deleteTask(@PathVariable Integer taskid) { + try { + taskservice.deleteTask(taskid); + return new ResponseEntity("Task Deleted Succesfully", HttpStatus.OK); + } catch (IllegalArgumentException e) { + return new ResponseEntity(e.getMessage(), HttpStatus.BAD_REQUEST); + } catch (Exception e) { + return new ResponseEntity("Error occurred while deleting the task", + HttpStatus.INTERNAL_SERVER_ERROR); + } + } + + @PostMapping("/generate-employee-task-summary") + public ResponseEntity generateEmployeeTaskSummary() { + try { + taskservice.generatedEmployeeTaskSummary(); + return new ResponseEntity<>("Employee task summary generated successfully.", HttpStatus.OK); + } catch (Exception e) { + return new ResponseEntity<>("Failed to generate employee task summary: " + e.getMessage(), + HttpStatus.INTERNAL_SERVER_ERROR); + } + } +} diff --git a/src/main/java/com/task/info/DAO/CompleteDao.java b/src/main/java/com/task/info/DAO/CompleteDao.java new file mode 100644 index 0000000..ed78337 --- /dev/null +++ b/src/main/java/com/task/info/DAO/CompleteDao.java @@ -0,0 +1,11 @@ +package com.task.info.DAO; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +import com.task.info.Entity.CompleteTask; + +@Repository +public interface CompleteDao extends JpaRepository { + +} diff --git a/src/main/java/com/task/info/DAO/EmployeeDao.java b/src/main/java/com/task/info/DAO/EmployeeDao.java new file mode 100644 index 0000000..4edbe67 --- /dev/null +++ b/src/main/java/com/task/info/DAO/EmployeeDao.java @@ -0,0 +1,10 @@ +package com.task.info.DAO; + +import org.springframework.data.jpa.repository.JpaRepository; + +import com.task.info.Entity.Employee; + +public interface EmployeeDao extends JpaRepository { + + Boolean existsByEmail(String email); +} diff --git a/src/main/java/com/task/info/DAO/EmployeeTaskSummaryDao.java b/src/main/java/com/task/info/DAO/EmployeeTaskSummaryDao.java new file mode 100644 index 0000000..08b5c39 --- /dev/null +++ b/src/main/java/com/task/info/DAO/EmployeeTaskSummaryDao.java @@ -0,0 +1,9 @@ +package com.task.info.DAO; + +import org.springframework.data.jpa.repository.JpaRepository; + +import com.task.info.Entity.Employeetasksummary; + +public interface EmployeeTaskSummaryDao extends JpaRepository { + +} diff --git a/src/main/java/com/task/info/DAO/TaskDao.java b/src/main/java/com/task/info/DAO/TaskDao.java new file mode 100644 index 0000000..d8e68bc --- /dev/null +++ b/src/main/java/com/task/info/DAO/TaskDao.java @@ -0,0 +1,20 @@ +package com.task.info.DAO; + +import java.util.List; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; +import org.springframework.stereotype.Repository; + +import com.task.info.Entity.Employee; +import com.task.info.Entity.Task; + +@Repository +public interface TaskDao extends JpaRepository { + // Employee findByUserID(Integer userId); + @Query("SELECT t FROM Task t WHERE t.assignedTo.id = :emp_id AND t.id = :taskId") + Task findByAssignedToIdAndId(Integer emp_id, Integer taskId); + + @Query("SELECT t FROM Task t WHERE t.assignedTo.id = :employeeId") + List findByAssignedToId(Integer employeeId); +} diff --git a/src/main/java/com/task/info/DAO/TaskStatusDao.java b/src/main/java/com/task/info/DAO/TaskStatusDao.java new file mode 100644 index 0000000..9e87d02 --- /dev/null +++ b/src/main/java/com/task/info/DAO/TaskStatusDao.java @@ -0,0 +1,9 @@ +package com.task.info.DAO; + +import org.springframework.data.jpa.repository.JpaRepository; + +import com.task.info.Entity.TaskStatus; + +public interface TaskStatusDao extends JpaRepository { + +} diff --git a/src/main/java/com/task/info/Entity/CompleteTask.java b/src/main/java/com/task/info/Entity/CompleteTask.java new file mode 100644 index 0000000..3952f9e --- /dev/null +++ b/src/main/java/com/task/info/Entity/CompleteTask.java @@ -0,0 +1,55 @@ +package com.task.info.Entity; + +import java.util.Date; + +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.Temporal; +import jakarta.persistence.TemporalType; + +//this table for a user can se all the complete task +@Entity +public class CompleteTask { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private int id; + + private String des; + private boolean comp; + @Temporal(TemporalType.TIMESTAMP) + private Date completionDate; + + public int getId() { + return id; + } + + public void setId(int id) { + this.id = id; + } + + public String getDes() { + return des; + } + + public void setDes(String des) { + this.des = des; + } + + public boolean isComp() { + return comp; + } + + public void setComp(boolean comp) { + this.comp = comp; + } + + public Date getCompletionDate() { + return completionDate; + } + + public void setCompletionDate(Date completionDate) { + this.completionDate = completionDate; + } +} diff --git a/src/main/java/com/task/info/Entity/Employee.java b/src/main/java/com/task/info/Entity/Employee.java new file mode 100644 index 0000000..a2bbd46 --- /dev/null +++ b/src/main/java/com/task/info/Entity/Employee.java @@ -0,0 +1,74 @@ +package com.task.info.Entity; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.Table; + +//for employees information +@Entity +@Table(name = "employee") +@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" }) +public class Employee { + @Id + // @GeneratedValue(strategy = GenerationType.SEQUENCE) + private int id; + @Column(nullable = false) + private String email; + @Column(nullable = false) + private String name; + @Column(nullable = false) + private String password; + + @Override + public String toString() { + return "Employee [id=" + id + ", email=" + email + ", name=" + name + ", password=" + password + "]"; + } + + public Employee(int id, String email, String name, String password) { + this.id = id; + this.email = email; + this.name = name; + this.password = password; + } + + public Employee() { + } + + public void setId(int id) { + this.id = id; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setName(String name) { + this.name = name; + } + + public void setPassword(String password) { + this.password = password; + } + + public int getId() { + return id; + } + + public String getEmail() { + return email; + } + + public String getName() { + return name; + } + + public String getPassword() { + return password; + } + +} diff --git a/src/main/java/com/task/info/Entity/Employeetasksummary.java b/src/main/java/com/task/info/Entity/Employeetasksummary.java new file mode 100644 index 0000000..04d84bd --- /dev/null +++ b/src/main/java/com/task/info/Entity/Employeetasksummary.java @@ -0,0 +1,57 @@ +package com.task.info.Entity; + +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; + +@Entity +public class Employeetasksummary { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + private String employeename; + private Integer employeeid; + private String tasktitle; + private Long totalTaskDone; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getEmployeename() { + return employeename; + } + + public void setEmployeename(String employeename) { + this.employeename = employeename; + } + + public Integer getEmployeeid() { + return employeeid; + } + + public void setEmployeeid(Integer employeeid) { + this.employeeid = employeeid; + } + + public String getTasktitle() { + return tasktitle; + } + + public void setTasktitle(String tasktitle) { + this.tasktitle = tasktitle; + } + + public Long getTotalTaskDone() { + return totalTaskDone; + } + + public void setTotalTaskDone(Long totalTaskDone) { + this.totalTaskDone = totalTaskDone; + } +} diff --git a/src/main/java/com/task/info/Entity/Task.java b/src/main/java/com/task/info/Entity/Task.java new file mode 100644 index 0000000..1294e11 --- /dev/null +++ b/src/main/java/com/task/info/Entity/Task.java @@ -0,0 +1,163 @@ +package com.task.info.Entity; + +import org.springframework.data.repository.query.Param; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; + +import jakarta.persistence.CascadeType; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.ManyToOne; +import jakarta.persistence.OneToOne; + +//for seeing task des,deadline,assigned user,title,status +@Entity +@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" }) +public class Task { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer taskid; + + public Integer getTaskid() { + return taskid; + } + + public void setTaskid(Integer taskid) { + this.taskid = taskid; + } + + @Column(nullable = false) + private String title; + @Column(nullable = false) + private String des; + private Double deadline; + private boolean com; + private String comp; + + public String getCom() { + return comp; + } + + public void setCom(String com) { + this.comp = com; + } + + private int prioritylevel; + + public boolean isCom() { + return com; + } + + public void setCom(boolean com) { + this.com = com; + } + + @OneToOne(mappedBy = "task", cascade = CascadeType.ALL, fetch = FetchType.LAZY) + private TaskStatus taskStatus; + + public TaskStatus getTaskStatus() { + return taskStatus; + } + + public void setTaskStatus(TaskStatus taskStatus) { + this.taskStatus = taskStatus; + } + + @ManyToOne(fetch = FetchType.LAZY) + @JoinColumn(name = "emp_id") + private Employee assignedTo; + + public Employee getAssignedTo() { + return assignedTo; + } + + public void setAssignedTo(Employee assignedTo) { + this.assignedTo = assignedTo; + } + + public String getStatus() { + if (com && "In Progress".equals(comp)) { + return "In Progress"; + } else if (com && "Completed".equals(comp)) { + return "Completed"; + } else if (com && "Postponed".equals(comp)) { + return "Postponed"; + } else if (com && "Not Started".equals(comp)) { + return "Not Started"; + } else { + return "Unknown Status"; + } + } + + public void setStatus(String status) { + switch (status) { + case "Canceled": + comp = "Canceled"; + break; + case "postponed": + comp = "Postponed"; + break; + case "In Progress": + comp = "In progress"; + break; + case "completed": + comp = "completed"; + break; + } + + } + + @Override + public String toString() { + return "task [title=" + title + ", des=" + des + ", deadline=" + deadline + ", prioritylevel=" + prioritylevel + + "]"; + } + + public void setTitle(String title) { + this.title = title; + } + + public void setDes(String des) { + this.des = des; + } + + public void setDeadline(Double deadline) { + this.deadline = deadline; + } + + public void setPrioritylevel(int prioritylevel) { + this.prioritylevel = prioritylevel; + } + + public String getTitle() { + return title; + } + + public String getDes() { + return des; + } + + public Double getDeadline() { + return deadline; + } + + public int getPrioritylevel() { + return prioritylevel; + } + + public Task() { + } + + public Task(String title, String des, Double deadline, int prioritylevel) { + this.title = title; + this.des = des; + this.deadline = deadline; + this.prioritylevel = prioritylevel; + } + +} diff --git a/src/main/java/com/task/info/Entity/TaskStatus.java b/src/main/java/com/task/info/Entity/TaskStatus.java new file mode 100644 index 0000000..37114f2 --- /dev/null +++ b/src/main/java/com/task/info/Entity/TaskStatus.java @@ -0,0 +1,57 @@ +package com.task.info.Entity; + +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.ManyToOne; +import jakarta.persistence.OneToOne; + +//see all the task status with a seperate table +@Entity +public class TaskStatus { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + + @OneToOne + @JoinColumn(name = "task_id") + private Task task; + + private String status; + + private String description; + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Task getTask() { + return task; + } + + public void setTask(Task task) { + this.task = task; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } +} diff --git a/src/main/java/com/task/info/EventListener/TaskEntityListener.java b/src/main/java/com/task/info/EventListener/TaskEntityListener.java new file mode 100644 index 0000000..94b459a --- /dev/null +++ b/src/main/java/com/task/info/EventListener/TaskEntityListener.java @@ -0,0 +1,24 @@ +package com.task.info.EventListener; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +import com.task.info.DAO.TaskStatusDao; +import com.task.info.Entity.Task; +import com.task.info.Entity.TaskStatus; + +import jakarta.persistence.PostPersist; + +@Component +public class TaskEntityListener { + @Autowired + private TaskStatusDao t; + + @PostPersist + public void onTaskPersist(Task task) { + TaskStatus taskstatus = new TaskStatus(); + taskstatus.setId(task.getTaskid()); + taskstatus.setStatus(task.getCom()); + t.save(taskstatus); + } +} diff --git a/src/main/java/com/task/info/InfoApplication.java b/src/main/java/com/task/info/InfoApplication.java new file mode 100644 index 0000000..993f7f7 --- /dev/null +++ b/src/main/java/com/task/info/InfoApplication.java @@ -0,0 +1,15 @@ +package com.task.info; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication(scanBasePackages = { "com.task.info.Service", "com.task.info.Entity", + "com.task.info.Controller" }) + +public class InfoApplication { + + public static void main(String[] args) { + SpringApplication.run(InfoApplication.class, args); + } + +} diff --git a/src/main/java/com/task/info/Service/EmployeService.java b/src/main/java/com/task/info/Service/EmployeService.java new file mode 100644 index 0000000..c406511 --- /dev/null +++ b/src/main/java/com/task/info/Service/EmployeService.java @@ -0,0 +1,52 @@ +package com.task.info.Service; + +import java.util.*; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; +import org.springframework.stereotype.Service; + +import com.task.info.DAO.EmployeeDao; +import com.task.info.Entity.Employee; + +import jakarta.transaction.Transactional; + +@Component +@Service +@Transactional +public class EmployeService { + // @Autowired + // private Employee emp; + @Autowired + private EmployeeDao dao; + private static List list = new ArrayList<>(); + + static { + + list.add(new Employee(332, "xyz.c@infoobjects.com", "Abhishek", "@nis33")); + } + + public List getAllEmployees() { + return list; + } + + public void addEmployee(Employee task) { + // list.add(task); + String email = task.getEmail(); + if (dao.existsByEmail(email)) { + throw new IllegalArgumentException("Email is already taken"); + } else { + + task.setId(task.getId()); + + dao.save(task); + System.out.println(task); + } + } + + public void add(Employee e) { + list.add(e); + dao.save(e); + } + +} diff --git a/src/main/java/com/task/info/Service/TaskService.java b/src/main/java/com/task/info/Service/TaskService.java new file mode 100644 index 0000000..dcb4e35 --- /dev/null +++ b/src/main/java/com/task/info/Service/TaskService.java @@ -0,0 +1,155 @@ +package com.task.info.Service; + +import java.util.*; + +import org.hibernate.Hibernate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; +import org.springframework.stereotype.Service; + +import com.task.info.DAO.CompleteDao; +import com.task.info.DAO.EmployeeDao; +import com.task.info.DAO.EmployeeTaskSummaryDao; +import com.task.info.DAO.TaskDao; +import com.task.info.DAO.TaskStatusDao; +import com.task.info.Entity.CompleteTask; +import com.task.info.Entity.Employee; +import com.task.info.Entity.Task; +import com.task.info.Entity.TaskStatus; +import com.task.info.Entity.Employeetasksummary; + +import jakarta.transaction.Transactional; + +@Component +@Service +@Transactional +public class TaskService { + @Autowired + private EmployeeDao ee; + @Autowired + private TaskStatusDao f; + @Autowired + private TaskDao tt; + @Autowired + private CompleteDao com; + @Autowired + private EmployeeTaskSummaryDao emp; + + private static List list = new ArrayList<>(); + + static { + + list.add(new Task("Backend", "set database", 2.3, 3)); + } + + public List getAllTask() { + return list; + } + + // public void addtask(Task task) { + // list.add(task); + // } + public void addtask(Task task) { + // list.add(e); + Task savedTask = tt.save(task); + TaskStatus taskstatus = new TaskStatus(); + System.out.println(savedTask); + taskstatus.setTask(savedTask); + taskstatus.setDescription(savedTask.getDes()); + taskstatus.setStatus(savedTask.getCom()); + f.save(taskstatus); + + } + + public void assigntask(Integer taskid, Integer empid, String title, String des, Integer prioritylevel) { + Task t = tt.findById(taskid).orElseThrow(() -> new IllegalArgumentException("Task not found")); + Employee e = ee.findById(empid).orElseThrow(() -> new IllegalArgumentException("Employe not found")); + t.setAssignedTo(e); + if (title != null) { + t.setTitle(title); + } + if (des != null) { + t.setDes(des); + } + t.setPrioritylevel(prioritylevel); + tt.save(t); + } + + public Task updatestatusbyemployee(Integer empid, Integer taskid, String completed) { + Task t = tt.findByAssignedToIdAndId(empid, taskid); + + if (!Hibernate.isInitialized(t)) { + Hibernate.initialize(t); + } + + if (t != null) { + t.setStatus(completed); + return tt.save(t); + } else { + + throw new IllegalArgumentException("Task not found"); + } + + } + + public void markTaskComplete(Integer taskid) { + Task t = tt.findById(taskid).orElse(null); + if (t != null && !t.isCom()) { + t.setCom(true); + tt.save(t); + } + + CompleteTask c = new CompleteTask(); + c.setDes(t.getDes()); + c.setComp(true); + c.setCompletionDate(new java.util.Date()); + com.save(c); + } + + public List> getAllTaskStatus() { + List tasks = tt.findAll(); + List> taskStatusList = new ArrayList<>(); + + for (Task task : tasks) { + Map taskStatus = new HashMap<>(); + taskStatus.put("taskId", task.getTaskid()); + taskStatus.put("status", task.getStatus()); + taskStatusList.add(taskStatus); + } + + return taskStatusList; + } + + public void deleteTask(Integer taskid) { + Task task = tt.findById(taskid) + .orElseThrow(() -> new IllegalArgumentException("Task not found with ID: " + taskid)); + tt.delete(task); + } + + public void generatedEmployeeTaskSummary() { + List employees = ee.findAll(); + for (Employee employee : employees) { + Integer employeeId = employee.getId(); + String employeeName = employee.getName(); + + List tasksByEmployee = tt.findByAssignedToId(employeeId); + Long totalTasksDone = tasksByEmployee.stream() + .filter(Task::isCom) // Assuming 'isCom' represents completed status + .count(); + + for (Task task : tasksByEmployee) { + if (task.isCom()) { // Only process completed tasks + String taskTitle = task.getTitle(); + Employeetasksummary summary = new Employeetasksummary(); + summary.setEmployeeid(employeeId); + summary.setEmployeename(employeeName); + summary.setTasktitle(taskTitle); + summary.setTotalTaskDone(totalTasksDone); + + emp.save(summary); + } + } + + } + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..efb3778 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,12 @@ +spring.datasource.url=jdbc:h2:mem:demodb +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.username=sa +spring.datasource.password=password +spring.jpa.database-platform=org.hibernate.dialect.H2Dialect +spring.jpa.hibernate.ddl-auto=create + +spring.jpa.defer-datasource-initialization=true +spring.h2.console.enabled=true +spring.h2.console.path=/h2-console +spring.h2.console.settings.trace=false +spring.h2.console.settings.web-allow-others=false diff --git a/src/test/java/com/task/info/InfoApplicationTests.java b/src/test/java/com/task/info/InfoApplicationTests.java new file mode 100644 index 0000000..fda9189 --- /dev/null +++ b/src/test/java/com/task/info/InfoApplicationTests.java @@ -0,0 +1,13 @@ +package com.task.info; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class InfoApplicationTests { + + @Test + void contextLoads() { + } + +} diff --git a/taskmanagmentapi b/taskmanagmentapi new file mode 160000 index 0000000..3c16688 --- /dev/null +++ b/taskmanagmentapi @@ -0,0 +1 @@ +Subproject commit 3c16688bf03aeaf694a9c0ccbdaed1ff5c9cceaa