diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..f2051af --- /dev/null +++ b/.clang-format @@ -0,0 +1,244 @@ +--- + +# Copyright 2025 Humberto Gomes, José Lopes, Mariana Rocha +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# 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. + +# GENERAL SETTINGS + +BasedOnStyle: LLVM +Language: Java +Standard: Latest + +# ALIGNMENT + +AlignAfterOpenBracket: Align +AlignArrayOfStructures: Left +AlignEscapedNewlines: Right +AlignOperands: Align +AlignTrailingComments: + Kind: Always + OverEmptyLines: 1 +QualifierAlignment: Leave + +AlignConsecutiveAssignments: + Enabled: true + AcrossEmptyLines: false + AcrossComments: true + AlignCompound: true + PadOperators: true +AlignConsecutiveBitFields: + Enabled: true + AcrossEmptyLines: false + AcrossComments: true +AlignConsecutiveDeclarations: + Enabled: true + AcrossEmptyLines: false + AcrossComments: true +AlignConsecutiveMacros: + Enabled: true + AcrossEmptyLines: false + AcrossComments: true + +# ARGUMENTS & PARAMETERS + +AllowAllArgumentsOnNextLine: false +AllowAllParametersOfDeclarationOnNextLine: false +BinPackArguments: false +BinPackParameters: false + +# COMMENTS + +ReflowComments: true +SpacesBeforeTrailingComments: 1 +SpacesInLineCommentPrefix: + Minimum: 1 + Maximum: -1 + +# CURLY BRACES + +BraceWrapping: + AfterCaseLabel: false + AfterClass: false + AfterControlStatement: Never + AfterEnum: false + AfterFunction: false + AfterNamespace: false + AfterStruct: false + AfterUnion: false + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + BeforeLambdaBody: false + BeforeWhile: false + IndentBraces: false + SplitEmptyFunction: false + SplitEmptyRecord: false + SplitEmptyNamespace: false + +BreakBeforeBraces: Attach +InsertBraces: false +RemoveBracesLLVM: false + +# FORMATTER PENALTIES + +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakOpenParenthesis: 0 +PenaltyBreakString: 1000 +PenaltyBreakTemplateDeclaration: 10 +PenaltyExcessCharacter: 1000000 +PenaltyIndentedWhitespace: 0 +PenaltyReturnTypeOnItsOwnLine: 60 + +# HEADER FILES + +SortIncludes: CaseInsensitive +SortUsingDeclarations: Lexicographic +SortJavaStaticImport: After +IncludeBlocks: Regroup +IncludeCategories: + - Regex: '^<' + Priority: 0 + SortPriority: 0 + CaseSensitive: false + - Regex: '^"' + Priority: 1 + SortPriority: 1 + CaseSensitive: false + +IncludeIsMainRegex: '' +IncludeIsMainSourceRegex: '' + +JavaImportGroups: [java, org.example] + +# INDENTATION + +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +IndentWidth: 4 +PPIndentWidth: 4 +TabWidth: 4 +UseTab: Never + +IndentAccessModifiers: false +IndentCaseBlocks: false +IndentCaseLabels: true +IndentExternBlock: Indent +IndentGotoLabels: true +IndentPPDirectives: BeforeHash +IndentRequiresClause: true +IndentWrappedFunctionNames: true +LambdaBodyIndentation: Signature +NamespaceIndentation: None +RequiresExpressionIndentation: OuterScope + +# LINE BREAKING + +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: false +BreakAfterAttributes: Always +BreakAfterJavaFieldAnnotations: true +BreakBeforeBinaryOperators: None +BreakBeforeConceptDeclarations: Always +BreakBeforeInlineASMColon: OnlyMultiline +BreakBeforeTernaryOperators: true +BreakConstructorInitializers: AfterColon +BreakInheritanceList: AfterColon +BreakStringLiterals: false +EmptyLineAfterAccessModifier: Never +EmptyLineBeforeAccessModifier: Always +PackConstructorInitializers: NextLine +RequiresClausePosition: OwnLine +SeparateDefinitionBlocks: Always + +# LINE PROPERTIES + +ColumnLimit: 100 +LineEnding: LF + +KeepEmptyLinesAtTheStartOfBlocks: true +KeepEmptyLinesAtEOF: false +MaxEmptyLinesToKeep: 1 +InsertNewlineAtEOF: true + +# MACROS + +AttributeMacros: [] +ForEachMacros: [] +IfMacros: [] +NamespaceMacros: [] +StatementAttributeLikeMacros: [] +StatementMacros: [] +TypenameMacros: [] +WhitespaceSensitiveMacros: [] + +# MISCELANEOUS + +CompactNamespaces: false +DisableFormat: false +FixNamespaceComments: false +InsertTrailingCommas: None +IntegerLiteralSeparator: + Binary: 4 + BinaryMinDigits: 9 + Decimal: 3 + DecimalMinDigits: 7 + Hex: -1 + +RemoveParentheses: Leave +RemoveSemicolon: true + +# SINGLE-LINE BLOCKS AND STATEMENTS + +AllowShortBlocksOnASingleLine: Empty +AllowShortCaseLabelsOnASingleLine: false +AllowShortEnumsOnASingleLine: false +AllowShortFunctionsOnASingleLine: Empty +AllowShortIfStatementsOnASingleLine: Never +AllowShortLambdasOnASingleLine: All +AllowShortLoopsOnASingleLine: false + +# SPACING + +DerivePointerAlignment: false +PointerAlignment: Right +ReferenceAlignment: Pointer +SpaceAroundPointerQualifiers: Default + +BitFieldColonSpacing: Both +Cpp11BracedListStyle: false +SpaceAfterCStyleCast: true +SpaceAfterLogicalNot: false +SpaceAfterTemplateKeyword: false +SpaceBeforeAssignmentOperators: true +SpaceBeforeCaseColon: false +SpaceBeforeCpp11BracedList: true +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true +SpaceBeforeParens: ControlStatements +SpaceBeforeRangeBasedForLoopColon: true +SpaceBeforeSquareBrackets: false +SpaceInEmptyBlock: false + +SpacesInAngles: Never +SpacesInContainerLiterals: true +SpacesInSquareBrackets: false +SpacesInParensOptions: + InConditionalStatements: false + InCStyleCasts: false + InEmptyParentheses: false + Other: false +... diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2ff7738 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +* text eol=lf +*.jar binary diff --git a/.github/workflows/maintenance.yaml b/.github/workflows/maintenance.yaml new file mode 100644 index 0000000..edea791 --- /dev/null +++ b/.github/workflows/maintenance.yaml @@ -0,0 +1,32 @@ +name: Maintenance checks +on: + pull_request: + paths: + - '.github/workflows/**' + - 'src/**' + - 'build.gradle.kts' +jobs: + format: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: >- + sudo apt update && + sudo apt install wget && + wget https://apt.llvm.org/llvm.sh && + sudo bash ./llvm.sh 19 && + (sudo rm /usr/bin/clang-format || exit 0) && + sudo apt -y install clang-format-19 + - run: find src -type f | xargs -n1 clang-format-19 --dry-run -Werror + + build: + timeout-minutes: 10 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + + - run: ./gradlew --no-daemon build diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4790b95 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +# IDEs +.vscode +.idea + +# Build artifacts +.gradle +build diff --git a/README.md b/README.md index 9f8b505..73fc166 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,30 @@ year's [Object Oriented Programming Project](https://github.com/pedrofp4444/POO) - Humberto Gomes (A104348) - José Lopes (A104541) - Mariana Rocha (A90817) + +### Running + +To get the code in this repository, clone it: + +``` +$ git clone https://github.com/voidbert/ATS.git +$ cd ATS +``` + +Then, you can build run the application: + +``` +$ gradle run +``` + +There are multiple test suites. To execute the tests written by the previous authors, run: + +``` +$ gradle test -PtestDir=oldunittests +``` + +To execute the new unit tests, run: + +``` +$ gradle test +``` diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..15ccad5 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,72 @@ +/* + * Copyright 2025 Humberto Gomes, José Lopes, Mariana Rocha + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * 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. + */ + +// Project configuration + +plugins { + application + jacoco +} + +repositories { + mavenCentral() +} + +dependencies { + testImplementation("org.junit.jupiter:junit-jupiter:5.12.1") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.12.1") +} + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(21) + } +} + +application { + mainClass = "MakeItFit.Main" +} + +jacoco { + toolVersion = "0.8.13" +} + +// Test configuration + +var testTarget = "unittests" +if (project.hasProperty("testDir")) { + testTarget = project.property("testDir").toString() +} + +java.sourceSets["test"].java { + srcDir("src/${testTarget}/java") +} + +tasks.named("test") { + useJUnitPlatform() + finalizedBy(tasks.jacocoTestReport) +} + +// Other tasks + +tasks.named("run") { + standardInput = System.`in` +} + +tasks.register("format") { + workingDir = file(rootDir) + commandLine = listOf("sh", "-c", "find src -type f | xargs -n1 sh -c 'clang-format -i $0; sed -i s/\\\\r//g $0'") +} diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..a4b76b9 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e2847c8 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..f5feea6 --- /dev/null +++ b/gradlew @@ -0,0 +1,252 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..8c0a7bd --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,21 @@ +/* + * Copyright 2025 Humberto Gomes, José Lopes, Mariana Rocha + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * 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. + */ + +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" +} + +rootProject.name = "ATS" diff --git a/src/main/java/MakeItFit/Main.java b/src/main/java/MakeItFit/Main.java new file mode 100644 index 0000000..69ad4a2 --- /dev/null +++ b/src/main/java/MakeItFit/Main.java @@ -0,0 +1,15 @@ +package MakeItFit; + +/** + * The class Main represents the call of the application. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class Main { + public static void main(String[] args) { + MakeItFitApplication makeItFitApplication = new MakeItFitApplication(); + makeItFitApplication.init(); + makeItFitApplication.start(); + } +} diff --git a/src/main/java/MakeItFit/MakeItFit.java b/src/main/java/MakeItFit/MakeItFit.java new file mode 100644 index 0000000..d927c27 --- /dev/null +++ b/src/main/java/MakeItFit/MakeItFit.java @@ -0,0 +1,541 @@ +package MakeItFit; + +import java.io.*; +import java.util.List; +import java.util.UUID; + +import MakeItFit.activities.Activity; +import MakeItFit.exceptions.*; +import MakeItFit.queries.*; +import MakeItFit.trainingPlan.*; +import MakeItFit.users.*; +import MakeItFit.utils.MakeItFitDate; + +/** + * The class MakeItFit represents the model of the application. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MakeItFit implements Serializable { + + private UserManager userManager; + private TrainingPlanManager trainingPlanManager; + private QueriesManager queriesManager; + + public MakeItFit() { + this.userManager = new UserManager(); + this.trainingPlanManager = new TrainingPlanManager(); + this.queriesManager = new QueriesManager(userManager, trainingPlanManager); + } + + /** + * Creates a new user with the provided details. + * + * @param name The user's name. + * @param age The user's age. + * @param gender The user's gender. + * @param weight The user's weight. + * @param height The user's height. + * @param bpm The user's heart rate in beats per minute. + * @param level The user's experience level. + * @param address The user's address. + * @param phone The user's phone number. + * @param email The user's email address. + * @param frequency The user's training frequency. + * @param type The user's type. + * @throws IllegalArgumentException If any of the provided arguments are invalid. + * @throws ExistingEntityConflictException If a user with the same email already exists. + * @throws InvalidTypeException If an invalid type is encountered during user creation. + */ + public void createUser(String name, + int age, + Gender gender, + float weight, + int height, + int bpm, + int level, + String address, + String phone, + String email, + int frequency, + String type) + throws IllegalArgumentException, ExistingEntityConflictException, InvalidTypeException { + User user = this.userManager.createUser(name, + age, + gender, + weight, + height, + bpm, + level, + address, + phone, + email, + frequency, + type); + this.userManager.insertUser(user); + } + + /** + * Removes a user based on the provided identifier. + * + * @param identifier The user's identifier, either a UUID or email. + * @throws EntityDoesNotExistException If the user does not exist. + * @throws InvalidTypeException If the identifier type is neither UUID nor String. + */ + public void removeUser(Object identifier) throws EntityDoesNotExistException { + if (identifier instanceof UUID) { + this.userManager.removeUserByCode((UUID) identifier); + } else if (identifier instanceof String) { + this.userManager.removeUserByEmail((String) identifier); + } else { + throw new InvalidTypeException(); + } + } + + /** + * Checks whether a user with the specified email exists. + * + * @param email The user's email address. + * @return `true` if a user with the email exists, `false` otherwise. + */ + public boolean existsUserWithEmail(String email) { + return this.userManager.existsUserWithEmail(email); + } + + /** + * Retrieves a user based on the provided identifier. + * + * @param identifier The user's identifier, either a UUID or email. + * @return The retrieved user. + * @throws InvalidTypeException If the identifier type is neither UUID nor String. + */ + public User getUser(Object identifier) throws InvalidTypeException { + if (identifier instanceof UUID) { + return this.userManager.getUserByCode((UUID) identifier); + } else if (identifier instanceof String) { + return this.userManager.getUserByEmail((String) identifier); + } else { + throw new InvalidTypeException(); + } + } + + /** + * Updates the user's name. + * + * @param name The new name for the user. + * @param email The user's email. + */ + public void updateUserName(String name, String email) { + User user = getUser(email); + user.setName(name); + this.userManager.updateUser(user); + } + + /** + * Updates the user's age. + * + * @param age The new age for the user. + * @param email The user's email. + */ + public void updateUserAge(int age, String email) { + User user = getUser(email); + user.setAge(age); + this.userManager.updateUser(user); + } + + /** + * Updates the user's gender. + * + * @param gender The new gender for the user. + * @param email The user's email. + */ + public void updateUserGender(Gender gender, String email) { + User user = getUser(email); + user.setGender(gender); + this.userManager.updateUser(user); + } + + /** + * Updates the user's weight. + * + * @param weight The new weight for the user. + * @param email The user's email. + */ + public void updateUserWeight(float weight, String email) { + User user = getUser(email); + user.setWeight(weight); + this.userManager.updateUser(user); + } + + /** + * Updates the user's height. + * + * @param height The new height for the user. + * @param email The user's email. + */ + public void updateUserHeight(int height, String email) { + User user = getUser(email); + user.setHeight(height); + this.userManager.updateUser(user); + } + + /** + * Updates the user's heart rate in beats per minute (BPM). + * + * @param bpm The new BPM for the user. + * @param email The user's email. + */ + public void updateUserBpm(int bpm, String email) { + User user = getUser(email); + user.setBpm(bpm); + this.userManager.updateUser(user); + } + + /** + * Updates the user's experience level. + * + * @param level The new experience level for the user. + * @param email The user's email. + */ + public void updateUserLevel(int level, String email) { + User user = getUser(email); + user.setLevel(level); + this.userManager.updateUser(user); + } + + /** + * Updates the user's address. + * + * @param address The new address for the user. + * @param email The user's email. + */ + public void updateUserAddress(String address, String email) { + User user = getUser(email); + user.setAddress(address); + this.userManager.updateUser(user); + } + + /** + * Updates the user's phone number. + * + * @param phone The new phone number for the user. + * @param email The user's email. + */ + public void updateUserPhone(String phone, String email) { + User user = getUser(email); + user.setPhone(phone); + this.userManager.updateUser(user); + } + + /** + * Updates the user's email address. + * + * @param email The new email address for the user. + * @param email The user's email. + */ + public void updateUserEmail(String email, String newEmail) { + User user = getUser(email); + user.setEmail(newEmail); + this.userManager.updateUser(user); + } + + /** + * Retrieves a list of all users. + * + * @return A list of all users. + */ + public List getAllUsers() { + return this.userManager.getAllUsers(); + } + + /** + * Retrieves a list of all activities from a user. + * + * @param email The user's email address. + * @return A list of all activities from the user. + */ + public List getActivitiesFromUser(String email) { + return this.userManager.getActivitiesFromUser(email); + } + + /** + * Adds an activity to a user. + * + * @param email The user's email. + */ + public void addActivityToUser(String email, Activity activity) { + this.userManager.addActivityToUser(email, activity); + } + + /** + * Removes an activity from a user. + * + * @param email The user's email. + * @param code The activity's code. + */ + public void removeActivityFromUser(String email, UUID code) { + this.userManager.removeActivityFromUser(email, code); + } + + /** + * Creates a new training plan based on the provided specifications. + * + * @param userCode The code of the user for whom the training plan will be created. + * @param startDate The start date of the new training plan. + * @return The code of the created training plan. + * @throws IllegalArgumentException If the provided arguments are not valid. + */ + public UUID createTrainingPlan(UUID userCode, MakeItFitDate startDate) + throws IllegalArgumentException { + TrainingPlan trainingPlan = + this.trainingPlanManager.createTrainingPlan(userCode, startDate); + this.trainingPlanManager.insertTrainingPlan(trainingPlan); + return trainingPlan.getCode(); + } + + /** + * Creates a new training plan based on the provided objectives. + * + * @param trainingPlan The training plan in usage. + * @param hardActivity Whether the activities should be hard. + * @param maxActivitiesPerDay The maximum number of activities per day. + * @param maxDifferentActivities The maximum number of different activities. + * @param weeklyRecurrence The weekly recurrence of the activities. + * @param minimumCaloricWaste The minimum caloric waste of the activities. + * @throws IllegalArgumentException If the provided arguments are not valid. + */ + public void constructTrainingPlanByObjectives(TrainingPlan trainingPlan, + boolean hardActivity, + int maxActivitiesPerDay, + int maxDifferentActivities, + int weeklyRecurrence, + int minimumCaloricWaste) + throws IllegalArgumentException { + this.trainingPlanManager.constructTrainingPlanByObjectives( + trainingPlan, + this.userManager.getUserByCode(trainingPlan.getUserCode()).getIndex(), + hardActivity, + maxActivitiesPerDay, + maxDifferentActivities, + weeklyRecurrence, + minimumCaloricWaste); + } + + /** + * Removes a training plan based on the provided code. + * + * @param code The code of the training plan to be removed. + */ + public void removeTrainingPlan(UUID code) { + this.trainingPlanManager.removeTrainingPlan(code); + } + + /** + * Retrieves a training plan based on the provided code. + * + * @param code The code of the training plan to be retrieved. + * @throws IllegalArgumentException If the provided code is not valid. + * @return The retrieved training plan. + */ + public TrainingPlan getTrainingPlan(UUID code) throws IllegalArgumentException { + return this.trainingPlanManager.getTrainingPlan(code); + } + + /** + * Updates a training plan based on the provided details. + * + * @param trainingPlan The updated training plan. + * @throws EntityDoesNotExistException If the training plan does not exist. + */ + public void updateTrainingPlan(TrainingPlan trainingPlan) throws EntityDoesNotExistException { + this.trainingPlanManager.updateTrainingPlan(trainingPlan); + } + + /** + * Returns a list of all existing training plans. + * + * @return A list of all training plans. + */ + public List getAllTrainingPlans() { + return this.trainingPlanManager.getAllTrainingPlans(); + } + + /** + * Adds an activity to a training plan from a user. + * + * @param code The user's code. + * @param activity The activity to be added. + * @param iterations The iterations of the activity. + */ + public void addActivityToTrainingPlan(UUID code, Activity activity, int iterations) { + this.trainingPlanManager.addActivity(code, iterations, activity); + } + + /** + * Removes an activity from a training plan. + * + * @param code The code of the training plan. + * @param activityCode The code of the activity. + */ + public void removeActivityFromTrainingPlan(UUID code, UUID activityCode) { + this.trainingPlanManager.removeActivity(code, activityCode); + } + + /** + * Retrieves a list of all training plans from a user. + * + * @param userCode The code of the user. + * @return A list of all training plans from the user. + */ + public List getTrainingPlansFromUser(UUID userCode) { + return this.trainingPlanManager.getTrainingPlansFromUser(userCode); + } + + /** + * Updates the system current date. + * + * @param currentDate The current date of the system. + */ + public void updateSystem(MakeItFitDate currentDate, UUID userCode) { + this.userManager.updateSystem(); + this.trainingPlanManager.updateActivities(currentDate, + userManager.getUserByCode(userCode).getIndex()); + List activities = + this.trainingPlanManager.extractActivities(currentDate, userCode); + this.userManager.addActivitiesToUser(userCode, activities); + } + + /** + * Saves the system to a file. + * + * @param fileName The name of the file to save the system to. + */ + public void saveSystem(String fileName) throws FileNotFoundException { + try (ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(fileName))) { + oos.writeObject(this); + } catch (IOException e) { + System.out.println("MakeItFit.saveSystem: " + e.getMessage()); + throw new FileNotFoundException(); + } + } + + /** + * Loads the system from a file. + * + * @param fileName The name of the file to load the system from. + */ + public void loadSystem(String fileName) throws FileNotFoundException { + try (ObjectInputStream ois = new ObjectInputStream(new FileInputStream(fileName))) { + MakeItFit makeItFit = (MakeItFit) ois.readObject(); + this.userManager = makeItFit.userManager; + this.trainingPlanManager = makeItFit.trainingPlanManager; + } catch (IOException | ClassNotFoundException e) { + throw new FileNotFoundException(); + } + } + + /** + * Executes a query and returns the result. + * @param email The email of the user. + * @param date1 If wanted, the start date of the period. + * @param date2 If wanted, the end date of the period. + * @return number of km the user did in a given period of time or in total + */ + public double + executeQueryHowManyKMsDone(String email, MakeItFitDate date1, MakeItFitDate date2) { + return this.queriesManager.executeQueryHowManyKMsDone(this.userManager, + email, + date1, + date2); + } + + /** + * Executes a query and returns the result. + * @param email The email of the user. + * @return number of altimetry the user did in a given period of time or in total + */ + public double executeQueryHowManyKMsDone(String email) { + return this.queriesManager.executeQueryHowManyKMsDone(this.userManager, email); + } + + /** + * Executes a query and returns the result. + * @param email The email of the user. + * @param date1 If wanted, the start date of the period. + * @param date2 If wanted, the end date of the period. + * @return number of altimetry the user did in a given period of time or in total + */ + public double + executeQueryHowManyAltimetryDone(String email, MakeItFitDate date1, MakeItFitDate date2) { + return this.queriesManager.executeQueryHowManyAltimetryDone(this.userManager, + email, + date1, + date2); + } + + /** + * Executes a query and returns the result. + * @param email The email of the user. + * @return number of altimetry the user did in a given period of time or in total + */ + public double executeQueryHowManyAltimetryDone(String email) { + return this.queriesManager.executeQueryHowManyAltimetryDone(this.userManager, email); + } + + /** + * Executes a query and returns the result. + * + * @return The most demanding training plan. + */ + public TrainingPlan executeQueryMostDemandingTrainingPlan() { + return this.queriesManager.executeQueryMostDemandingTrainingPlan(this.trainingPlanManager, + this.userManager); + } + + /** + * Executes a query and returns the result. + * @return The most done activity. + */ + public String executeQueryMostDoneActivity() { + return this.queriesManager.executeQueryMostDoneActivity(this.userManager); + } + + /** + * Executes a query and returns the result. + * @param date1 If wanted, the start date of the period. + * @param date2 If wanted, the end date of the period. + * @return the user who burns more calories between two dates or in total + */ + public User executeQuerywhoBurnsMoreCalories(MakeItFitDate date1, MakeItFitDate date2) { + return this.queriesManager.executeQuerywhoBurnsMoreCalories(this.userManager, date1, date2); + } + + /** + * Executes a query and returns the result. + * @return the user who burns more calories + */ + public User executeQuerywhoBurnsMoreCalories() { + return this.queriesManager.executeQuerywhoBurnsMoreCalories(this.userManager); + } + + /** + * Executes a query and returns the result. + * @param date1 If wanted, the start date of the period. + * @param date2 If wanted, the end date of the period. + * @return the user who did the most activities between two dates or in total + */ + public User executeQueryWhoDidTheMostActivities(MakeItFitDate date1, MakeItFitDate date2) { + return this.queriesManager.executeQueryWhoDidTheMostActivities(this.userManager, + date1, + date2); + } + + /** + * Executes a query and returns the result. + * @return the user who did the most activities + */ + public User executeQueryWhoDidTheMostActivities() { + return this.queriesManager.executeQueryWhoDidTheMostActivities(this.userManager); + } +} diff --git a/src/main/java/MakeItFit/MakeItFitApplication.java b/src/main/java/MakeItFit/MakeItFitApplication.java new file mode 100644 index 0000000..e6b8c45 --- /dev/null +++ b/src/main/java/MakeItFit/MakeItFitApplication.java @@ -0,0 +1,133 @@ +package MakeItFit; + +import java.util.*; + +import MakeItFit.menu.*; +import MakeItFit.views.AdminView; +import MakeItFit.views.UserView; + +/** + * The class MakeItFitApplication represents the application. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MakeItFitApplication { + private UserView userView; + private AdminView adminView; + private Menu mainMenu; + + /** + * Constructor for objects of class MakeItFitApplication. + */ + public void init() { + this.userView = new UserView(); + this.adminView = new AdminView(); + this.mainMenu = createMainMenu(); + } + + /** + * Starts the main menu of the application. + * This method runs the main menu loop. + */ + public void start() { + mainMenu.run(); + } + + /** + * Creates the main menu of the application. + * + * @return The created main menu. + */ + private Menu createMainMenu() { + List mainMenuItems = new ArrayList<>(); + mainMenuItems.add(new MenuItem("Init the application", () -> initApplication())); + mainMenuItems.add(new MenuItem("Help", () -> showHelpMessage())); + mainMenuItems.add(new MenuItem("Authors", () -> showAuthors())); + + return new Menu(mainMenuItems); + } + + /** + * Initializes the application and starts the app menu. + */ + private void initApplication() { + System.out.println("[APP] Application is running ..."); + + System.out.print("[APP] Do you want to login as an admin? (y/n): "); + Scanner scanner = new Scanner(System.in); + String answer = scanner.nextLine(); + + if (answer.equals("y") || answer.equals("Y")) { + this.adminView.login(); + } else { + this.userView.login(); + } + } + + /** + * Displays a help message to the user. + * Currently, this method displays a placeholder message. + */ + private static void showHelpMessage() { + System.out.println( + "Welcome to the MakeItFit Application!\n" + + + "This application allows you to manage activities, users, and training plans for physical fitness enthusiasts. Here's an overview of the main features:\n" + + "\n" + + "Activities:\n" + + "\n" + + "Register various types of activities (running, trail, push-up, etc.)\n" + + + "Track distance, elevation gain, repetitions, weights, and duration for each activity\n" + + "Calculate calorie expenditure based on activity type and user profile\n" + + "\n" + + "Users:\n" + + "\n" + + "Create different user types (professionals, amateurs and occasionals)\n" + + + "Store user information (code, name, address, email, average heart rate, height, weight, level)\n" + + "Each user type has a specific calculation formula for his representative index\n" + + "\n" + + "Training Plans:\n" + + "\n" + + "Create training plans consisting of multiple activities\n" + + "Specify activity recurrence (daily, specific weekdays, etc.)\n" + + "Execute training plans and track their completion using the time manager\n" + + "\n" + + "Time Simulation:\n" + + "\n" + + "Advance the application's date to simulate future scenarios\n" + + "Pending activities are automatically executed based on the new date\n" + + "\n" + + "Statistics and Records:\n" + + "\n" + + + "View statistics on calorie expenditure, activity counts, distances, and elevation gains\n" + + "Track individual and overall activity records for each user\n" + + "Experiment different queries on the preserved information\n" + + "\n" + + "Plan Generation:\n" + + "\n" + + "Generate customized training plans based on user goals\n" + + "Specify desired activity types, recurrence, calorie targets, and difficulty levels\n" + + "\n" + + "Help:\n" + + "\n" + + "Access this help text at any time for guidance on using the application\n" + + "\n" + + + "To get started, explore the main menu options. Don't hesitate to refer to this help text whenever you need assistance with the application's features.\n" + + "Enjoy your fitness journey!"); + } + + /** + * Displays the authors of the application. + * Currently, this method displays a list of authors' names. + */ + private static void showAuthors() { + System.out.println("Afonso Santos (a104276)\n" + + "Hélder Gomes (a104100)\n" + + "Pedro Pereira (a104082)"); + } +} diff --git a/src/main/java/MakeItFit/MakeItFitController.java b/src/main/java/MakeItFit/MakeItFitController.java new file mode 100644 index 0000000..70fe5eb --- /dev/null +++ b/src/main/java/MakeItFit/MakeItFitController.java @@ -0,0 +1,729 @@ +package MakeItFit; + +import java.io.FileNotFoundException; +import java.util.*; + +import MakeItFit.activities.implementation.PushUp; +import MakeItFit.activities.implementation.Running; +import MakeItFit.activities.implementation.Trail; +import MakeItFit.activities.implementation.WeightSquat; +import MakeItFit.exceptions.*; +import MakeItFit.time.TimeManager; +import MakeItFit.users.Gender; +import MakeItFit.utils.MakeItFitDate; + +/** + * The class MakeItFitController represents the connection between the views and the MakeItFit. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MakeItFitController { + + private MakeItFit makeItFit; + public String email; + private String name; + private UUID trainingPlan; + private TimeManager timeManager; + + public MakeItFitController() { + this.makeItFit = new MakeItFit(); + this.email = "NO EMAIL"; + this.name = "NO NAME"; + this.timeManager = new TimeManager(); + } + + /** + * Sets the email of the currently working user. + * + * @param email The email of the currently logged in user. + * @throws EntityDoesNotExistException The exception that can happen. + */ + public void setEmail(String email) throws EntityDoesNotExistException { + this.email = email; + try { + this.name = this.makeItFit.getUser(email).getName(); + } catch (Exception e) { + throw new EntityDoesNotExistException(email); + } + } + + /** + * Sets the email of the currently working user. + * + * @param email The email of the currently logged in user. + * @throws EntityDoesNotExistException The exception that can happen. + */ + public void setNewEmail(String email) throws EntityDoesNotExistException { + this.email = email; + } + + /** + * Sets the code of the training plan. + * + * @param trainingPlan The code of the training plan. + */ + public void setTrainingPlan(UUID trainingPlan) { + this.trainingPlan = trainingPlan; + } + + /** + * Returns the email of the currently logged in user. + * + * @return The email of the currently logged in user. + */ + public String getEmail() { + return email; + } + + /** + * Returns the name of the currently logged in user. + * + * @return The name of the currently logged in user. + */ + public String getName() { + return name; + } + + /** + * Logs the user in using the provided email. + * + * @param email The user's email address. + */ + public void login(String email) throws IllegalArgumentException { + this.email = email; + if (this.makeItFit.existsUserWithEmail(email)) { + this.name = makeItFit.getUser(email).getName(); + } else + throw new IllegalArgumentException(email); + } + + /** + * Creates a new user with the provided details. + * + * @param name The user's name. + * @param age The user's age. + * @param gender The user's gender. + * @param weight The user's weight. + * @param height The user's height. + * @param bpm The user's heart rate in beats per minute. + * @param level The user's experience level. + * @param address The user's address. + * @param phone The user's phone number. + * @param frequency The user's training frequency. + * @param type The user's type. + * @throws IllegalArgumentException If any of the provided arguments are invalid. + * @throws ExistingEntityConflictException If a user with the same email already exists. + * @throws InvalidTypeException If an invalid type is encountered during user creation. + */ + public void createUser(String name, + int age, + Gender gender, + float weight, + int height, + int bpm, + int level, + String address, + String phone, + int frequency, + String type) + throws IllegalArgumentException, ExistingEntityConflictException, InvalidTypeException { + makeItFit.createUser(name, + age, + gender, + weight, + height, + bpm, + level, + address, + phone, + this.email, + frequency, + type); + this.name = name; + } + + /** + * Removes the currently working user. + */ + public void removeUser() { + this.makeItFit.removeUser(this.email); + } + + /** + * Retrieves the user details of the currently logged in user. + * + * @return The user details of the currently logged in user. + */ + public String getUserDetails() { + return this.makeItFit.getUser(this.email).toString(); + } + + /** + * Updates the name of the currently logged in user. + * + * @param name The new name of the user. + */ + public void updateName(String name) { + this.makeItFit.updateUserName(name, this.email); + this.name = name; + } + + /** + * Updates the age of the currently logged in user. + * + * @param age The new age of the user. + */ + public void updateAge(int age) { + this.makeItFit.updateUserAge(age, this.email); + } + + /** + * Updates the gender of the currently logged in user. + * + * @param gender The new gender of the user. + */ + public void updateGender(Gender gender) { + this.makeItFit.updateUserGender(gender, this.email); + } + + /** + * Updates the weight of the currently logged in user. + * + * @param weight The new weight of the user. + */ + public void updateWeight(float weight) { + this.makeItFit.updateUserWeight(weight, this.email); + } + + /** + * Updates the height of the currently logged in user. + * + * @param height The new height of the user. + */ + public void updateHeight(int height) { + this.makeItFit.updateUserHeight(height, this.email); + } + + /** + * Updates the heart rate of the currently logged in user. + * + * @param bpm The new heart rate of the user. + */ + public void updateBpm(int bpm) { + this.makeItFit.updateUserBpm(bpm, this.email); + } + + /** + * Updates the fitness level of the currently logged in user. + * + * @param level The new fitness level of the user. + */ + public void updateLevel(int level) { + this.makeItFit.updateUserLevel(level, this.email); + } + + /** + * Updates the address of the currently logged in user. + * + * @param address The new address of the user. + */ + public void updateAddress(String address) { + this.makeItFit.updateUserAddress(address, this.email); + } + + /** + * Updates the phone number of the currently logged in user. + * + * @param phone The new phone number of the user. + */ + public void updatePhone(String phone) { + this.makeItFit.updateUserPhone(phone, this.email); + } + + /** + * Updates the email of the currently logged in user. + * + * @param email The new email of the user. + */ + public void updateEmail(String email) { + this.makeItFit.updateUserEmail(email, this.email); + this.email = email; + } + + /** + * Gets all the users in the system. + * + * @return A list of all users in the system. + */ + public String getAllUsers() { + return this.makeItFit.getAllUsers().toString(); + } + + /** + * Retrieves a list of all activities from the currently logged in user. + * + * @return A String of all activities from the user. + */ + public String getActivities() { + return this.makeItFit.getActivitiesFromUser(this.email).toString(); + } + + /** + * Adds a new push-up activity to the currently logged in user. + * + * @param date The date of the activity. + * @param duration The duration of the activity. + * @param designation The designation of the activity. + * @param name The name of the activity. + * @param repetitions The repetitions of the activity. + * @param series The series of the activity. + */ + public void addActivityToUser(MakeItFitDate date, + int duration, + String designation, + String name, + int repetitions, + int series) { + PushUp activity = new PushUp(this.makeItFit.getUser(this.email).getCode(), + date, + duration, + designation, + name, + repetitions, + series); + this.makeItFit.addActivityToUser(this.email, activity); + if (this.timeManager.getCurrentDate().isAfter(date)) { + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + } + + /** + * Adds a new running activity to the currently logged in user. + * + * @param date The date of the activity. + * @param duration The duration of the activity. + * @param designation The designation of the activity. + * @param name The name of the activity. + * @param distance The distance of the activity. + * @param speed The speed of the activity. + */ + public void addActivityToUser(MakeItFitDate date, + int duration, + String designation, + String name, + double distance, + double speed) { + Running activity = new Running(this.makeItFit.getUser(email).getCode(), + date, + duration, + designation, + name, + distance, + speed); + this.makeItFit.addActivityToUser(this.email, activity); + if (this.timeManager.getCurrentDate().isAfter(date)) { + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + } + + /** + * Adds a new trail activity to the currently logged in user. + * + * @param date The date of the activity. + * @param duration The duration of the activity. + * @param designation The designation of the activity. + * @param name The name of the activity. + * @param distance The distance of the activity. + * @param elevationGain The elevation gain of the activity. + * @param elevationLoss The elevation loss of the activity. + * @param trailType The trail type of the activity. + */ + public void addActivityToUser(MakeItFitDate date, + int duration, + String designation, + String name, + double distance, + double elevationGain, + double elevationLoss, + int trailType) { + Trail activity = new Trail(this.makeItFit.getUser(email).getCode(), + date, + duration, + designation, + name, + distance, + elevationGain, + elevationLoss, + trailType); + this.makeItFit.addActivityToUser(this.email, activity); + if (this.timeManager.getCurrentDate().isAfter(date)) { + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + } + + /** + * Adds a new weight squat activity to the currently logged in user. + * + * @param date The date of the activity. + * @param duration The duration of the activity. + * @param designation The designation of the activity. + * @param name The name of the activity. + * @param repetitions The repetitions of the activity. + * @param series The series of the activity. + * @param weight The weight of the activity. + */ + public void addActivityToUser(MakeItFitDate date, + int duration, + String designation, + String name, + int repetitions, + int series, + double weight) { + WeightSquat activity = new WeightSquat(this.makeItFit.getUser(email).getCode(), + date, + duration, + designation, + name, + repetitions, + series, + weight); + this.makeItFit.addActivityToUser(this.email, activity); + if (this.timeManager.getCurrentDate().isAfter(date)) { + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + } + + /** + * Removes the currently working activity. + */ + public void removeActivityFromUser(UUID activity) { + this.makeItFit.removeActivityFromUser(this.email, activity); + } + + /** + * Updates the system current date. + * + * @param days The number of days to advance the system date. + */ + public void updateSystemDate(int days) throws IllegalArgumentException { + this.timeManager.advanceTime(days); + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + + /** + * Creates a new training plan for the currently logged in user. + * + * @param startDate The start date of the training plan. + */ + public void createTrainingPlan(MakeItFitDate startDate) { + this.trainingPlan = + this.makeItFit.createTrainingPlan(makeItFit.getUser(this.email).getCode(), startDate); + } + + /** + * Removes the currently working training plan. + */ + public void removeTrainingPlan() { + this.makeItFit.removeTrainingPlan(this.trainingPlan); + } + + /** + * Creates a new training plan for the currently logged in user. + * + * @param hardActivity Whether the training plan should include hard activities. + * @param maxActivitiesPerDay The maximum number of activities per day. + * @param maxDifferentActivities The maximum number of different activities. + * @param weeklyRecurrence The weekly recurrence of the training plan. + * @param minimumCaloricWaste The minimum caloric waste of the training plan. + */ + public void constructTrainingPlanByObjectives(boolean hardActivity, + int maxActivitiesPerDay, + int maxDifferentActivities, + int weeklyRecurrence, + int minimumCaloricWaste) + throws IllegalArgumentException { + this.makeItFit.constructTrainingPlanByObjectives( + this.makeItFit.getTrainingPlan(this.trainingPlan), + hardActivity, + maxActivitiesPerDay, + maxDifferentActivities, + weeklyRecurrence, + minimumCaloricWaste); + } + + /** + * Adds a new activity to one of the training plans of the currently logged in user. + * + * @param date The date of the activity. + * @param duration The duration of the activity. + * @param designation The designation of the activity. + * @param name The name of the activity. + * @param repetitions The repetitions of the activity. + * @param series The series of the activity. + * @param iterations The iterations of the activity. + */ + public void addActivityToTrainingPlan(MakeItFitDate date, + int duration, + String designation, + String name, + int repetitions, + int series, + int iterations) { + PushUp activity = new PushUp(this.makeItFit.getUser(this.email).getCode(), + date, + duration, + designation, + name, + repetitions, + series); + this.makeItFit.addActivityToTrainingPlan(this.trainingPlan, activity, iterations); + if (this.timeManager.getCurrentDate().isAfter(date)) { + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + } + + /** + * Adds a new activity to one of the training plans of the currently logged in user. + * + * @param date The date of the activity. + * @param duration The duration of the activity. + * @param designation The designation of the activity. + * @param name The name of the activity. + * @param distance The distance of the activity. + * @param speed The speed of the activity. + * @param iterations The iterations of the activity. + */ + public void addActivityToTrainingPlan(MakeItFitDate date, + int duration, + String designation, + String name, + double distance, + double speed, + int iterations) { + Running activity = new Running(this.makeItFit.getUser(this.email).getCode(), + date, + duration, + designation, + name, + distance, + speed); + this.makeItFit.addActivityToTrainingPlan(this.trainingPlan, activity, iterations); + if (this.timeManager.getCurrentDate().isAfter(date)) { + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + } + + /** + * Adds a new activity to one of the training plans of the currently logged in user. + * + * @param date The date of the activity. + * @param duration The duration of the activity. + * @param designation The designation of the activity. + * @param name The name of the activity. + * @param distance The distance of the activity. + * @param elevationGain The elevation gain of the activity. + * @param elevationLoss The elevation loss of the activity. + * @param trailType The trail type of the activity. + * @param iterations The iterations of the activity. + */ + public void addActivityToTrainingPlan(MakeItFitDate date, + int duration, + String designation, + String name, + double distance, + double elevationGain, + double elevationLoss, + int trailType, + int iterations) { + Trail activity = new Trail(this.makeItFit.getUser(this.email).getCode(), + date, + duration, + designation, + name, + distance, + elevationGain, + elevationLoss, + trailType); + this.makeItFit.addActivityToTrainingPlan(this.trainingPlan, activity, iterations); + if (this.timeManager.getCurrentDate().isAfter(date)) { + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + } + + /** + * Adds a new activity to one of the training plans of the currently logged in user. + * + * @param date The date of the activity. + * @param duration The duration of the activity. + * @param designation The designation of the activity. + * @param name The name of the activity. + * @param repetitions The repetitions of the activity. + * @param series The series of the activity. + * @param weight The weight of the activity. + * @param iterations The iterations of the activity. + */ + public void addActivityToTrainingPlan(MakeItFitDate date, + int duration, + String designation, + String name, + int repetitions, + int series, + double weight, + int iterations) { + WeightSquat activity = new WeightSquat(this.makeItFit.getUser(this.email).getCode(), + date, + duration, + designation, + name, + repetitions, + series, + weight); + this.makeItFit.addActivityToTrainingPlan(this.trainingPlan, activity, iterations); + if (this.timeManager.getCurrentDate().isAfter(date)) { + this.makeItFit.updateSystem(this.timeManager.getCurrentDate(), + this.makeItFit.getUser(this.email).getCode()); + } + } + + /** + * Removes the currently working activity from the training plan. + */ + public void removeActivityFromTrainingPlan(UUID activity) { + this.makeItFit.removeActivityFromTrainingPlan(this.trainingPlan, activity); + } + + /** + * Retrieves a list of all training plans from the currently logged in user. + * + * @return A String of all training plans from the user. + */ + public String getTrainingPlansFromUser() { + return this.makeItFit.getTrainingPlansFromUser(this.makeItFit.getUser(this.email).getCode()) + .toString(); + } + + /** + * Retrieves a list of all activities from a training plan of the currently logged in user. + * + * @return A String of all activities from the training plan. + */ + public String getTrainingPlans() { + return this.makeItFit.getAllTrainingPlans().toString(); + } + + /** + * Saves the system to a file. + * + * @param fileName The name of the file to save the system to. + */ + public void saveSystem(String fileName) throws FileNotFoundException { + this.makeItFit.saveSystem(fileName); + } + + /** + * Loads the system from a file. + * + * @param fileName The name of the file to load the system from. + */ + public void loadSystem(String fileName) throws FileNotFoundException { + this.makeItFit.loadSystem(fileName); + } + + /** + * Executes a query and returns the result. + * @param date1 If wanted, the start date of the period. + * @param date2 If wanted, the end date of the period. + * @return number of km the user did in a given period of time or in total + */ + public double executeQueryHowManyKMsDone(MakeItFitDate date1, MakeItFitDate date2) { + return this.makeItFit.executeQueryHowManyKMsDone(this.email, date1, date2); + } + + /** + * Executes a query and returns the result. + * @return number of km the user did in a given period of time or in total + */ + public double executeQueryHowManyKMsDone() { + return this.makeItFit.executeQueryHowManyKMsDone(this.email); + } + + /** + * Executes a query and returns the result. + * @param date1 If wanted, the start date of the period. + * @param date2 If wanted, the end date of the period. + * @return number of altimetry the user did in a given period of time or in total + */ + public double executeQueryHowManyAltimetryDone(MakeItFitDate date1, MakeItFitDate date2) { + return this.makeItFit.executeQueryHowManyAltimetryDone(this.email, date1, date2); + } + + /** + * Executes a query and returns the result. + * @return number of altimetry the user did in a given period of time or in total + */ + public double executeQueryHowManyAltimetryDone() { + return this.makeItFit.executeQueryHowManyAltimetryDone(this.email); + } + + /** + * Executes a query and returns the result. + * + * @return The most demanding training plan. + */ + public String executeQueryMostDemandingTrainingPlan() { + return this.makeItFit.executeQueryMostDemandingTrainingPlan().toString(); + } + + /** + * Executes a query and returns the result. + * @return The most done activity. + */ + public String executeQueryMostDoneActivity() { + return this.makeItFit.executeQueryMostDoneActivity(); + } + + /** + * Executes a query and returns the result. + * @param date1 If wanted, the start date of the period. + * @param date2 If wanted, the end date of the period. + * @return the user who burns more calories between two dates or in total + */ + public String executeQuerywhoBurnsMoreCalories(MakeItFitDate date1, MakeItFitDate date2) { + return this.makeItFit.executeQuerywhoBurnsMoreCalories(date1, date2).toString(); + } + + /** + * Executes a query and returns the result. + * @return the user who burns more calories between two dates or in total + */ + public String executeQuerywhoBurnsMoreCalories() { + return this.makeItFit.executeQuerywhoBurnsMoreCalories().toString(); + } + + /** + * Executes a query and returns the result. + * @param date1 If wanted, the start date of the period. + * @param date2 If wanted, the end date of the period. + * @return the user who did the most activities between two dates or in total + */ + public String executeQueryWhoDidTheMostActivities(MakeItFitDate date1, MakeItFitDate date2) { + return this.makeItFit.executeQueryWhoDidTheMostActivities(date1, date2).toString(); + } + + /** + * Executes a query and returns the result. + * @return the user who did the most activities between two dates or in total + */ + public String executeQueryWhoDidTheMostActivities() { + return this.makeItFit.executeQueryWhoDidTheMostActivities().toString(); + } +} diff --git a/src/main/java/MakeItFit/activities/Activity.java b/src/main/java/MakeItFit/activities/Activity.java new file mode 100644 index 0000000..6fdb6ee --- /dev/null +++ b/src/main/java/MakeItFit/activities/Activity.java @@ -0,0 +1,275 @@ +package MakeItFit.activities; + +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.utils.MakeItFitDate; + +/** + * The Activity class represents an activity that includes common activity information. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public abstract class Activity implements ActivityInterface, Serializable, Comparable { + private UUID userCode; + private UUID code; + private MakeItFitDate realizationDate; + private int expectedDuration; + private String designation; + private String name; + private String specialization; + private int duration; + private int caloricWaste; + + /** + * Constructs a new Activity instance with the specified parameters. + * + * @param userCode the user code + * @param realizationDate the realization date of the activity + * @param expectedDuration the expected duration of the activity + * @param designation the designation of the activity + * @param name the name of the activity + */ + public Activity(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name) { + this.userCode = userCode; + this.code = UUID.randomUUID(); + this.realizationDate = realizationDate; + this.expectedDuration = expectedDuration; + this.designation = designation; + this.duration = 0; + this.caloricWaste = 0; + this.name = name; + } + + /** + * Constructs a new Activity instance with the default parameters. + */ + public Activity() { + this.userCode = new UUID(0L, 0L); + this.code = UUID.randomUUID(); + this.realizationDate = new MakeItFitDate(); + this.expectedDuration = 0; + this.designation = ""; + this.duration = 0; + this.caloricWaste = 0; + this.name = ""; + } + + /** + * Constructs a new Activity instance as a copy of another Activity instance. + * + * @param a the Activity instance to copy + */ + public Activity(Activity a) { + this.userCode = a.getUserCode(); + this.code = a.getCode(); + this.realizationDate = a.getRealizationDate(); + this.expectedDuration = a.getExpectedDuration(); + this.designation = a.getDesignation(); + this.duration = a.getDuration(); + this.caloricWaste = a.getCaloricWaste(); + this.name = a.getName(); + } + + /** + * Gets the user code of the activity. + * + * @return the user code + */ + public UUID getUserCode() { + return this.userCode; + } + + /** + * Gets the code of the activity. + * + * @return the code of the activity + */ + public UUID getCode() { + return this.code; + } + + /** + * Gets the realization date of the activity. + * + * @return the realization date of the activity + */ + public MakeItFitDate getRealizationDate() { + return this.realizationDate; + } + + /** + * Gets the expected duration of the activity. + * + * @return the expected duration of the activity + */ + public int getExpectedDuration() { + return this.expectedDuration; + } + + /** + * Gets the designation of the activity. + * + * @return the designation of the activity + */ + public String getDesignation() { + return this.designation; + } + + /** + * Gets the name of the activity. + * + * @return the name of the activity + */ + public String getName() { + return this.name; + } + + /** + * Gets the duration of the activity. + * + * @return the duration of the activity + */ + public int getDuration() { + return this.duration; + } + + /** + * Gets the caloric waste of the activity. + * + * @return the caloric waste of the activity + */ + public int getCaloricWaste() { + return this.caloricWaste; + } + + /** + * Gets the specialization of the activity. + * + * @param expectedDuration the expected duration of the activity + */ + public void setExpectedDuration(int expectedDuration) { + this.expectedDuration = expectedDuration; + } + + /** + * Sets the designation of the activity. + * + * @param designation the designation of the activity + */ + public void setDesignation(String designation) { + this.designation = designation; + } + + /** + * Sets the duration of the activity. + * + * @param duration of the activity + */ + public void setDuration(int duration) { + this.duration = duration; + } + + /** + * Sets the caloric waste of the activity. + * + * @param caloricWaste of the activity + */ + public void setCaloricWaste(int caloricWaste) { + this.caloricWaste = caloricWaste; + } + + /** + * Updates the activity based on the current date. + */ + public void updateActivity(float index) { + calculateCaloricWaste(index); + } + + /** + * Calculates the caloric waste of the activity based on the current date. + * + * @param index the index of the user + */ + public abstract void calculateCaloricWaste(float index); + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + * @return the caloric waste of the activity + */ + public abstract int caloricWaste(float index); + + /** + * Sets the specialization of the activity. + * + * @param specialization the specialization of the activity + */ + public void setSpecialization(String specialization) { + this.specialization = specialization; + } + + /** + * Gets the specialization of the activity. + * + * @return the specialization of the activity + */ + @Override + public boolean equals(Object o) { + if (o == this) + return true; + if (!(o instanceof Activity)) + return false; + Activity a = (Activity) o; + return (this.expectedDuration == a.expectedDuration && + this.designation.equals(a.designation)); + } + + /** + * Abstract method for cloning an activity. Must be implemented by subclasses. + * + * @return A clone of the activity. + */ + @Override + public abstract Activity clone(); + + /** + * Returns a string representation of the activity. + * + * @return A string containing the details of the activity. + */ + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("Activity: ").append(this.name).append(", "); + sb.append("Code: ").append(this.code).append(", "); + sb.append("Designation: ").append(this.designation).append(", "); + sb.append("Expected Duration: ").append(this.expectedDuration).append(" minutes, "); + sb.append("Realization Date: ").append(this.realizationDate).append(", "); + sb.append("Caloric Waste: ").append(this.caloricWaste).append(" calories, "); + return sb.toString(); + } + + /** + * Compares the activity to another activity based on the realization date and expected + * duration. + * + * @param other the other activity to compare + * @return a negative integer, zero, or a positive integer as this activity is less than, equal + * to, or greater than the other activity + */ + @Override + public int compareTo(Activity other) { + int compareDate = this.realizationDate.compareTo(other.realizationDate); + if (compareDate != 0) { + return compareDate; + } + return this.expectedDuration - (other.expectedDuration); + } +} diff --git a/src/main/java/MakeItFit/activities/ActivityInterface.java b/src/main/java/MakeItFit/activities/ActivityInterface.java new file mode 100644 index 0000000..539e35b --- /dev/null +++ b/src/main/java/MakeItFit/activities/ActivityInterface.java @@ -0,0 +1,87 @@ +package MakeItFit.activities; + +import java.util.UUID; + +import MakeItFit.utils.MakeItFitDate; + +public interface ActivityInterface { + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + */ + void calculateCaloricWaste(float index); + + /** + * Gets the code of the user. + * + * @return the code of the user + */ + UUID getUserCode(); + + /** + * Gets the code of the user. + * + * @return the code of the user + */ + UUID getCode(); + + /** + * Gets the expected duration of the activity. + * + * @return the expected duration of the activity + */ + int getExpectedDuration(); + + /** + * Gets the duration of the activity. + * + * @return the dureation of the activity + */ + int getDuration(); + + /** + * Gets the designation of the activity. + * + * @return the designation of the activity + */ + String getDesignation(); + + /** + * Sets the duration of the activity. + */ + void setDuration(int duration); + + /** + * Sets expected duration of the activity. + */ + void setExpectedDuration(int expectedDuration); + + /** + * Sets the designation of the activity. + */ + void setDesignation(String designation); + + /** + * Returns a string representation of the Activity. + * + * @return the string representation of the Activity + */ + String toString(); + + /** + * Compares the Activity with another object. + * + * @param o the object to compare + * @return true if the object is equal to the Activity, false otherwise + */ + public boolean equals(Object o); + + /** + * Creates a deep copy of the Activity. + * + * @return A new Activity instance that is a deep copy of the current instance. + */ + int compareTo(Activity other); +} diff --git a/src/main/java/MakeItFit/activities/ActivityManager.java b/src/main/java/MakeItFit/activities/ActivityManager.java new file mode 100644 index 0000000..b4d0e73 --- /dev/null +++ b/src/main/java/MakeItFit/activities/ActivityManager.java @@ -0,0 +1,28 @@ +package MakeItFit.activities; + +import java.util.*; + +import MakeItFit.activities.implementation.PushUp; +import MakeItFit.activities.implementation.Running; +import MakeItFit.activities.implementation.Trail; +import MakeItFit.activities.implementation.WeightSquat; + +/** + * The ActivityManager class represents a manager of activities. + * It provides methods to create and manage activities. + * It is a singleton class + */ + +public class ActivityManager { + private static final List activities = + Arrays.asList("PushUp", "Running", "Trail", "WeightSquat"); + Random random = new Random(); + + /** + * Constructs a new ActivityManager instance. + */ + public String getRandomActivity() { + int index = random.nextInt(activities.size()); + return activities.get(index); + } +} diff --git a/src/main/java/MakeItFit/activities/HardInterface.java b/src/main/java/MakeItFit/activities/HardInterface.java new file mode 100644 index 0000000..1c6819c --- /dev/null +++ b/src/main/java/MakeItFit/activities/HardInterface.java @@ -0,0 +1,16 @@ +package MakeItFit.activities; + +/** + * The HardInterface interface provides a constant factor to multiply the caloric waste of a hard + * activity by. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public interface HardInterface { + + /** + * The factor to multiply the caloric waste of a hard activity by. + */ + public final double HARD_FACTOR = 1.12; +} diff --git a/src/main/java/MakeItFit/activities/implementation/PushUp.java b/src/main/java/MakeItFit/activities/implementation/PushUp.java new file mode 100644 index 0000000..73687a7 --- /dev/null +++ b/src/main/java/MakeItFit/activities/implementation/PushUp.java @@ -0,0 +1,113 @@ +package MakeItFit.activities.implementation; + +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.activities.types.Repetitions; +import MakeItFit.utils.MakeItFitDate; + +/** + * The PushUp class represents an exercise activity of push-ups. + * It extends the Repetitions class, providing additional context specific to the push-up exercise. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class PushUp extends Repetitions implements Serializable { + /** + * Constructs a PushUp instance with the given parameters. + * + * @param userCode The code of the user performing the exercise. + * @param realizationDate The date when the exercise was performed. + * @param expectedDuration The expected duration of the exercise in minutes. + * @param designation The name of the exercise. + * @param name The name of the exercise. + * @param repetitions The number of repetitions in each series. + * @param series The number of series. + */ + public PushUp(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name, + int repetitions, + int series) { + super(userCode, realizationDate, expectedDuration, designation, name, repetitions, series); + setSpecialization(this.getClass().getSimpleName()); + } + + /** + * Constructs a PushUp instance with the default parameters. + */ + public PushUp() { + super(); + setSpecialization(this.getClass().getSimpleName()); + } + + /** + * Constructs a PushUp instance as a copy of another PushUp instance. + * + * @param p The PushUp instance to copy. + */ + public PushUp(PushUp p) { + super(p); + } + + /** + * Calculates the caloric waste for the push-up exercise. + * + * @return The total caloric waste calculated based on the number of repetitions and series. + */ + public void calculateCaloricWaste(float index) { + setCaloricWaste(caloricWaste(index)); + } + + /** + * Calculates the caloric waste for the push-up exercise. + * + * @param index The index to be used in the calculation. + * @return The total caloric waste calculated based on the number of repetitions and series. + */ + public int caloricWaste(float index) { + return (int) (getRepetitions() * getSeries() * index * 0.1); + } + + /** + * Returns a string representation of the PushUp instance. + * + * @return The string representation of the PushUp instance. + */ + @Override + public String toString() { + return super.toString(); + } + + /** + * Determines whether this PushUp instance is equal to another object. + * + * @param o The object to compare with. + * @return True if the object is a PushUp instance and is equal to this instance; false + * otherwise. + */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof PushUp)) { + return false; + } + PushUp p = (PushUp) o; + return super.equals(p); + } + + /** + * Creates a copy of this PushUp instance. + * + * @return A new PushUp instance that is a copy of this instance. + */ + @Override + public PushUp clone() { + return new PushUp(this); + } +} diff --git a/src/main/java/MakeItFit/activities/implementation/Running.java b/src/main/java/MakeItFit/activities/implementation/Running.java new file mode 100644 index 0000000..3c75491 --- /dev/null +++ b/src/main/java/MakeItFit/activities/implementation/Running.java @@ -0,0 +1,136 @@ +package MakeItFit.activities.implementation; + +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.activities.types.Distance; +import MakeItFit.utils.MakeItFitDate; + +/** + * The Running class represents a running activity in the application. + * It extends the Distance class, providing additional properties and methods related to running + * activities. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class Running extends Distance implements Serializable { + private double averageSpeed; + + /** + * Constructs a new Running activity with the specified parameters. + * + * @param userCode the code of the user who performed the activity + * @param realizationDate the date the activity was performed + * @param expectedDuration the expected duration of the activity in minutes + * @param designation a description of the activity + * @param name the name of the activity + * @param distance the distance covered during the activity in meters + * @param speed the average speed during the activity in km/h + */ + public Running(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name, + double distance, + double speed) { + super(userCode, realizationDate, expectedDuration, designation, name, distance); + setSpecialization(this.getClass().getSimpleName()); + this.averageSpeed = speed; + } + + /** + * Constructs a new Running activity with the default parameters. + */ + public Running() { + super(); + setSpecialization(this.getClass().getSimpleName()); + this.averageSpeed = 0; + } + + /** + * Copy constructor for the Running class. + * + * @param r the Running object to be copied + */ + public Running(Running r) { + super(r); + this.averageSpeed = r.getSpeed(); + } + + /** + * Gets the average speed of the running activity. + * + * @return the average speed in km/h + */ + public double getSpeed() { + return averageSpeed; + } + + /** + * Sets the average speed of the running activity. + * + * @param speed the average speed in km/h + */ + public void setSpeed(double speed) { + this.averageSpeed = speed; + } + + /** + * Calculates the caloric waste during the running activity. + * + * @return the estimated caloric waste as an integer value + */ + public void calculateCaloricWaste(float index) { + setCaloricWaste(caloricWaste(index)); + } + + /** + * Calculates the caloric waste during the running activity. + * + * @param index the index to be used in the calculation + * @return the estimated caloric waste as an integer value + */ + public int caloricWaste(float index) { + return (int) (averageSpeed * getDistance() * index * 0.005); + } + + /** + * Returns a string representation of the running activity. + * + * @return a string representation including the speed + */ + @Override + public String toString() { + return super.toString() + "Speed: " + averageSpeed + " Km/h\n"; + } + + /** + * Determines whether the specified object is equal to this running activity. + * + * @param o the object to be compared + * @return true if the specified object is equal to this running activity, otherwise false + */ + @Override + public boolean equals(Object o) { + if (o == this) { + return true; + } + if (!(o instanceof Running)) { + return false; + } + Running r = (Running) o; + return super.equals(r) && averageSpeed == r.getSpeed(); + } + + /** + * Creates a copy of this running activity. + * + * @return a new Running object that is a copy of this running activity + */ + @Override + public Running clone() { + return new Running(this); + } +} diff --git a/src/main/java/MakeItFit/activities/implementation/Trail.java b/src/main/java/MakeItFit/activities/implementation/Trail.java new file mode 100644 index 0000000..72064fc --- /dev/null +++ b/src/main/java/MakeItFit/activities/implementation/Trail.java @@ -0,0 +1,164 @@ +package MakeItFit.activities.implementation; + +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.activities.HardInterface; +import MakeItFit.activities.types.DistanceWithAltimetry; +import MakeItFit.utils.MakeItFitDate; + +/** + * The Trail class represents a trail activity that includes distance and altimetry information. + * It extends the DistanceWithAltimetry class and includes a trail type (easy, medium, or hard). + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class Trail extends DistanceWithAltimetry implements HardInterface, Serializable { + + // Constants representing the different types of trail difficulty + public static final int TRAIL_TYPE_EASY = 0; + public static final int TRAIL_TYPE_MEDIUM = 1; + public static final int TRAIL_TYPE_HARD = 2; + + // The type of the trail, represented by one of the constants above + private int trailType; + + /** + * Constructs a new Trail instance with the specified parameters. + * + * @param userCode The user code associated with the activity. + * @param realizationDate The date the activity was realized. + * @param expectedDuration The expected duration of the activity. + * @param designation The name or description of the activity. + * @param name The name of the activity. + * @param distance The distance covered during the activity. + * @param elevationGain The total elevation gain during the activity. + * @param elevationLoss The total elevation loss during the activity. + * @param trailType The type of trail (easy, medium, or hard). + */ + public Trail(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name, + double distance, + double elevationGain, + double elevationLoss, + int trailType) { + super(userCode, + realizationDate, + expectedDuration, + designation, + name, + distance, + elevationGain, + elevationLoss); + setSpecialization(this.getClass().getSimpleName()); + this.trailType = trailType; + } + + /** + * Constructs a new Trail instance with the default parameters. + */ + public Trail() { + super(); + setSpecialization(this.getClass().getSimpleName()); + this.trailType = TRAIL_TYPE_EASY; + } + + /** + * Constructs a new Trail instance as a copy of the specified Trail instance. + * + * @param trail The Trail instance to copy. + */ + public Trail(Trail trail) { + super(trail); + this.trailType = trail.getTrailType(); + } + + /** + * Returns the trail type of the Trail instance. + * + * @return The trail type (easy, medium, or hard). + */ + public int getTrailType() { + return trailType; + } + + /** + * Sets the trail type of the Trail instance, ensuring it remains within valid bounds. + * + * @param trailType The trail type to set (easy, medium, or hard). + */ + public void setTrailType(int trailType) { + if (trailType < TRAIL_TYPE_EASY) { + this.trailType = TRAIL_TYPE_EASY; + } else if (trailType > TRAIL_TYPE_HARD) { + this.trailType = TRAIL_TYPE_HARD; + } else { + this.trailType = trailType; + } + } + + /** + * Calculates the caloric waste for the Trail instance based on distance, elevation gain, and + * elevation loss. + * + * @return The calculated caloric waste as an integer. + */ + public void calculateCaloricWaste(float index) { + setCaloricWaste(caloricWaste(index)); + } + + /** + * Calculates the caloric waste for the Trail instance based on distance, elevation gain, and + * elevation loss. + * + * @param index The index to be used in the calculation. + * @return The calculated caloric waste as an integer. + */ + public int caloricWaste(float index) { + return (int) ((getDistance() * 0.5 + getElevationGain() * 0.1 - getElevationLoss() * 0.1) * + index * 0.01); + } + + /** + * Returns a string representation of the Trail instance, including its trail type. + * + * @return The string representation of the Trail instance. + */ + @Override + public String toString() { + return super.toString() + "Trail Type: " + trailType + "\n"; + } + + /** + * Compares the current Trail instance with another object for equality. + * + * @param obj The object to compare with. + * @return True if the other object is also a Trail instance with the same properties, false + * otherwise. + */ + @Override + public boolean equals(Object obj) { + if (this == obj) { + return true; + } + if (!(obj instanceof Trail)) { + return false; + } + Trail trail = (Trail) obj; + return super.equals(trail) && this.trailType == trail.getTrailType(); + } + + /** + * Creates a copy of the current Trail instance. + * + * @return A new Trail instance that is a copy of the current instance. + */ + @Override + public Trail clone() { + return new Trail(this); + } +} diff --git a/src/main/java/MakeItFit/activities/implementation/WeightSquat.java b/src/main/java/MakeItFit/activities/implementation/WeightSquat.java new file mode 100644 index 0000000..90cfacc --- /dev/null +++ b/src/main/java/MakeItFit/activities/implementation/WeightSquat.java @@ -0,0 +1,126 @@ +package MakeItFit.activities.implementation; + +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.activities.types.RepetitionsWithWeights; +import MakeItFit.utils.MakeItFitDate; + +/** + * The WeightSquat class represents an activity of performing squats with weights as part of a + * fitness routine. It extends the RepetitionsWithWeights class to include specific functionality + * related to squats with weights. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class WeightSquat extends RepetitionsWithWeights implements Serializable { + + /** + * Constructs a new WeightSquat activity with the given parameters. + * + * @param userCode The user code associated with the activity. + * @param realizationDate The date the activity was performed. + * @param expectedDuration The expected duration of the activity in minutes. + * @param designation The designation or name of the activity. + * @param name The name of the activity. + * @param repetitions The number of repetitions performed in each series. + * @param series The number of series performed. + * @param weight The weight used during the squats. + */ + public WeightSquat(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name, + int repetitions, + int series, + double weight) { + super(userCode, + realizationDate, + expectedDuration, + designation, + name, + repetitions, + series, + weight); + setSpecialization(this.getClass().getSimpleName()); + } + + /** + * Constructs a new WeightSquat activity with the default parameters. + */ + public WeightSquat() { + super(); + setSpecialization(this.getClass().getSimpleName()); + } + + /** + * Copy constructor to create a new instance as a copy of an existing WeightSquat instance. + * + * @param w The existing WeightSquat instance to copy. + */ + public WeightSquat(WeightSquat w) { + super(w); + } + + /** + * Calculates the caloric waste for the WeightSquat activity. + * + * @param index The index to be used in the calculation. + */ + public void calculateCaloricWaste(float index) { + setCaloricWaste(caloricWaste(index)); + } + + /** + * Calculates the caloric waste for the WeightSquat activity based on the repetitions, series, + * and weight. + * + * @param index The index to be used in the calculation. + * @return The total caloric waste calculated based on the number of repetitions, series, and + * weight. + */ + public int caloricWaste(float index) { + return (int) (getRepetitions() * getSeries() * getWeight() * 0.2 * index * 0.5); + } + + /** + * Returns a string representation of the WeightSquat instance. + * + * @return A string containing the representation of the WeightSquat instance. + */ + @Override + public String toString() { + return super.toString(); + } + + /** + * Determines whether this WeightSquat instance is equal to another object. + * + * @param o The object to compare with this instance. + * @return True if the object is an instance of WeightSquat and all attributes match; otherwise, + * false. + */ + @Override + public boolean equals(Object o) { + if (o == this) { + return true; + } + if (!(o instanceof WeightSquat)) { + return false; + } + WeightSquat w = (WeightSquat) o; + return super.equals(w); + } + + /** + * Creates a deep copy of this WeightSquat instance. + * + * @return A new WeightSquat instance that is a deep copy of the current instance. + */ + @Override + public WeightSquat clone() { + return new WeightSquat(this); + } +} diff --git a/src/main/java/MakeItFit/activities/types/Distance.java b/src/main/java/MakeItFit/activities/types/Distance.java new file mode 100644 index 0000000..b189a0c --- /dev/null +++ b/src/main/java/MakeItFit/activities/types/Distance.java @@ -0,0 +1,113 @@ +package MakeItFit.activities.types; + +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.activities.Activity; +import MakeItFit.utils.MakeItFitDate; + +public abstract class Distance extends Activity implements Serializable { + private double distance; + + /** + * Constructs a new Distance instance with the specified parameters. + * + * @param userCode the user code + * @param realizationDate the realization date of the activity + * @param expectedDuration the expected duration of the activity + * @param designation the designation of the activity + * @param name the name of the activity + * @param distance the distance covered during the activity + */ + public Distance(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name, + double distance) { + super(userCode, realizationDate, expectedDuration, designation, name); + this.distance = distance; + } + + /** + * Constructs a new Distance instance with the default parameters. + */ + public Distance() { + super(); + this.distance = 0; + } + + /** + * Constructs a new Distance instance as a copy of another Distance instance. + * + * @param d the Distance instance to copy + */ + public Distance(Distance d) { + super(d); + this.distance = d.getDistance(); + } + + /** + * Gets the distance covered during the activity. + * + * @return the distance covered + */ + public double getDistance() { + return distance; + } + + /** + * Sets the distance covered during the activity. + * + * @param distance the distance covered + */ + public void setDistance(double distance) { + this.distance = distance; + } + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + */ + public abstract void calculateCaloricWaste(float index); + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + * @return the caloric waste of the activity + */ + public abstract int caloricWaste(float index); + + /** + * Returns a string representation of the Distance instance. + * + * @return the string representation of the Distance instance + */ + public boolean equals(Object o) { + if (o == this) + return true; + if (!(o instanceof Distance)) + return false; + Distance d = (Distance) o; + return (super.equals(d) && this.distance == d.distance); + } + + /** + * Clones the Distance instance. + * + * @return the cloned Distance instance + */ + public abstract Distance clone(); + + /** + * Returns a string representation of the Distance instance. + * + * @return the string representation of the Distance instance + */ + @Override + public String toString() { + return super.toString() + "Distance: " + this.distance + " meters, "; + } +} diff --git a/src/main/java/MakeItFit/activities/types/DistanceWithAltimetry.java b/src/main/java/MakeItFit/activities/types/DistanceWithAltimetry.java new file mode 100644 index 0000000..09f5a9e --- /dev/null +++ b/src/main/java/MakeItFit/activities/types/DistanceWithAltimetry.java @@ -0,0 +1,143 @@ +package MakeItFit.activities.types; +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.activities.Activity; +import MakeItFit.utils.MakeItFitDate; + +public abstract class DistanceWithAltimetry extends Distance implements Serializable { + private double elevationGain; + private double elevationLoss; + + /** + * Constructs a new DistanceWithAltimetry instance with the specified parameters. + * + * @param userCode the user code + * @param realizationDate the realization date of the activity + * @param expectedDuration the expected duration of the activity + * @param designation the designation of the activity + * @param name the name of the activity + * @param distance the distance covered during the activity + * @param elevationGain the elevation gain during the activity + * @param elevationLoss the elevation loss during the activity + */ + public DistanceWithAltimetry(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name, + double distance, + double elevationGain, + double elevationLoss) { + super(userCode, realizationDate, expectedDuration, designation, name, distance); + this.elevationGain = elevationGain; + this.elevationLoss = elevationLoss; + } + + /** + * Constructs a new DistanceWithAltimetry instance with the default parameters. + */ + public DistanceWithAltimetry() { + super(); + this.elevationGain = 0; + this.elevationLoss = 0; + } + + /** + * Constructs a new DistanceWithAltimetry instance as a copy of another DistanceWithAltimetry + * instance. + * + * @param a the DistanceWithAltimetry instance to copy + */ + public DistanceWithAltimetry(DistanceWithAltimetry a) { + super(a); + this.elevationGain = a.getElevationGain(); + this.elevationLoss = a.getElevationLoss(); + } + + /** + * Gets the elevation gain during the activity. + * + * @return the elevation gain + */ + public double getElevationGain() { + return elevationGain; + } + + /** + * Gets the elevation loss during the activity. + * + * @return the elevation loss + */ + public double getElevationLoss() { + return elevationLoss; + } + + /** + * Sets the elevation gain during the activity. + * + * @param elevationGain the elevation gain + */ + public void setElevationGain(double elevationGain) { + this.elevationGain = elevationGain; + } + + /** + * Sets the elevation loss during the activity. + * + * @param elevationLoss the elevation loss + */ + public void setElevationLoss(double elevationLoss) { + this.elevationLoss = elevationLoss; + } + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + */ + public abstract void calculateCaloricWaste(float index); + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + * @return the caloric waste of the activity + */ + public abstract int caloricWaste(float index); + + /** + * Verifies if the DistanceWithAltimetry instance is equal to another object. + * + * @param o the object to compare + * @return true if the object is an instance of DistanceWithAltimetry and all attributes match; + * otherwise, false + */ + public boolean equals(Object o) { + if (o == this) + return true; + if (!(o instanceof DistanceWithAltimetry)) + return false; + DistanceWithAltimetry d = (DistanceWithAltimetry) o; + return (super.equals(d) && this.elevationGain == d.elevationGain && + this.elevationLoss == d.elevationLoss); + } + + /** + * Clones the DistanceWithAltimetry instance. + * + * @return the cloned DistanceWithAltimetry instance + */ + public abstract DistanceWithAltimetry clone(); + + /** + * Returns a string representation of the DistanceWithAltimetry instance. + * + * @return the string representation of the DistanceWithAltimetry instance + */ + @Override + public String toString() { + return super.toString() + "Elevation Gain: " + this.elevationGain + " meters, " + + "Elevation Loss: " + this.elevationLoss + " meters, "; + } +} diff --git a/src/main/java/MakeItFit/activities/types/Repetitions.java b/src/main/java/MakeItFit/activities/types/Repetitions.java new file mode 100644 index 0000000..ccbcf76 --- /dev/null +++ b/src/main/java/MakeItFit/activities/types/Repetitions.java @@ -0,0 +1,140 @@ +package MakeItFit.activities.types; + +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.activities.Activity; +import MakeItFit.utils.MakeItFitDate; + +public abstract class Repetitions extends Activity implements Serializable { + private int repetitions; + private int series; + + /** + * Constructs a new Repetitions instance with the specified parameters. + * + * @param userCode the user code + * @param realizationDate the realization date of the activity + * @param expectedDuration the expected duration of the activity + * @param designation the designation of the activity + * @param name the name of the activity + * @param repetitions the number of repetitions + * @param series the number of series + */ + public Repetitions(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name, + int repetitions, + int series) { + super(userCode, realizationDate, expectedDuration, designation, name); + this.repetitions = repetitions; + this.series = series; + } + + /** + * Constructs a new Repetitions instance with the default parameters. + */ + public Repetitions() { + super(); + this.repetitions = 0; + this.series = 0; + } + + /** + * Constructs a new Repetitions instance as a copy of another Repetitions instance. + * + * @param r the Repetitions instance to copy + */ + public Repetitions(Repetitions r) { + super(r); + this.repetitions = r.getRepetitions(); + this.series = r.getSeries(); + } + + /** + * Gets the number of repetitions. + * + * @return the number of repetitions + */ + public int getRepetitions() { + return repetitions; + } + + /** + * Gets the number of series. + * + * @return the number of series + */ + public int getSeries() { + return series; + } + + /** + * Sets the number of repetitions. + * + * @param repetitions the number of repetitions + */ + public void setRepetitions(int repetitions) { + this.repetitions = repetitions; + } + + /** + * Sets the number of series. + * + * @param series the number of series + */ + public void setSeries(int series) { + this.series = series; + } + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + */ + public abstract void calculateCaloricWaste(float index); + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + * @return the caloric waste of the activity + */ + public abstract int caloricWaste(float index); + + /** + * Determines whether this Repetitions instance is equal to another object. + * + * @param o the object to compare with + * @return true if the object is a Repetitions instance and is equal to this instance; false + * otherwise + */ + public boolean equals(Object o) { + if (o == this) + return true; + if (!(o instanceof Repetitions)) + return false; + Repetitions r = (Repetitions) o; + return (super.equals(r) && this.repetitions == r.repetitions && this.series == r.series); + } + + /** + * Creates a deep copy of this Repetitions instance. + * + * @return A new Repetitions instance that is a deep copy of the current instance. + */ + public abstract Repetitions clone(); + + /** + * Returns a string representation of the Repetitions instance. + * + * @return the string representation of the Repetitions instance + */ + @Override + public String toString() { + return super.toString() + "Repetitions: " + this.repetitions + ", " + + "Series: " + this.series + ", "; + } +} diff --git a/src/main/java/MakeItFit/activities/types/RepetitionsWithWeights.java b/src/main/java/MakeItFit/activities/types/RepetitionsWithWeights.java new file mode 100644 index 0000000..3005c5e --- /dev/null +++ b/src/main/java/MakeItFit/activities/types/RepetitionsWithWeights.java @@ -0,0 +1,119 @@ +package MakeItFit.activities.types; + +import java.io.Serializable; +import java.util.UUID; + +import MakeItFit.utils.MakeItFitDate; + +public abstract class RepetitionsWithWeights extends Repetitions implements Serializable { + private double weight; + + /** + * Constructs a new RepetitionsWithWeights instance with the specified parameters. + * + * @param userCode the user code + * @param realizationDate the realization date of the activity + * @param expectedDuration the expected duration of the activity + * @param designation the designation of the activity + * @param name the name of the activity + * @param repetitions the number of repetitions + * @param series the number of series + * @param weight the weight used during the activity + */ + public RepetitionsWithWeights(UUID userCode, + MakeItFitDate realizationDate, + int expectedDuration, + String designation, + String name, + int repetitions, + int series, + double weight) { + super(userCode, realizationDate, expectedDuration, designation, name, repetitions, series); + this.weight = weight; + } + + /** + * Constructs a new RepetitionsWithWeights instance with the default parameters. + */ + public RepetitionsWithWeights() { + super(); + this.weight = 0; + } + + /** + * Constructs a new RepetitionsWithWeights instance as a copy of another RepetitionsWithWeights + * instance. + * + * @param r the RepetitionsWithWeights instance to copy + */ + public RepetitionsWithWeights(RepetitionsWithWeights r) { + super(r); + this.weight = r.getWeight(); + } + + /** + * Gets the weight used during the activity. + * + * @return the weight used + */ + public double getWeight() { + return weight; + } + + /** + * Sets the weight used during the activity. + * + * @param weight the weight used + */ + public void setWeight(double weight) { + this.weight = weight; + } + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + */ + public abstract void calculateCaloricWaste(float index); + + /** + * Calculates the caloric waste of the activity. + * + * @param index the index of the user + * @return the caloric waste of the activity + */ + public abstract int caloricWaste(float index); + + /** + * Returns a string representation of the RepetitionsWithWeights instance. + * + * @return a string representation of the RepetitionsWithWeights instance + */ + @Override + public String toString() { + return super.toString() + "Weight: " + weight + " Kg\n"; + } + + /** + * Determines whether this RepetitionsWithWeights instance is equal to another object. + * + * @param o the object to compare with this instance + * @return true if the object is an instance of RepetitionsWithWeights and all attributes match; + * otherwise, false + */ + public boolean equals(Object o) { + if (o == this) + return true; + if (!(o instanceof RepetitionsWithWeights)) + return false; + RepetitionsWithWeights r = (RepetitionsWithWeights) o; + return super.equals(r) && weight == r.getWeight(); + } + + /** + * Clones the RepetitionsWithWeights instance. + * + * @return the cloned RepetitionsWithWeights instance + */ + public abstract RepetitionsWithWeights clone(); +} diff --git a/src/main/java/MakeItFit/exceptions/EntityDoesNotExistException.java b/src/main/java/MakeItFit/exceptions/EntityDoesNotExistException.java new file mode 100644 index 0000000..d9a2238 --- /dev/null +++ b/src/main/java/MakeItFit/exceptions/EntityDoesNotExistException.java @@ -0,0 +1,24 @@ +package MakeItFit.exceptions; + +/** + * The EntityDoesNotExistException class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class EntityDoesNotExistException extends RuntimeException { + + /** + * The empty constructor for EntityDoesNotExistException. + */ + public EntityDoesNotExistException() { + super(); + } + + /** + * The parameterized constructor for EntityDoesNotExistException. + */ + public EntityDoesNotExistException(String exception) { + super(exception); + } +} diff --git a/src/main/java/MakeItFit/exceptions/ExistingEntityConflictException.java b/src/main/java/MakeItFit/exceptions/ExistingEntityConflictException.java new file mode 100644 index 0000000..41a6550 --- /dev/null +++ b/src/main/java/MakeItFit/exceptions/ExistingEntityConflictException.java @@ -0,0 +1,24 @@ +package MakeItFit.exceptions; + +/** + * The ExistingEntityConflictException class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class ExistingEntityConflictException extends RuntimeException { + + /** + * The empty constructor for ExistingEntityConflictException. + */ + public ExistingEntityConflictException() { + super(); + } + + /** + * The parameterized constructor for ExistingEntityConflictException. + */ + public ExistingEntityConflictException(String exception) { + super(exception); + } +} diff --git a/src/main/java/MakeItFit/exceptions/InvalidTypeException.java b/src/main/java/MakeItFit/exceptions/InvalidTypeException.java new file mode 100644 index 0000000..72ad313 --- /dev/null +++ b/src/main/java/MakeItFit/exceptions/InvalidTypeException.java @@ -0,0 +1,24 @@ +package MakeItFit.exceptions; + +/** + * The InvalidTypeException class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class InvalidTypeException extends RuntimeException { + + /** + * The empty constructor for InvalidTypeException. + */ + public InvalidTypeException() { + super(); + } + + /** + * The parameterized constructor for InvalidTypeException. + */ + public InvalidTypeException(String exception) { + super(exception); + } +} diff --git a/src/main/java/MakeItFit/menu/Menu.java b/src/main/java/MakeItFit/menu/Menu.java new file mode 100644 index 0000000..6a763c0 --- /dev/null +++ b/src/main/java/MakeItFit/menu/Menu.java @@ -0,0 +1,65 @@ +package MakeItFit.menu; + +import java.util.List; +import java.util.Scanner; + +/** + * The class Menu represents a menu for the application. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class Menu { + private List items; + private boolean keepRunning; + + public Menu(List items) { + this.items = items; + this.keepRunning = true; + } + + public void display() { + for (int i = 0; i < items.size(); i++) { + MenuItem item = items.get(i); + System.out.println((i + 1) + ". " + (item.isValid() ? item.getName() : "---")); + } + System.out.println((items.size() + 1) + ". Exit"); + } + + public int getUserChoice() { + Scanner scanner = new Scanner(System.in); + System.out.print("Select the option: "); + int choice; + while (true) { + if (scanner.hasNextInt()) { + choice = scanner.nextInt(); + scanner.nextLine(); // Consumes the next line + if (choice >= 1 && choice <= items.size() + 1) { + break; + } + } else { + scanner.nextLine(); // Consumes the next line + } + System.out.println("Invalid option!"); + } + return choice; + } + + public void executeSelectedOption() { + int choice = getUserChoice(); + if (choice > 0 && choice <= items.size()) { + items.get(choice - 1).execute(); + } else if (choice == items.size() + 1) { + keepRunning = false; + } else { + System.out.println("Invalid option!"); + } + } + + public void run() { + while (keepRunning) { + display(); + executeSelectedOption(); + } + } +} diff --git a/src/main/java/MakeItFit/menu/MenuItem.java b/src/main/java/MakeItFit/menu/MenuItem.java new file mode 100644 index 0000000..9a80c1b --- /dev/null +++ b/src/main/java/MakeItFit/menu/MenuItem.java @@ -0,0 +1,44 @@ +package MakeItFit.menu; + +public class MenuItem { + + public interface PreCondition { + boolean validate(); + } + + public interface Handler { + void execute(); + } + + private String name; + private PreCondition preCondition; + private Handler action; + + public MenuItem(String name, Handler action) { + this.name = name; + this.action = action; + this.preCondition = () -> true; + } + + public MenuItem(String name, PreCondition preCondition, Handler action) { + this.name = name; + this.preCondition = preCondition; + this.action = action; + } + + public String getName() { + return name; + } + + public void execute() { + if (preCondition.validate()) { + action.execute(); + } else { + System.out.println("Option not available!"); + } + } + + public boolean isValid() { + return preCondition.validate(); + } +} diff --git a/src/main/java/MakeItFit/queries/HowManyAltimetryDone.java b/src/main/java/MakeItFit/queries/HowManyAltimetryDone.java new file mode 100644 index 0000000..d5c2bc3 --- /dev/null +++ b/src/main/java/MakeItFit/queries/HowManyAltimetryDone.java @@ -0,0 +1,73 @@ +package MakeItFit.queries; + +import java.io.Serializable; + +import MakeItFit.activities.Activity; +import MakeItFit.activities.types.*; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; +import MakeItFit.utils.MakeItFitDate; + +/** + * This class is responsible for the query that calculates the total altimetry done by a user in a + * given period of time. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ + +public class HowManyAltimetryDone implements Serializable { + + /** + * Executes a query to find the total altimetry done by a user in a given period of time. + * + * @param userManager + * @param email + * @param date1 + * @param date2 + * @return the total altimetry done by a user in a given period of time + */ + + public double executeQuery(UserManager userManager, + String email, + MakeItFitDate date1, + MakeItFitDate date2) { + + if ((date1 != null && date2 != null) && date2.isAfter(date1)) { + + User user = userManager.getUserByEmail(email); + double altimetry = 0; + for (Activity a : user.getListActivities()) { + + if (a instanceof DistanceWithAltimetry) { + altimetry += ((DistanceWithAltimetry) a).getElevationGain() + + ((DistanceWithAltimetry) a).getElevationLoss(); + } + } + return altimetry; + + } else { + throw new IllegalArgumentException("Invalid date."); + } + } + + /** + * Executes a query to find the total altimetry done by a user. + * + * @param userManager + * @param email + * @return the total altimetry done by a user + */ + public double executeQuery(UserManager userManager, String email) { + + User user = userManager.getUserByEmail(email); + double altimetry = 0; + for (Activity a : user.getListActivities()) { + if (a instanceof DistanceWithAltimetry) { + altimetry += ((DistanceWithAltimetry) a).getElevationGain() - + ((DistanceWithAltimetry) a).getElevationLoss(); + } + } + return altimetry; + } +} diff --git a/src/main/java/MakeItFit/queries/HowManyKMsDone.java b/src/main/java/MakeItFit/queries/HowManyKMsDone.java new file mode 100644 index 0000000..c2f504b --- /dev/null +++ b/src/main/java/MakeItFit/queries/HowManyKMsDone.java @@ -0,0 +1,71 @@ +package MakeItFit.queries; + +import java.io.Serializable; + +import MakeItFit.activities.Activity; +import MakeItFit.activities.types.*; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; +import MakeItFit.utils.MakeItFitDate; + +/** + * This class is responsible for the query that calculates the total distance done by a user in a + * given period of time. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ + +public class HowManyKMsDone implements Serializable { + + /** + * Executes a query to find the total distance done by a user in a given period of time. + * @param userManager + * @param email + * @param date1 + * @param date2 + * @return the total distance done by a user in a given period of time + */ + public double executeQuery(UserManager userManager, + String email, + MakeItFitDate date1, + MakeItFitDate date2) { + + if (date1 != null && date2 != null && date2.isAfter(date1)) { + User user = userManager.getUserByEmail(email); + double distance = 0; + + for (Activity a : user.getListActivities()) { + if (a instanceof Distance && a.getRealizationDate().isAfter(date1) && + a.getRealizationDate().isBefore(date2)) { + distance += ((Distance) a).getDistance(); + } + } + + return distance / 1000; + + } else { + throw new IllegalArgumentException("Invalid dates."); + } + } + + /** + * Executes a query to find the total distance done by a user. + * @param userManager + * @param email + * @return the total distance done by a user + */ + public double executeQuery(UserManager userManager, String email) { + + User user = userManager.getUserByEmail(email); + double distance = 0; + + for (Activity a : user.getListActivities()) { + if (a instanceof Distance) { + distance += ((Distance) a).getDistance(); + } + } + + return distance / 1000; + } +} diff --git a/src/main/java/MakeItFit/queries/MostDemandingTrainingPlan.java b/src/main/java/MakeItFit/queries/MostDemandingTrainingPlan.java new file mode 100644 index 0000000..3e3f733 --- /dev/null +++ b/src/main/java/MakeItFit/queries/MostDemandingTrainingPlan.java @@ -0,0 +1,54 @@ +package MakeItFit.queries; + +import java.io.Serializable; +import java.util.List; + +import MakeItFit.activities.Activity; +import MakeItFit.trainingPlan.TrainingPlan; +import MakeItFit.trainingPlan.TrainingPlanManager; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; +import MakeItFit.utils.MyTuple; + +/** + * The class MostDemandingTrainingPlan represents the most demanding training plan. + * It is a query that returns the training plan that burns more calories. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ + +public class MostDemandingTrainingPlan implements Serializable { + /** + * Executes a query and returns the mostdemanding training plan. + * @param trainingPlanManager + * @param userManager + * + * @return the most demanding training plan + */ + public TrainingPlan executeQuery(TrainingPlanManager trainingPlanManager, + UserManager userManager) { + List list_trainingPlans = trainingPlanManager.getAllTrainingPlans(); + + TrainingPlan trainingPlan = null; + int maxActivities = 0; + + for (TrainingPlan tp : list_trainingPlans) { + int calories = 0; + User user = userManager.getUserByCode(tp.getUserCode()); + float index = user.getIndex(); + + List> activities = tp.getActivities(); + + for (MyTuple tuple : activities) { + calories += tuple.getItem1() * tuple.getItem2().caloricWaste(index); + } + if (calories > maxActivities) { + maxActivities = calories; + trainingPlan = tp; + } + } + + return trainingPlan; + } +} diff --git a/src/main/java/MakeItFit/queries/MostDoneActivity.java b/src/main/java/MakeItFit/queries/MostDoneActivity.java new file mode 100644 index 0000000..7d9cf51 --- /dev/null +++ b/src/main/java/MakeItFit/queries/MostDoneActivity.java @@ -0,0 +1,71 @@ +package MakeItFit.queries; + +import java.io.Serializable; +import java.util.List; + +import MakeItFit.activities.Activity; +import MakeItFit.activities.types.*; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; + +/** + * The class MostDoneActivity represents the query that returns the most done activity. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ + +public class MostDoneActivity implements Serializable { + + /** + * Executes the query and returns the result. + * @param userManager + * + * @return the most done activity + */ + + public String executeQuery(UserManager userManager) { + List list_users = userManager.getAllUsers(); + + int[] count = { 0, 0, 0, 0 }; + + for (User u : list_users) { + for (Activity a : u.getListActivities()) { + if (a instanceof DistanceWithAltimetry) { + count[0]++; + } else if (a instanceof Distance) { + count[1]++; + } else if (a instanceof RepetitionsWithWeights) { + count[2]++; + } else if (a instanceof Repetitions) { + count[3]++; + } + } + } + int maxIndex = max(count); + return switch (maxIndex) { + case 0 -> "DistanceWithAltimetry"; + case 1 -> "Distance"; + case 2 -> "Repetitions"; + case 3 -> "RepetitionsWithWeights"; + default -> "No activities"; + }; + } + + /** + * Returns the index of the maximum value in the array. + * @param array + * + * @return the index of the maximum value in the array + */ + private static int max(int[] array) { + int maxIndex = 0; + + for (int j = 0; j < array.length; j++) { + if (array[j] > array[maxIndex]) { + maxIndex = j; + } + } + return maxIndex; + } +} diff --git a/src/main/java/MakeItFit/queries/QueriesManager.java b/src/main/java/MakeItFit/queries/QueriesManager.java new file mode 100644 index 0000000..90df038 --- /dev/null +++ b/src/main/java/MakeItFit/queries/QueriesManager.java @@ -0,0 +1,161 @@ +package MakeItFit.queries; + +import java.io.Serializable; + +import MakeItFit.trainingPlan.TrainingPlan; +import MakeItFit.trainingPlan.TrainingPlanManager; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; +import MakeItFit.utils.MakeItFitDate; + +/** + * The class QueriesManager represents a manager of queries. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class QueriesManager implements Serializable { + private HowManyAltimetryDone howManyAltimetryDone; + private HowManyKMsDone howManyKMsDone; + private MostDoneActivity mostDoneActivity; + private MostDemandingTrainingPlan mostDemandingTrainingPlan; + private WhoBurnsMoreCalories whoBurnsMoreCalories; + private WhoDidTheMostActivities whoDidTheMostActivities; + + /** + * Constructs a new queries manager. + */ + public QueriesManager(UserManager userManager, TrainingPlanManager trainingPlanManager) { + this.howManyAltimetryDone = new HowManyAltimetryDone(); + this.howManyKMsDone = new HowManyKMsDone(); + this.mostDoneActivity = new MostDoneActivity(); + this.mostDemandingTrainingPlan = new MostDemandingTrainingPlan(); + this.whoBurnsMoreCalories = new WhoBurnsMoreCalories(); + this.whoDidTheMostActivities = new WhoDidTheMostActivities(); + + this.mostDemandingTrainingPlan = new MostDemandingTrainingPlan(); + } + + /** + * Executes a query. + * @param userManager + * @param email + * @param date1 + * @param date2 + * + * @return number of altimetry the user done + */ + public double executeQueryHowManyAltimetryDone(UserManager userManager, + String email, + MakeItFitDate date1, + MakeItFitDate date2) { + return this.howManyAltimetryDone.executeQuery(userManager, email, date1, date2); + } + + /** + * Executes a query. + * @param userManager + * @param email + * + * @return number of altimetry the user done + */ + public double executeQueryHowManyAltimetryDone(UserManager userManager, String email) { + return this.howManyAltimetryDone.executeQuery(userManager, email); + } + + /** + * Executes a query and returns the result. + * @param userManager + * @param email + * @param date1 + * @param date2 + * + * @return number of km the user did in a given period of time or in total + */ + public double executeQueryHowManyKMsDone(UserManager userManager, + String email, + MakeItFitDate date1, + MakeItFitDate date2) { + return this.howManyKMsDone.executeQuery(userManager, email, date1, date2); + } + + /** + * Executes a query and returns the result. + * @param userManager + * @param email + * + * @return number of km the user did in a given period of time or in total + */ + public double executeQueryHowManyKMsDone(UserManager userManager, String email) { + return this.howManyKMsDone.executeQuery(userManager, email); + } + + /** + * Executes a query. + * @param userManager + * + * @return the most done activity + */ + public String executeQueryMostDoneActivity(UserManager userManager) { + return this.mostDoneActivity.executeQuery(userManager); + } + + /** + * Executes a query. + * @param trainingPlanManager + * @return the most demanding training plan + */ + public TrainingPlan + executeQueryMostDemandingTrainingPlan(TrainingPlanManager trainingPlanManager, + UserManager userManager) { + return this.mostDemandingTrainingPlan.executeQuery(trainingPlanManager, userManager); + } + + /** + * Executes a query. + * @param userManager + * @param date1 + * @param date2 + * + * @return the user who burns more calories + */ + public User executeQuerywhoBurnsMoreCalories(UserManager userManager, + MakeItFitDate date1, + MakeItFitDate date2) { + return this.whoBurnsMoreCalories.executeQuery(userManager, date1, date2); + } + + /** + * Executes a query. + * @param userManager + * + * @return the user who burns more calories + */ + public User executeQuerywhoBurnsMoreCalories(UserManager userManager) { + return this.whoBurnsMoreCalories.executeQuery(userManager); + } + + /** + * Executes a query. + * @param userManager + * @param date1 + * @param date2 + * + * @return the user who did the most activities + */ + public User executeQueryWhoDidTheMostActivities(UserManager userManager, + MakeItFitDate date1, + MakeItFitDate date2) { + return this.whoDidTheMostActivities.executeQuery(userManager, date1, date2); + } + + /** + * Executes a query. + * @param userManager + * + * @return the user who did the most activities + */ + public User executeQueryWhoDidTheMostActivities(UserManager userManager) { + return this.whoDidTheMostActivities.executeQuery(userManager); + } +} diff --git a/src/main/java/MakeItFit/queries/WhoBurnsMoreCalories.java b/src/main/java/MakeItFit/queries/WhoBurnsMoreCalories.java new file mode 100644 index 0000000..b6368b4 --- /dev/null +++ b/src/main/java/MakeItFit/queries/WhoBurnsMoreCalories.java @@ -0,0 +1,86 @@ +package MakeItFit.queries; + +import java.io.Serializable; +import java.util.List; + +import MakeItFit.activities.Activity; +import MakeItFit.activities.types.DistanceWithAltimetry; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; +import MakeItFit.utils.MakeItFitDate; + +/** + * The class WhoBurnsMoreCalories represents a query that returns the user who burns more calories + * between two dates. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ + +public class WhoBurnsMoreCalories implements Serializable { + + /** + * Executes a query and returns the result. + * @param userManager + * @param date1 + * @param date2 + * + * @return the user who burns more calories between two dates + */ + public User executeQuery(UserManager userManager, MakeItFitDate date1, MakeItFitDate date2) { + + if ((date1 != null && date2 != null) && date2.isAfter(date1)) { + + List list_users = userManager.getAllUsers(); + + User user = null; + int maxCalories = 0; + + for (User u : list_users) { + int calories = 0; + float index = u.getIndex(); + for (Activity a : u.getListActivities()) { + if (a.getRealizationDate().isAfter(date1) && + a.getRealizationDate().isBefore(date2)) { + calories += a.caloricWaste(index); + } + } + if (calories > maxCalories) { + maxCalories = calories; + user = u; + } + } + return user; + + } else { + throw new IllegalArgumentException("Invalid dates."); + } + } + + /** + * Executes a query and returns the result. + * @param userManager + * + * @return the user who burns more calories + */ + public User executeQuery(UserManager userManager) { + + List list_users = userManager.getAllUsers(); + + User user = null; + int maxCalories = 0; + + for (User u : list_users) { + float index = u.getIndex(); + int calories = 0; + for (Activity a : u.getListActivities()) { + calories += a.caloricWaste(index); + } + if (calories > maxCalories) { + maxCalories = calories; + user = u; + } + } + return user; + } +} diff --git a/src/main/java/MakeItFit/queries/WhoDidTheMostActivities.java b/src/main/java/MakeItFit/queries/WhoDidTheMostActivities.java new file mode 100644 index 0000000..18fd188 --- /dev/null +++ b/src/main/java/MakeItFit/queries/WhoDidTheMostActivities.java @@ -0,0 +1,75 @@ +package MakeItFit.queries; + +import java.io.Serializable; +import java.util.List; + +import MakeItFit.activities.Activity; +import MakeItFit.activities.types.DistanceWithAltimetry; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; +import MakeItFit.utils.MakeItFitDate; + +public class WhoDidTheMostActivities implements Serializable { + + /** + * Executes a query and returns the result. + * @param userManager + * @param date1 + * @param date2 + * + * @return the user who did the most activities between two dates + */ + public User executeQuery(UserManager userManager, MakeItFitDate date1, MakeItFitDate date2) { + + if ((date1 != null && date2 != null) && date2.isAfter(date1)) { + + List list_users = userManager.getAllUsers(); + + User user = null; + int maxActivities = 0; + + for (User u : list_users) { + int activities = 0; + for (Activity a : u.getListActivities()) { + if (a.getRealizationDate().isAfter(date1) && + a.getRealizationDate().isBefore(date2)) { + activities++; + } + } + if (activities > maxActivities) { + maxActivities = activities; + user = u; + } + } + return user; + } else { + throw new IllegalArgumentException("Invalid dates."); + } + } + + /** + * Executes a query and returns the result. + * @param userManager + * + * @return the user who did the most activities + */ + public User executeQuery(UserManager userManager) { + + List list_users = userManager.getAllUsers(); + + User user = null; + int maxActivities = 0; + + for (User u : list_users) { + + List activitiesList = u.getListActivities(); + int activities = activitiesList.size(); + + if (activities > maxActivities) { + maxActivities = activities; + user = u; + } + } + return user; + } +} diff --git a/src/main/java/MakeItFit/time/TimeManager.java b/src/main/java/MakeItFit/time/TimeManager.java new file mode 100644 index 0000000..25cd78d --- /dev/null +++ b/src/main/java/MakeItFit/time/TimeManager.java @@ -0,0 +1,60 @@ +package MakeItFit.time; + +import java.io.Serializable; + +import MakeItFit.utils.MakeItFitDate; + +/** + * Represents the time manager of the system, with the current date and the ability to advance time. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class TimeManager implements Serializable { + private MakeItFitDate currentDate; + + /** + * Constructs a new TimeManager with the current date set to the current system date. + * + * @return the created TimeManager + */ + public TimeManager() { + this.currentDate = new MakeItFitDate(); + } + + /** + * Constructs a new TimeManager with the specified current date. + * + * @param currentDate + * + * @return the created TimeManager + */ + public TimeManager(MakeItFitDate currentDate) { + this.currentDate = currentDate; + } + + /** + * Gets the current date of the TimeManager. + * + * @return the current date + */ + public MakeItFitDate getCurrentDate() { + return this.currentDate; + } + + /** + * Advances the current date by the specified number of days. + * + * @param days the number of days to advance the current date + * + * @return the new current date + * + * @throws IllegalArgumentException if the number of days is negative + */ + public MakeItFitDate advanceTime(int days) throws IllegalArgumentException { + if (days < 0) { + throw new IllegalArgumentException("Days must be a positive number."); + } + return this.currentDate = this.currentDate.plusDays(days); + } +} diff --git a/src/main/java/MakeItFit/trainingPlan/TrainingPlan.java b/src/main/java/MakeItFit/trainingPlan/TrainingPlan.java new file mode 100644 index 0000000..b8c58db --- /dev/null +++ b/src/main/java/MakeItFit/trainingPlan/TrainingPlan.java @@ -0,0 +1,214 @@ +package MakeItFit.trainingPlan; + +import java.io.Serializable; +import java.util.*; + +import MakeItFit.activities.Activity; +import MakeItFit.users.UserManager; +import MakeItFit.utils.*; + +/** + * The class TrainingPlan represents a training plan. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class TrainingPlan implements Serializable, Comparable { + private final UUID userCode; + private final UUID code; + private List> activities; /* Tuple */ + private MakeItFitDate startDate; + + /** + * Constructs a new TrainingPlan instance with the specified parameters. + * + * @param userCode the user code + * @param startDate the start date of the training plan + */ + public TrainingPlan(UUID userCode, MakeItFitDate startDate) { + this.userCode = userCode; + this.code = UUID.randomUUID(); + this.startDate = startDate; + this.activities = new ArrayList>(); + } + + /** + * Constructs a new TrainingPlan instance with the default parameters. + */ + public TrainingPlan() { + this.userCode = new UUID(0L, 0L); + this.code = UUID.randomUUID(); + this.startDate = new MakeItFitDate(); + this.activities = new ArrayList>(); + } + + /** + * Constructs a new TrainingPlan instance as a copy of another TrainingPlan instance. + * + * @param tp the TrainingPlan instance to copy + */ + public TrainingPlan(TrainingPlan tp) { + this.userCode = tp.getUserCode(); + this.code = tp.getCode(); + this.startDate = tp.getStartDate(); + this.activities = tp.getActivities(); + } + + /** + * Gets the user code of the training plan. + * + * @return the user code + */ + public UUID getUserCode() { + return this.userCode; + } + + /** + * Gets the code of the training plan. + * + * @return the code + */ + public UUID getCode() { + return this.code; + } + + /** + * Gets the start date of the training plan. + * + * @return the start date + */ + public MakeItFitDate getStartDate() { + return this.startDate; + } + + /** + * Gets the activities of the training plan. + * + * @return the activities + */ + public List> getActivities() { + return this.activities; + } + + /** + * Sets the start date of the training plan. + * + * @param startDate the new start date + */ + public void setStartDate(MakeItFitDate startDate) { + this.startDate = startDate; + } + + /** + * Adds an activity to the training plan. + * + * @param repetitions the number of repetitions + * @param activity the activity to add + */ + public void addActivity(int repetitions, Activity activity) { + this.activities.add(new MyTuple(repetitions, activity)); + } + + /** + * Removes an activity from the training plan. + * + * @param code the code of the activity to remove + */ + public void removeActivity(UUID code) { + for (MyTuple tuple : this.activities) { + if (tuple.getItem2().getCode().equals(code)) { + this.activities.remove(tuple); + break; + } + } + } + + /** + * Updates the activities of the training plan. + * + * @param currentDate the current date + */ + public void updateActivities(MakeItFitDate currentDate, float index) { + for (MyTuple tuple : this.activities) { + Activity activity = tuple.getItem2(); + if (currentDate.isAfter(activity.getRealizationDate())) { + activity.updateActivity(index); + } + } + } + + /** + * Extracts the activities of the training plan. + * + * @param currentDate the current date + * @return a list of activities + */ + public List extractActivities(MakeItFitDate currentDate) { + List activities = new ArrayList(); + for (MyTuple tuple : this.activities) { + if (currentDate.isAfter(tuple.getItem2().getRealizationDate())) { + activities.add(tuple.getItem2().clone()); + } + } + return activities; + } + + /** + * Returns a string representation of the training plan. + * + * @return a string representation of the training plan + */ + @Override + public String toString() { + return " == (Training plan details) ==" + + " \nTraining Plan: " + this.code + "\n User Code: " + this.userCode + + "\n Start Date: " + this.startDate + + "\n Activities(Iterations / Activity): " + this.activities; + } + + /** + * The equals method compares two training plans for equality. + * + * @param o the object to compare + * @return true if the training plans are equal, false otherwise + */ + @Override + public boolean equals(Object o) { + if (o == this) { + return true; + } + if (!(o instanceof TrainingPlan)) { + return false; + } + TrainingPlan trainingPlan = (TrainingPlan) o; + return this.userCode.equals(trainingPlan.getUserCode()) && + this.startDate.equals(trainingPlan.getStartDate()) && + this.activities.equals(trainingPlan.getActivities()); + } + + /** + * Compares the training plan to another training plan based on the start date and activities. + * + * @param other the other training plan to compare + * @return a negative integer, zero, or a positive integer as this training plan is less than, + * equal to, or greater than the other training plan + */ + @Override + public int compareTo(TrainingPlan other) { + int compareDate = this.startDate.compareTo(other.getStartDate()); + if (compareDate == 0) { + return this.activities.size() - other.getActivities().size(); + } + return compareDate; + } + + /** + * Creates a copy of the current TrainingPlan instance. + * + * @return A new TrainingPlan instance that is a copy of the current instance. + */ + @Override + public TrainingPlan clone() { + return new TrainingPlan(this); + } +} diff --git a/src/main/java/MakeItFit/trainingPlan/TrainingPlanManager.java b/src/main/java/MakeItFit/trainingPlan/TrainingPlanManager.java new file mode 100644 index 0000000..2118ef1 --- /dev/null +++ b/src/main/java/MakeItFit/trainingPlan/TrainingPlanManager.java @@ -0,0 +1,331 @@ +package MakeItFit.trainingPlan; + +import java.io.Serializable; +import java.util.*; + +import MakeItFit.activities.Activity; +import MakeItFit.activities.ActivityManager; +import MakeItFit.activities.HardInterface; +import MakeItFit.activities.implementation.*; +import MakeItFit.exceptions.EntityDoesNotExistException; +import MakeItFit.utils.MakeItFitDate; +import MakeItFit.utils.MyTuple; + +/** + * The class TrainingPlanManager represents a manager of training plans. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class TrainingPlanManager implements Serializable { + + private Map trainingPlans; + + public TrainingPlanManager() { + this.trainingPlans = new HashMap<>(); + } + + /** + * Creates a new training plan. + * + * @param userCode the code of the user + * @param startDate the date that the training plan starts + * @return the planing train created + * @throws IllegalArgumentException if any argument is null + */ + public TrainingPlan createTrainingPlan(UUID userCode, MakeItFitDate startDate) + throws IllegalArgumentException { + + if (userCode == null || startDate == null) { + throw new IllegalArgumentException("Invalid input: userCode, startDate."); + } + + TrainingPlan trainingPlan = new TrainingPlan(userCode, startDate); + return trainingPlan; + } + + /** + * Constructs a new training plan by objectives. + * + * @param trainingPlan The training plan in usage. + * @param index The index of the user. + * @param hardActivities if the activities are hard + * @param maxActivitiesPerDay the maximum number of activities per day + * @param maxDifferentActivities the maximum number of different activities + * @param weeklyRecurrence the weekly recurrence + * @param minimumCaloricWaste the minimum caloric waste + * @return the planing train created + * @throws IllegalArgumentException if any argument is invalid + */ + public TrainingPlan constructTrainingPlanByObjectives(TrainingPlan trainingPlan, + float index, + boolean hardActivities, + int maxActivitiesPerDay, + int maxDifferentActivities, + int weeklyRecurrence, + int minimumCaloricWaste) + throws IllegalArgumentException { + + if (maxActivitiesPerDay < 0 || maxActivitiesPerDay > 3 || maxDifferentActivities < 0 || + weeklyRecurrence < 0 || weeklyRecurrence > 7 || minimumCaloricWaste < 0) { + throw new IllegalArgumentException("Invalid input."); + } + + int totalCaloricWaste = 0; + int activitiesAddedToday = 0; + int daysWithActivitiesThisWeek = 0; + int startDayOfWeek = trainingPlan.getStartDate().getDayOfWeek(); + boolean hardActivityAddedYesterday = false; + boolean hardActivityAddedToday = false; + boolean newWeek = false; + boolean addedActivity = false; + + ActivityManager activityManager = new ActivityManager(); + MakeItFitDate currentDate = trainingPlan.getStartDate(); + Random random = new Random(); + + Set differentActivityTypes = new HashSet<>(); + + while (totalCaloricWaste < minimumCaloricWaste) { + + String activityType = activityManager.getRandomActivity(); + Activity activity; + + while (differentActivityTypes.size() == maxDifferentActivities && + !differentActivityTypes.contains(activityType)) { + activityType = activityManager.getRandomActivity(); + } + + switch (activityType) { + case "PushUp" -> { + int expectedDuration = random.nextInt(10, 40); + int repetitions = random.nextInt(5, 20); + int series = random.nextInt(1, 5); + activity = new PushUp(trainingPlan.getUserCode(), + currentDate, + expectedDuration, + "PushUp created automatically", + activityType, + repetitions, + series); + } + case "Running" -> { + int expectedDuration = random.nextInt(10, 40); + double distance = random.nextInt(500, 5000); + double speed = random.nextInt(5, 20); + activity = new Running(trainingPlan.getUserCode(), + currentDate, + expectedDuration, + "Running created automatically", + activityType, + distance, + speed); + } + case "Trail" -> { + int expectedDuration = random.nextInt(10, 40); + int distance = random.nextInt(500, 5000); + int elevationGain = random.nextInt(0, 800); + int elevationLoss = random.nextInt(0, 800); + int trailType = random.nextInt(1, 3); + activity = new Trail(trainingPlan.getUserCode(), + currentDate, + expectedDuration, + "Trail created automatically", + activityType, + distance, + elevationGain, + elevationLoss, + trailType); + } + case "WeightSquat" -> { + int expectedDuration = random.nextInt(10, 40); + int repetitions = random.nextInt(5, 20); + int series = random.nextInt(1, 5); + double weight = random.nextInt(5, 80); + activity = new WeightSquat(trainingPlan.getUserCode(), + currentDate, + expectedDuration, + "WeightSquat created automatically", + activityType, + repetitions, + series, + weight); + } + default -> throw new IllegalArgumentException("Invalid type."); + } + + if (!hardActivities && activity instanceof HardInterface) { + continue; + } + + if (hardActivities && activity instanceof HardInterface) { + if (hardActivityAddedYesterday || hardActivityAddedToday) { + continue; + } + } + + if (activitiesAddedToday < maxActivitiesPerDay && + daysWithActivitiesThisWeek < weeklyRecurrence) { + differentActivityTypes.add(activityType); + trainingPlan.addActivity(random.nextInt(1, 4), activity); + totalCaloricWaste += activity.caloricWaste(index); + activitiesAddedToday++; + addedActivity = true; + if (activity instanceof HardInterface) { + hardActivityAddedToday = true; + } + } else { + currentDate = currentDate.plusDays(1); + newWeek = true; + activitiesAddedToday = 0; + if (addedActivity) { + daysWithActivitiesThisWeek++; + } + addedActivity = false; + } + + if ((currentDate.getDayOfWeek() == startDayOfWeek) && newWeek) { + daysWithActivitiesThisWeek = 0; + hardActivityAddedYesterday = hardActivityAddedToday; + hardActivityAddedToday = false; + newWeek = false; + } + } + return trainingPlan; + } + + /** + * Inserts a training plan into the manager. + * + * @param trainingPlan the training plan to be inserted + */ + public void insertTrainingPlan(TrainingPlan trainingPlan) throws IllegalArgumentException { + + if (trainingPlan == null) { + throw new IllegalArgumentException("Invalid input: trainingPlan cannot be null."); + } + + if (this.trainingPlans.containsKey(trainingPlan.getCode())) { + throw new IllegalArgumentException("Training with code " + trainingPlan.getCode() + + " already exists."); + } + + this.trainingPlans.put(trainingPlan.getCode(), trainingPlan); + } + + /** + * Removes a training plan by the user code. + * + * @param code the code of the user + */ + public void removeTrainingPlan(UUID code) { + this.trainingPlans.remove(code); + } + + /** + * Returns the training plan by the code. + * + * @param code the code of the user + * @return the training plan by the user code + * @throws IllegalArgumentException if the training plan does not exist + */ + public TrainingPlan getTrainingPlan(UUID code) throws IllegalArgumentException { + TrainingPlan trainingPlan = this.trainingPlans.get(code); + + if (trainingPlan == null) { + throw new IllegalArgumentException("Training with code " + code + " does not exist."); + } + + return trainingPlan; + } + + /** + * Updates the training plan. + * + * @param trainingPlan the training plan to be updated + * @throws EntityDoesNotExistException if the training plan does not exist + */ + public void updateTrainingPlan(TrainingPlan trainingPlan) throws EntityDoesNotExistException { + UUID code = trainingPlan.getCode(); + if (!this.trainingPlans.containsKey(code)) { + throw new EntityDoesNotExistException("Training Plan with code " + code + + " does not exist."); + } + + this.trainingPlans.put(code, trainingPlan); + } + + /** + * Retrieves a list of all training plans. + * + * @return a list of all training plans + */ + public List getAllTrainingPlans() { + return new ArrayList<>(this.trainingPlans.values()); + } + + /** + * Adds an activity to a specific training plan. + * + * @param repetitions the number of repetitions + * @param activity the activity to add + */ + public void addActivity(UUID code, int repetitions, Activity activity) { + this.trainingPlans.get(code).addActivity(repetitions, activity); + } + + /** + * Removes an activity from a specific training plan. + * + * @param code the code of the training plan + * @param activity the code of the activity to remove + */ + public void removeActivity(UUID code, UUID activity) { + this.trainingPlans.get(code).removeActivity(activity); + } + + /** + * Retrieves a list of all training plans from a user. + * + * @param userCode the code of the user + * @return a list of all training plans from the user + */ + public List getTrainingPlansFromUser(UUID userCode) { + List trainingPlans = new ArrayList<>(); + + for (TrainingPlan trainingPlan : this.trainingPlans.values()) { + if (trainingPlan.getUserCode().equals(userCode)) { + trainingPlans.add(trainingPlan); + } + } + return trainingPlans; + } + + /** + * Updates the system. + * + * @param currentDate the current date + */ + public void updateActivities(MakeItFitDate currentDate, float index) { + for (TrainingPlan trainingPlan : this.trainingPlans.values()) { + trainingPlan.updateActivities(currentDate, index); + } + } + + /** + * Extracts the activities of the user. + * + * @param currentDate the current date + * @param userCode the code of the user + * @return a list of activities + */ + public List extractActivities(MakeItFitDate currentDate, UUID userCode) { + List activities = new ArrayList(); + for (TrainingPlan trainingPlan : this.trainingPlans.values()) { + if (trainingPlan.getUserCode().equals(userCode)) { + activities.addAll(trainingPlan.extractActivities(currentDate)); + } + } + return activities; + } +} diff --git a/src/main/java/MakeItFit/users/Gender.java b/src/main/java/MakeItFit/users/Gender.java new file mode 100644 index 0000000..1deee11 --- /dev/null +++ b/src/main/java/MakeItFit/users/Gender.java @@ -0,0 +1,11 @@ +package MakeItFit.users; + +import java.io.Serializable; + +/** + * The Gender class to define a behaviour for the argument gender of the User. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public enum Gender implements Serializable { Male, Female, Other } diff --git a/src/main/java/MakeItFit/users/User.java b/src/main/java/MakeItFit/users/User.java new file mode 100644 index 0000000..23546bd --- /dev/null +++ b/src/main/java/MakeItFit/users/User.java @@ -0,0 +1,450 @@ +package MakeItFit.users; + +import java.io.Serializable; +import java.util.*; +import java.util.stream.Collectors; + +import MakeItFit.activities.Activity; +import MakeItFit.utils.MakeItFitDate; + +/** + * Represents a user in the system, with personal details and a list of activities. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public abstract class User implements UserInterface, Serializable, Comparable { + + private final UUID code; + private String name; + private int age; + private Gender gender; + private float weight; + private int height; + private int bpm; + private int level; + private String address; + private String phone; + private String email; + private float index; + public List activities; + + /** + * Constructs a new user with the specified details. + * + * @param name The user's name. + * @param age The user's age. + * @param gender The user's gender. + * @param weight The user's weight. + * @param height The user's height. + * @param bpm The user's beats per minute (heart rate). + * @param level The user's experience level (usage in context to be verified). + * @param address The user's address. + * @param phone The user's phone number. + * @param email The user's email address. + */ + public User(String name, + int age, + Gender gender, + float weight, + int height, + int bpm, + int level, + String address, + String phone, + String email) { + this.code = UUID.randomUUID(); + this.name = name; + this.age = age; + this.gender = gender; + this.weight = weight; + this.height = height; + this.bpm = bpm; + this.level = level; + this.address = address; + this.phone = phone; + this.email = email; + this.index = calculateIndex(weight, height, bpm); + this.activities = new ArrayList<>(); + } + + /** + * Constructs a new user with the default details. + */ + public User() { + this.code = UUID.randomUUID(); + this.name = ""; + this.age = 0; + this.gender = Gender.Other; + this.weight = 0; + this.height = 0; + this.bpm = 0; + this.level = 0; + this.address = ""; + this.phone = ""; + this.email = ""; + this.index = 0; + this.activities = new ArrayList<>(); + } + + /** + * Constructs a new user by copying the details from another user. + * + * @param u The user to copy details from. + */ + public User(User u) { + this.code = u.getCode(); + this.name = u.getName(); + this.age = u.getAge(); + this.gender = u.getGender(); + this.weight = u.getWeight(); + this.height = u.getHeight(); + this.bpm = u.getBpm(); + this.level = u.getLevel(); + this.address = u.getAddress(); + this.phone = u.getPhone(); + this.email = u.getEmail(); + this.index = u.getIndex(); + this.activities = u.getListActivities(); + } + + /** + * Gets the unique code of the user. + * + * @return The UUID code of the user. + */ + public UUID getCode() { + return this.code; + } + + /** + * Gets the name of the user. + * + * @return The name of the user. + */ + public String getName() { + return this.name; + } + + /** + * Gets the age of the user. + * + * @return The age of the user. + */ + public int getAge() { + return this.age; + } + + /** + * Gets the gender of the user. + * + * @return The gender of the user. + */ + public Gender getGender() { + return this.gender; + } + + /** + * Gets the weight of the user. + * + * @return The weight of the user. + */ + public float getWeight() { + return this.weight; + } + + /** + * Gets the height of the user. + * + * @return The height of the user. + */ + public int getHeight() { + return this.height; + } + + /** + * Gets the beats per minute (heart rate) of the user. + * + * @return The bpm (beats per minute) of the user. + */ + public int getBpm() { + return this.bpm; + } + + /** + * Gets the experience level of the user. + * + * @return The level of the user. + */ + public int getLevel() { + return this.level; + } // Check usage in our context + + /** + * Gets the address of the user. + * + * @return The address of the user. + */ + public String getAddress() { + return this.address; + } + + /** + * Gets the phone number of the user. + * + * @return The phone number of the user. + */ + public String getPhone() { + return this.phone; + } + + /** + * Gets the email address of the user. + * + * @return The email address of the user. + */ + public String getEmail() { + return this.email; + } + + /** + * Gets the index of the user. + * + * @return The index of the user. + */ + public float getIndex() { + return this.index; + } + + /** + * Gets the list of activities of the user. + * + * @return A list of activities of the user, cloned to avoid modifications to the original list. + */ + public List getListActivities() { + return this.activities.stream().map(Activity::clone).collect(Collectors.toList()); + } + + /** + * Sets the name of the user. + * + * @param name The new name of the user. + */ + public void setName(String name) { + this.name = name; + } + + /** + * Sets the age of the user. + * + * @param age The new age of the user. + */ + public void setAge(int age) { + this.age = age; + } + + /** + * Sets the gender of the user. + * + * @param gender The new gender of the user. + */ + public void setGender(Gender gender) { + this.gender = gender; + } + + /** + * Sets the weight of the user. + * + * @param weight The new weight of the user. + */ + public void setWeight(float weight) { + this.weight = weight; + } + + /** + * Sets the height of the user. + * + * @param height The new height of the user. + */ + public void setHeight(int height) { + this.height = height; + } + + /** + * Sets the bpm (beats per minute) of the user. + * + * @param bpm The new bpm of the user. + */ + public void setBpm(int bpm) { + this.bpm = bpm; + } + + /** + * Sets the experience level of the user. + * + * @param level The new level of the user. + */ + public void setLevel(int level) { + this.level = level; + } + + /** + * Sets the address of the user. + * + * @param address The new address of the user. + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * Sets the phone number of the user. + * + * @param phone The new phone number of the user. + */ + public void setPhone(String phone) { + this.phone = phone; + } + + /** + * Sets the email address of the user. + * + * @param email The new email address of the user. + */ + public void setEmail(String email) { + this.email = email; + } + + /** + * Sets the index of the user. + * + * @param index The new index of the user. + */ + public void setIndex(float index) { + this.index = index; + } + + /** + * Adds an activity to the user's list of activities. + * + * @param activity The activity to add. + */ + public void addActivity(Activity activity) { + this.activities.add(activity.clone()); + } + + public void addActivities(List activities) { + this.activities.addAll(activities); + } + + /** + * Removes an activity from the user's list of activities. + * + * @param activityCode The code of the activity to remove. + */ + public void removeActivity(UUID activityCode) { + this.activities.removeIf(activity -> activity.getCode().equals(activityCode)); + } + + /** + * Updates the activities of the user based on the current date. + */ + public void updateActivities() { + for (Activity activity : this.activities) { + activity.updateActivity(this.index); + } + } + + /** + * Calculates the index of the user based on the weight, height, and bpm. + * + * @param weight The weight of the user. + * @param height The height of the user. + * @param bpm The beats per minute (heart rate) of the user. + * @return The index of the user. + */ + public float calculateIndex(float weight, int height, int bpm) { + return (weight / (((float) height / 100) * ((float) height / 100)) + (float) bpm / 40); + } + + /** + * Abstract method for cloning a user. Must be implemented by subclasses. + * + * @return A clone of the user. + */ + public abstract User clone(); + + /** + * Returns a string representation of the user. + * + * @return A string containing the details of the user. + */ + @Override + public String toString() { + // clang-format off + return String.format(""" + == (User details) == + Code: %s + Name: %s + Age: %d + Gender: %s + Weight: %.2f kg + Height: %d cm + Bpm: %d + Level: %s + Address: %s + Phone: %s + Email: %s + Activities: %s + """, + this.code, + this.name, + this.age, + this.gender, + this.weight, + this.height, + this.bpm, + this.level, + this.address, + this.phone, + this.email, + this.activities); + // clang-format on + } + + /** + * Checks if the user is equal to another object. + * + * @param o The object to compare. + * @return True if the user is equal to the object, false otherwise. + */ + @Override + public boolean equals(Object o) { + if (o == this) + return true; + if (!(o instanceof User)) + return false; + User u = (User) o; + return (this.index == u.index && this.name.equals(u.name) && this.age == u.age && + this.height == u.height && this.weight == u.weight && this.bpm == u.bpm && + this.level == u.level && this.address.equals(u.address) && + this.phone.equals(u.phone) && this.email.equals(u.email) && + this.activities.equals(u.activities)); + } + + /** + * Compares the user to another user. + * + * @param u The user to compare. + * @return A negative integer, zero, or a positive integer as this user is less than, equal to, + * or greater than the specified user. + */ + @Override + public int compareTo(User u) { + int compareName = this.name.compareTo(u.getName()); + if (compareName == 0) { + return this.age - u.getAge(); + } + return compareName; + } +} diff --git a/src/main/java/MakeItFit/users/UserInterface.java b/src/main/java/MakeItFit/users/UserInterface.java new file mode 100644 index 0000000..72e56c4 --- /dev/null +++ b/src/main/java/MakeItFit/users/UserInterface.java @@ -0,0 +1,124 @@ +package MakeItFit.users; + +import java.util.*; + +import MakeItFit.activities.Activity; + +/** + * The UserInterface interface to restrict the implementations connected to users. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public interface UserInterface { + + /** + * Gets the code of the user. + */ + UUID getCode(); + + /** + * Gets the name of the user. + */ + String getName(); + + /** + * Gets the age of the user. + */ + int getAge(); + + /** + * Gets the gender of the user + */ + Gender getGender(); + + /** + * Gets the weight of the user. + */ + float getWeight(); + + /** + * Gets the height of the user. + */ + int getHeight(); + + /** + * Gets the heart rate of the user. + */ + int getBpm(); + + /** + * Gets the address of the user. + */ + String getAddress(); + + /** + * Gets the phone number of the user. + */ + String getPhone(); + + /** + * Gets the email of the user. + */ + String getEmail(); + + /** + * Gets the list of activities of the user. + */ + List getListActivities(); + + /** + * Sets the name of the user. + */ + void setName(String name); + + /** + * Sets the age of the user. + */ + void setAge(int age); + + /** + * Sets the age of the user + */ + void setGender(Gender gender); + + /** + * Sets the weight of the user. + */ + void setWeight(float weight); + + /** + * Sets the height of the user. + */ + void setHeight(int height); + + /** + * Sets the heart rate of the user. + */ + void setBpm(int bpm); + + /** + * Sets the address of the user. + */ + void setAddress(String address); + + /** + * Sets the phone number of the user. + */ + void setPhone(String phone); + + /** + * Sets the email of the user. + */ + void setEmail(String email); + + /** + * Adds an activity to the user. + */ + void addActivity(Activity activity); + + /** + * Turns the user into a string. + */ + String toString(); +} diff --git a/src/main/java/MakeItFit/users/UserManager.java b/src/main/java/MakeItFit/users/UserManager.java new file mode 100644 index 0000000..147b09d --- /dev/null +++ b/src/main/java/MakeItFit/users/UserManager.java @@ -0,0 +1,291 @@ +package MakeItFit.users; + +import java.io.Serializable; +import java.util.*; + +import MakeItFit.activities.Activity; +import MakeItFit.exceptions.EntityDoesNotExistException; +import MakeItFit.exceptions.ExistingEntityConflictException; +import MakeItFit.exceptions.InvalidTypeException; +import MakeItFit.users.types.*; +import MakeItFit.utils.MakeItFitDate; + +/** + * The UserManager class to manage all the users. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class UserManager implements Serializable { + + private Map usersByCode; + private Map usersByEmail; + + public UserManager() { + this.usersByCode = new HashMap<>(); + this.usersByEmail = new HashMap<>(); + } + + /** + * Creates a user with the specified parameters. + * + * @param name the name of the user + * @param age the age of the user + * @param gender the gender of the user + * @param weight the weight of the user + * @param height the height of the user + * @param bpm the heart rate (bpm) of the user + * @param level the fitness level of the user + * @param address the address of the user + * @param phone the phone number of the user + * @param email the email address of the user + * @param frequency the training frequency of the user + * @param type the type of the user + * @return the created user + * @throws IllegalArgumentException if any argument is null or invalid + */ + public User createUser(String name, + int age, + Gender gender, + float weight, + int height, + int bpm, + int level, + String address, + String phone, + String email, + int frequency, + String type) throws IllegalArgumentException, InvalidTypeException { + + if (name == null || address == null || phone == null || email == null) { + throw new IllegalArgumentException( + "Invalid input: name, address, phone, or email cannot be null."); + } + if (age < 0 || weight < 0 || height < 0 || bpm < 0 || level < 0) { + throw new IllegalArgumentException( + "Invalid input: age, weight, height, bpm, and level must be non-negative."); + } + + if (type.equals("Amateur")) { + return new Amateur(name, + age, + gender, + weight, + height, + bpm, + level, + address, + phone, + email); + } else if (type.equals("Occasional")) { + return new Occasional(name, + age, + gender, + weight, + height, + bpm, + level, + address, + phone, + email, + frequency); + } else if (type.equals("Professional")) { + return new Professional(name, + age, + gender, + weight, + height, + bpm, + level, + address, + phone, + email, + frequency); + } else + throw new InvalidTypeException(type); + } + + /** + * Inserts a user into the manager. + * + * @param user the user to be inserted + * @throws ExistingEntityConflictException if a user with the same email already exists + */ + public void insertUser(User user) throws ExistingEntityConflictException { + String email = user.getEmail().toLowerCase(); + + if (this.usersByEmail.containsKey(email)) { + throw new ExistingEntityConflictException("User with email " + email + + " already exists."); + } + + this.usersByCode.put(user.getCode(), user); + this.usersByEmail.put(email, user); + } + + /** + * Removes a user by their code. + * + * @param code the code of the user to be removed + * @throws EntityDoesNotExistException if the user does not exist + */ + public void removeUserByCode(UUID code) throws EntityDoesNotExistException { + + if (!this.usersByCode.containsKey(code)) { + throw new EntityDoesNotExistException("User with code " + code + " does not exist."); + } + + User user = this.usersByCode.get(code); + this.usersByCode.remove(code); + this.usersByEmail.remove(user.getEmail()); + } + + /** + * Removes a user by their email. + * + * @param email the email of the user to be removed + * @throws EntityDoesNotExistException if the user does not exist + */ + public void removeUserByEmail(String email) throws EntityDoesNotExistException { + + if (!this.usersByEmail.containsKey(email)) { + throw new EntityDoesNotExistException("User with code " + email + " does not exist."); + } + + User user = this.usersByEmail.get(email); + this.usersByEmail.remove(email); + this.usersByCode.remove(user.getCode()); + } + + /** + * Checks if a user with the specified email exists. + * + * @param email the email to check + * @return true if a user with the email exists, false otherwise + */ + public boolean existsUserWithEmail(String email) { + return this.usersByEmail.containsKey(email.toLowerCase()); + } + + /** + * Retrieves a user by their code. + * + * @param code the code of the user + * @return the user with the specified code + * @throws EntityDoesNotExistException if the user does not exist + */ + public User getUserByCode(UUID code) throws EntityDoesNotExistException { + User user = this.usersByCode.get(code); + + if (user == null) { + throw new EntityDoesNotExistException("User with code " + code + " does not exist."); + } + + return user; + } + + /** + * Retrieves a user by their email. + * + * @param email the email of the user + * @return the user with the specified email + * @throws EntityDoesNotExistException if the user does not exist + */ + public User getUserByEmail(String email) throws EntityDoesNotExistException { + email = email.toLowerCase(); + User user = this.usersByEmail.get(email); + + if (user == null) { + throw new EntityDoesNotExistException("User with email " + email + " does not exist."); + } + + return user; + } + + /** + * Updates the information of a user. + * + * @param user the user to update + * @throws EntityDoesNotExistException if the user does not exist + */ + public void updateUser(User user) throws EntityDoesNotExistException { + UUID code = user.getCode(); + if (!this.usersByCode.containsKey(code)) { + throw new EntityDoesNotExistException("User with code " + code + " does not exist."); + } + + String email = user.getEmail().toLowerCase(); + User existingUser = this.usersByEmail.get(email); + + if (existingUser == null || !existingUser.getCode().equals(code)) { + throw new EntityDoesNotExistException("User with email " + email + " does not exist."); + } + + this.usersByCode.put(code, user); + this.usersByEmail.put(email, user); + } + + /** + * Retrieves a list of all users. + * + * @return a list of all users + */ + public List getAllUsers() { + return new ArrayList<>(this.usersByCode.values()); + } + + /** + * Retrieves a list of all activities from a user. + * + * @param email the user's email address + * @return a list of all activities from the user + */ + public List getActivitiesFromUser(String email) throws EntityDoesNotExistException { + if (!this.usersByEmail.containsKey(email)) { + throw new EntityDoesNotExistException(email); + } + return this.usersByEmail.get(email).getListActivities(); + } + + /** + * Adds an activity to a user. + * + * @param email the user's email + * @param activity the activity to be added + */ + public void addActivityToUser(String email, Activity activity) { + usersByEmail.get(email).addActivity(activity); + } + + /** + * Removes an activity from a user. + * + * @param email the user's email + * @param activityCode the activity code + */ + public void removeActivityFromUser(String email, UUID activityCode) { + usersByEmail.get(email).removeActivity(activityCode); + } + + /** + * Adds a list of activities to a user. + * + * @param userCode the user's code + * @param activities the activities to be added + */ + public void addActivitiesToUser(UUID userCode, List activities) { + usersByCode.get(userCode).addActivities(activities); + } + + /** + * Updates the system. + */ + public void updateSystem() { + for (User user : usersByCode.values()) { + user.updateActivities(); + if (user instanceof Professional) { + ((Professional) user).updateSpecialization(); + } + } + } +} diff --git a/src/main/java/MakeItFit/users/types/Amateur.java b/src/main/java/MakeItFit/users/types/Amateur.java new file mode 100644 index 0000000..2a746c5 --- /dev/null +++ b/src/main/java/MakeItFit/users/types/Amateur.java @@ -0,0 +1,70 @@ +package MakeItFit.users.types; + +import java.io.Serializable; + +import MakeItFit.users.Gender; +import MakeItFit.users.User; + +/** + * A class that represents an amateur user, extending the User class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class Amateur extends User implements Serializable { + + /** + * Constructs an Amateur user with the specified details. + * + * @param name The name of the amateur user. + * @param age The age of the amateur user. + * @param gender The gender of the amateur user. + * @param weight The weight of the amateur user. + * @param height The height of the amateur user. + * @param bpm The beats per minute of the amateur user. + * @param level The level of the amateur user. + * @param address The address of the amateur user. + * @param phone The phone number of the amateur user. + * @param email The email of the amateur user. + */ + public Amateur(String name, + int age, + Gender gender, + float weight, + int height, + int bpm, + int level, + String address, + String phone, + String email) { + super(name, age, gender, weight, height, bpm, level, address, phone, email); + } + + /** + * Copy constructor that creates a new Amateur user by copying the attributes of another. + * + * @param amateur The amateur user to copy. + */ + public Amateur(Amateur amateur) { + super(amateur); + } + + /** + * Clones this Amateur user, creating a new instance with the same attributes. + * + * @return A new Amateur user with the same attributes as this one. + */ + @Override + public Amateur clone() { + return new Amateur(this); + } + + /** + * Returns a string representation of this Amateur user. + * + * @return A string representation of this Amateur user. + */ + public String toString() { + return super.toString() + " ====================\n"; + } +} diff --git a/src/main/java/MakeItFit/users/types/Occasional.java b/src/main/java/MakeItFit/users/types/Occasional.java new file mode 100644 index 0000000..e27dfb8 --- /dev/null +++ b/src/main/java/MakeItFit/users/types/Occasional.java @@ -0,0 +1,97 @@ +package MakeItFit.users.types; + +import java.io.Serializable; + +import MakeItFit.users.Gender; +import MakeItFit.users.User; + +/** + * The Occasional class defines a subclass of the User class, representing an occasional user. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class Occasional extends User implements Serializable { + private int frequency; + + /** + * Constructs an Occasional user with the specified parameters. + * + * @param name the name of the user + * @param age the age of the user + * @param gender the gender of the user + * @param weight the weight of the user + * @param height the height of the user + * @param bpm the BPM of the user + * @param level the level of the user + * @param address the address of the user + * @param phone the phone number of the user + * @param email the email address of the user + * @param frequency the frequency of the user's visits, must be a non-negative integer + */ + public Occasional(String name, + int age, + Gender gender, + float weight, + int height, + int bpm, + int level, + String address, + String phone, + String email, + int frequency) { + super(name, age, gender, weight, height, bpm, level, address, phone, email); + setFrequency(frequency); + } + + /** + * Constructs a copy of an Occasional user. + * + * @param o the Occasional user to copy + */ + public Occasional(Occasional o) { + super(o); + this.frequency = o.getFrequency(); + } + + /** + * Returns the frequency of the user's visits. + * + * @return the frequency of the user's visits + */ + public int getFrequency() { + return frequency; + } + + /** + * Sets the frequency of the user's visits. + * + * @param frequency the frequency to set, must be a non-negative integer + */ + public void setFrequency(int frequency) { + if (frequency < 0) { + throw new IllegalArgumentException("Frequency must be a non-negative integer"); + } + this.frequency = frequency; + } + + /** + * Creates and returns a copy of this Occasional user. + * + * @return a clone of this Occasional user + */ + @Override + public Occasional clone() { + return new Occasional(this); + } + + /** + * Returns a string representation of the Occasional user. + * + * @return a string containing the details of the Occasional user + */ + public String toString() { + return super.toString() + " Frequency: " + frequency + "\n" + + " ====================\n"; + } +} diff --git a/src/main/java/MakeItFit/users/types/Professional.java b/src/main/java/MakeItFit/users/types/Professional.java new file mode 100644 index 0000000..d7a74cf --- /dev/null +++ b/src/main/java/MakeItFit/users/types/Professional.java @@ -0,0 +1,144 @@ +package MakeItFit.users.types; + +import java.io.Serializable; +import java.util.*; + +import MakeItFit.activities.Activity; +import MakeItFit.users.Gender; +import MakeItFit.users.User; + +/** + * The Professional class defines a subclass of the User class representing a professional athlete. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class Professional extends User implements Serializable { + /** + * The specialization options for a professional athlete. + */ + private String specialization; + + private int frequency; + + /** + * The parameterized constructor for Professional. + * Initializes a Professional with the given parameters. + * + * @param name the name of the professional + * @param age the age of the professional + * @param gender the gender of the professional + * @param weight the weight of the professional + * @param height the height of the professional + * @param bpm the baseline pulse of the professional + * @param level the experience level of the professional + * @param address the address of the professional + * @param phone the phone number of the professional + * @param email the email of the professional + * @param frequency the training frequency of the professional + */ + public Professional(String name, + int age, + Gender gender, + float weight, + int height, + int bpm, + int level, + String address, + String phone, + String email, + int frequency) { + super(name, age, gender, weight, height, bpm, level, address, phone, email); + this.specialization = "No specialization"; + this.frequency = frequency; + } + + /** + * The copy constructor for Professional. + * Creates a new Professional by copying the fields of another Professional. + * + * @param p the Professional to copy + */ + public Professional(Professional p) { + super(p); + this.specialization = p.specialization; + this.frequency = p.frequency; + } + + /** + * Gets the specialization of the professional. + * + * @return the specialization of the professional + */ + public String getSpecialization() { + return specialization; + } + + /** + * Sets the specialization of the professional. + * + * @param specialization the new specialization to set + */ + public void setSpecialization(String specialization) { + this.specialization = specialization; + } + + /** + * Gets the training frequency of the professional. + * + * @return the training frequency of the professional + */ + public int getFrequency() { + return frequency; + } + + /** + * Sets the training frequency of the professional. + * + * @param frequency the new training frequency to set + */ + public void setFrequency(int frequency) { + this.frequency = frequency; + } + + /** + * Updates the specialization of the professional based on the most frequent activity. + * If the professional has no activities, the specialization is set to "No specialization". + */ + public void updateSpecialization() { + if (!this.getListActivities().isEmpty()) { + Map activityCount = new HashMap<>(); + + for (Activity activity : this.getListActivities()) { + String activityType = activity.getClass().getSimpleName(); + activityCount.put(activityType, activityCount.getOrDefault(activityType, 0) + 1); + } + + String mostFrequentActivity = + Collections.max(activityCount.entrySet(), Map.Entry.comparingByValue()).getKey(); + + this.setSpecialization(mostFrequentActivity); + } + } + + /** + * Clones the Professional object, creating a new instance with the same values. + * + * @return a cloned instance of the professional + */ + @Override + public Professional clone() { + return new Professional(this); + } + + /** + * Returns a string representation of the professional. + * + * @return a string representation including the specialization and training frequency + */ + public String toString() { + return super.toString() + " Specialization: " + specialization + "\n" + + " Frequency: " + frequency + "\n" + + " ====================\n"; + } +} diff --git a/src/main/java/MakeItFit/utils/EmailValidator.java b/src/main/java/MakeItFit/utils/EmailValidator.java new file mode 100644 index 0000000..4980f9a --- /dev/null +++ b/src/main/java/MakeItFit/utils/EmailValidator.java @@ -0,0 +1,23 @@ +package MakeItFit.utils; + +import java.io.Serializable; +import java.util.regex.Pattern; + +/** + * The class EmailValidator verifies the email. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class EmailValidator { + + private static final String EMAIL_PATTERN = "^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$"; + + /** + * Verifies if the email is valid. + */ + public static boolean isValidEmail(String emailString) { + Pattern pattern = Pattern.compile(EMAIL_PATTERN); + return pattern.matcher(emailString).matches(); + } +} diff --git a/src/main/java/MakeItFit/utils/MakeItFitDate.java b/src/main/java/MakeItFit/utils/MakeItFitDate.java new file mode 100644 index 0000000..3e1f71e --- /dev/null +++ b/src/main/java/MakeItFit/utils/MakeItFitDate.java @@ -0,0 +1,219 @@ +package MakeItFit.utils; + +import java.io.Serializable; +import java.time.LocalDate; + +/** + * The implementation for the MakeItFitDate. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MakeItFitDate implements Comparable, Serializable { + + private final LocalDate date; + + /** + * Default constructor of the class MakeItFitDate. + */ + public MakeItFitDate() { + this.date = LocalDate.now(); + } + + /** + * Parameterized constructor of the class MakeItFitDate. + */ + public static MakeItFitDate of(int year, int month, int dayOfMonth) { + return new MakeItFitDate(LocalDate.of(year, month, dayOfMonth)); + } + + /** + * Parameterized constructor of the class MakeItFitDate. + */ + private MakeItFitDate(LocalDate date) { + this.date = date; + } + + /** + * Creates a MakeItFitDate from a string. + * + * @param date the string to be converted + * @return the MakeItFitDate + * @throws IllegalArgumentException if the string is not a valid date + */ + public static MakeItFitDate fromString(String date) throws IllegalArgumentException { + String[] split = date.trim().split("/"); + if (split.length != 3) { + throw new IllegalArgumentException(date); + } + + try { + int dayOfMonth = Integer.parseInt(split[0]); + int month = Integer.parseInt(split[1]); + int year = Integer.parseInt(split[2]); + + return MakeItFitDate.of(year, month, dayOfMonth); + } catch (NumberFormatException e) { + throw new IllegalArgumentException(date); + } + } + + /** + * Gets the day of the week. + * Monday is 1, Tuesday is 2, ..., Sunday is 7. + * + * @return the day of the week + */ + public int getDayOfWeek() { + return this.date.getDayOfWeek().getValue(); + } + + /** + * Gets the day of the month. + * + * @return the day of the month + */ + public int getDayOfMonth() { + return this.date.getDayOfMonth(); + } + + /** + * Gets the month. + * + * @return the month + */ + public int getMonth() { + return this.date.getMonthValue(); + } + + /** + * Gets the year. + * + * @return the year + */ + public int getYear() { + return this.date.getYear(); + } + + /** + * Gets the date. + * + * @return the date + */ + public LocalDate getDate() { + return this.date; + } + + /** + * Determines whether this MakeItFitDate instance is before or the same as another MakeItFitDate + * instance. + * + * @param date the MakeItFitDate instance to compare with + * @return true if this MakeItFitDate instance is before or the same as the other MakeItFitDate + * instance; otherwise, false + */ + public boolean isBeforeOrSame(MakeItFitDate date) { + return this.compareTo(date) <= 0; + } + + /** + * Determines whether this MakeItFitDate instance is before another MakeItFitDate instance. + * + * @param date the MakeItFitDate instance to compare with + * @return true if this MakeItFitDate instance is before the other MakeItFitDate instance; + * otherwise, false + */ + public boolean isBefore(MakeItFitDate date) { + return this.compareTo(date) < 0; + } + + /** + * Determines whether this MakeItFitDate instance is after or the same as another MakeItFitDate + * instance. + * + * @param date the MakeItFitDate instance to compare with + * @return true if this MakeItFitDate instance is after or the same as the other MakeItFitDate + * instance; otherwise, false + */ + public boolean isAfterOrSame(MakeItFitDate date) { + return this.compareTo(date) >= 0; + } + + /** + * Determines whether this MakeItFitDate instance is after another MakeItFitDate instance. + * + * @param date the MakeItFitDate instance to compare with + * @return true if this MakeItFitDate instance is after the other MakeItFitDate instance; + * otherwise, false + */ + public boolean isAfter(MakeItFitDate date) { + return this.compareTo(date) > 0; + } + + /** + * Adds days to the date. + * + * @param days the number of days to add + * @return the new date + */ + public MakeItFitDate plusDays(int days) { + return new MakeItFitDate(this.date.plusDays(days)); + } + + /** + * Checks if two dates are equal. + * + * @param o the other date + * @return true if the dates are equal; otherwise, false + */ + @Override + public boolean equals(Object o) { + MakeItFitDate date = (MakeItFitDate) o; + return this.date.isEqual(date.getDate()); + } + + /** + * Calculates the distance between two dates. + * + * @param date the other date + * @return the distance between the two dates + */ + public int distance(MakeItFitDate date) { + return (int) Math.abs(this.date.toEpochDay() - date.date.toEpochDay()); + } + + /** + * Returns a string representation of the MakeItFitDate. + * + * @return a string representation of the MakeItFitDate + */ + @Override + public String toString() { + return String.format("%02d/%02d/%04d", + this.getDayOfMonth(), + this.getMonth(), + this.getYear()); + } + + /** + * Compares this MakeItFitDate instance with another MakeItFitDate instance. + * + * @param object the MakeItFitDate instance to compare with + * @return a negative integer, zero, or a positive integer as this MakeItFitDate instance is + * before, the same as, or after the other MakeItFitDate instance + */ + @Override + public int compareTo(MakeItFitDate object) { + return this.date.compareTo(object.date); + } + + /** + * Creates a copy of the current MakeItFitDate instance. + * + * @return A new MakeItFitDate instance that is a copy of the current instance. + */ + @Override + public MakeItFitDate clone() { + return new MakeItFitDate(this.date); + } +} diff --git a/src/main/java/MakeItFit/utils/MyTuple.java b/src/main/java/MakeItFit/utils/MyTuple.java new file mode 100644 index 0000000..12b3ceb --- /dev/null +++ b/src/main/java/MakeItFit/utils/MyTuple.java @@ -0,0 +1,101 @@ +package MakeItFit.utils; + +import java.io.Serializable; + +/** + * The class MyTuple represents a tuple. + * + * @param The first element of the tuple + * @param The second element of the tuple + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MyTuple implements Serializable, Comparable { + + private final T1 item1; + private final T2 item2; + + /** + * Constructs a new MyTuple with the specified parameters. + * + * @param item1 The first element of the tuple + * @param item2 The second element of the tuple + */ + public MyTuple(T1 item1, T2 item2) { + this.item1 = item1; + this.item2 = item2; + } + + /** + * Gets the first element of the tuple. + * + * @return the first element of the tuple + */ + public T1 getItem1() { + return item1; + } + + /** + * Gets the second element of the tuple. + * + * @return the second element of the tuple + */ + public T2 getItem2() { + return item2; + } + + /** + * Returns a string representation of the tuple. + * + * @return a string representation of the tuple + */ + @Override + public String toString() { + return "(" + item1 + ", " + item2 + ")"; + } + + /** + * Determines whether this tuple is equal to another object. + * + * @param o The object to compare with. + * @return true if the objects are equal, false otherwise + */ + @Override + public boolean equals(Object o) { + if (this == o) + return true; + if (o == null || getClass() != o.getClass()) + return false; + MyTuple tuple = (MyTuple) o; + if (!item1.equals(tuple.item1)) + return false; + return item2.equals(tuple.item2); + } + + /** + * Compares the tuple to another tuple based on each item. + * + * @param other the other tuple to compare + * @return a negative integer, zero, or a positive integer as this tuple is less than, equal to, + * or greater than the other tuple + */ + @Override + public int compareTo(MyTuple other) { + int compareItem1 = this.item1.toString().compareTo(other.item1.toString()); + if (compareItem1 == 0) { + return this.item2.toString().compareTo(other.item2.toString()); + } + return compareItem1; + } + + /** + * Creates a copy of the current MyTuple instance. + * + * @return A new MyTuple instance that is a copy of the current instance. + */ + @Override + public MyTuple clone() { + return new MyTuple(this.item1, this.item2); + } +} diff --git a/src/main/java/MakeItFit/views/AdminView.java b/src/main/java/MakeItFit/views/AdminView.java new file mode 100644 index 0000000..f04d68a --- /dev/null +++ b/src/main/java/MakeItFit/views/AdminView.java @@ -0,0 +1,474 @@ +package MakeItFit.views; + +import java.util.*; + +import MakeItFit.exceptions.*; +import MakeItFit.menu.*; +import MakeItFit.utils.MakeItFitDate; + +import static MakeItFit.utils.EmailValidator.isValidEmail; + +/** + * The class AdminView represents a view of an admin user. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class AdminView extends MakeItFitView { + + /** + * Constructor for objects of class AdminView. + */ + public AdminView() { + super(); + } + + /** + * Sets the user's email. + */ + public void setEmail() throws RuntimeException { + try { + String email = ""; + do { + Scanner scanner = new Scanner(System.in); + System.out.print("[APP] Please enter the user email: "); + email = scanner.nextLine(); + } while (!isValidEmail(email)); + this.makeItFitController.setEmail(email); + } catch (Exception e) { + System.out.println("[APP] Invalid email."); + throw new RuntimeException(); + } + } + + /** + * Sets the new user's email. + */ + public void setNewEmail() throws RuntimeException { + try { + String email = ""; + do { + Scanner scanner = new Scanner(System.in); + System.out.print("[APP] Please enter the user email: "); + email = scanner.nextLine(); + } while (!isValidEmail(email)); + this.makeItFitController.setNewEmail(email); + } catch (Exception e) { + System.out.println("[APP] Invalid email."); + throw new RuntimeException(); + } + } + + /** + * Prompts the user to login. + * Requests the user's email from the console and logs the user in using the controller. + */ + public void login() { + Scanner scanner = new Scanner(System.in); + + System.out.println("[APP] Logging in as administrator ..."); + + System.out.print("[APP] Do you want to load a previous state? (y/n): "); + String choice = scanner.nextLine(); + + if (choice.equals("Y") || choice.equals("y")) { + System.out.print("[APP] Please enter the file name: "); + String fileName = scanner.nextLine(); + try { + this.makeItFitController.loadSystem(fileName); + System.out.println("[APP] Loaded successfully."); + } catch (Exception e) { + System.out.println("[APP] Could not load the file."); + } + } + + Menu appMenu = createAppMenu(); + + appMenu.run(); + } + + /** + * Creates the app menu of the application. + * + * @return The created app menu. + */ + private Menu createAppMenu() { + List appMenuItems = new ArrayList<>(); + + appMenuItems.add(new MenuItem("Create user", () -> { + try { + setNewEmail(); + createUser(); + } catch (Exception e) {} + })); + + Menu updateUserMenu = createUpdateUserMenu(); + appMenuItems.add(new MenuItem("Update user info", () -> { + System.out.println("[APP] Updating user ..."); + + try { + setEmail(); + updateUserMenu.run(); + } catch (Exception e) { + System.out.println("[APP] Invalid input."); + } + })); + + appMenuItems.add(new MenuItem("Remove user", () -> removeUser())); + appMenuItems.add(new MenuItem("User Details", () -> { + try { + setEmail(); + getUserDetails(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("List all users", () -> printAllUsersDetails())); + appMenuItems.add(new MenuItem("Add activity to user", () -> { + try { + setEmail(); + addActivityToUser(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("Remove activity from user", () -> { + try { + setEmail(); + removeActivityFromUser(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("List activities from user", () -> { + try { + setEmail(); + listActivities(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("Add training plan to user", () -> { + try { + setEmail(); + createTrainingPlan(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("Remove training plan", () -> { + try { + setEmail(); + removeTrainingPlan(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("Add activity to a training plan", () -> { + try { + setEmail(); + selectTrainingPlan(); + addActivityToTrainingPlan(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("Remove activity from a training plan", () -> { + try { + setEmail(); + selectTrainingPlan(); + removeActivityFromTrainingPlan(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("List training plans from user", () -> { + try { + setEmail(); + listAllTrainingPlansFromUser(); + } catch (Exception e) {} + })); + appMenuItems.add(new MenuItem("List all training plans", () -> listAllTrainingPlans())); + appMenuItems.add(new MenuItem("Execute queries", () -> executeQueries())); + appMenuItems.add(new MenuItem("Advance time", () -> advanceTimeManager())); + appMenuItems.add(new MenuItem("Save system state", () -> saveSystem())); + + return new Menu(appMenuItems); + } + + /** + * Prompts the administrator to remove a user. + * Requests the user's email or code from the console and removes the user using the user + * controller. + */ + public void removeUser() { + try { + System.out.println("[APP] Removing user ..."); + + Scanner scanner = new Scanner(System.in); + + System.out.print("[APP] Enter the user's email: "); + String email = scanner.nextLine(); + + this.makeItFitController.setEmail(email); + + this.makeItFitController.removeUser(); + System.out.println("[APP] User removed successfully."); + } catch (EntityDoesNotExistException e) { + System.out.println("[APP] User does not exist."); + } + } + + /** + * Prints details of all users in the system. + * Fetches and displays details of all users using the user controller. + */ + public void printAllUsersDetails() { + System.out.println("== (All users) =="); + try { + System.out.println(this.makeItFitController.getAllUsers()); + } catch (Exception e) { + System.out.println("[APP] Invalid input."); + } + System.out.println("=================="); + } + + /* + * Lists all the training plans of the application. + */ + public void listAllTrainingPlans() { + System.out.println("[" + this.makeItFitController.getName() + + "] Listing all training plans ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.println(this.makeItFitController.getTrainingPlans()); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + + "] Unexpected behaviour."); + } + } + + /* + * Executes the queries of the application. + */ + public void executeQueries() { + System.out.println("[" + this.makeItFitController.getName() + "] Executing queries ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.println("[APP] Please select the query to execute:"); + + Menu queryMenu = createQueryMenu(); + queryMenu.run(); + + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Creates the query menu of the application. + * + * @return The created query menu. + */ + public Menu createQueryMenu() { + List queryMenuItems = new ArrayList<>(); + + queryMenuItems.add( + new MenuItem("How many kms has a user has run in a period or ever since?", + () -> executeQueryHowManyKMsDone())); + queryMenuItems.add(new MenuItem( + "How many meters of altimetry has a user totaled in a period or ever since?", + () -> executeQueryHowManyAltimetryDone())); + queryMenuItems.add(new MenuItem( + "What is the most demanding training plan depending on the proposed calorie expenditure?", + () -> executeQueryMostDemandingTrainingPlan())); + queryMenuItems.add(new MenuItem("what type of activity is most carried out?", + () -> executeQueryMostDoneActivity())); + queryMenuItems.add( + new MenuItem("Which user has burned the most calories over a period of time or ever?", + () -> executeQuerywhoBurnsMoreCalories())); + queryMenuItems.add(new MenuItem( + "Which user has carried out the most activities in a period or ever since?", + () -> executeQueryWhoDidTheMostActivities())); + queryMenuItems.add(new MenuItem("List all activities from a user.", + () -> executeQueryGetAllActivitiesFromUser())); + + return new Menu(queryMenuItems); + } + + /** + * Executes the query to determine how many kilometers a user has driven in a period or ever + * since. + */ + public void executeQueryHowManyKMsDone() { + System.out.println("[" + this.makeItFitController.getName() + "] Executing query ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[APP] Enter the user's email: "); + String email = scanner.nextLine(); + + this.makeItFitController.setEmail(email); + + System.out.print("[APP] Do you choose a period of time? (y/n): "); + String response = scanner.nextLine(); + if (response.equals("Y") || response.equals("y")) { + System.out.print("[APP] Enter the start date (dd/mm/aaaa): "); + MakeItFitDate startDate = MakeItFitDate.fromString(scanner.nextLine()); + System.out.print("[APP] Enter the end date (dd/mm/aaaa): "); + MakeItFitDate endDate = MakeItFitDate.fromString(scanner.nextLine()); + + System.out.println( + "Result: " + + this.makeItFitController.executeQueryHowManyKMsDone(startDate, endDate) + + " kilometers"); + } else { + System.out.println( + "Result: " + this.makeItFitController.executeQueryHowManyKMsDone() + + " kilometers"); + } + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Executes the query to determine how many meters of altimetry a user has totaled in a period + * or ever since. + */ + public void executeQueryHowManyAltimetryDone() { + System.out.println("[" + this.makeItFitController.getName() + "] Executing query ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[APP] Enter the user's email: "); + String email = scanner.nextLine(); + + this.makeItFitController.setEmail(email); + + System.out.print("[APP] Do you choose a period of time? (y/n): "); + String response = scanner.nextLine(); + if (response.equals("Y") || response.equals("y")) { + System.out.print("[APP] Enter the start date (dd/mm/aaaa): "); + MakeItFitDate startDate = MakeItFitDate.fromString(scanner.nextLine()); + System.out.print("[APP] Enter the end date (dd/mm/aaaa): "); + MakeItFitDate endDate = MakeItFitDate.fromString(scanner.nextLine()); + + System.out.println( + "Result: " + + this.makeItFitController.executeQueryHowManyAltimetryDone(startDate, endDate) + + " meters"); + } else { + System.out.println( + "Result: " + this.makeItFitController.executeQueryHowManyAltimetryDone() + + " meters"); + } + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Executes the query to determine the most demanding training plan depending on the proposed + * calorie expenditure. + */ + public void executeQueryMostDemandingTrainingPlan() { + System.out.println("[" + this.makeItFitController.getName() + "] Executing query ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.println("Result: \n" + + this.makeItFitController.executeQueryMostDemandingTrainingPlan()); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Executes the query to determine what type of activity is most carried out. + */ + public void executeQueryMostDoneActivity() { + System.out.println("[" + this.makeItFitController.getName() + "] Executing query ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.println("Result: " + + this.makeItFitController.executeQueryMostDoneActivity()); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Executes the query to determine which user has burned the most calories over a period of time + * or ever. + */ + public void executeQuerywhoBurnsMoreCalories() { + System.out.println("[" + this.makeItFitController.getName() + "] Executing query ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[APP] Do you choose a period of time? (y/n): "); + String response = scanner.nextLine(); + if (response.equals("Y") || response.equals("y")) { + System.out.print("[APP] Enter the start date (dd/mm/aaaa): "); + MakeItFitDate startDate = MakeItFitDate.fromString(scanner.nextLine()); + System.out.print("[APP] Enter the end date (dd/mm/aaaa): "); + MakeItFitDate endDate = MakeItFitDate.fromString(scanner.nextLine()); + + System.out.println( + "Result: \n" + + this.makeItFitController.executeQuerywhoBurnsMoreCalories(startDate, endDate)); + } else { + System.out.println("Result: \n" + + this.makeItFitController.executeQuerywhoBurnsMoreCalories()); + } + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Executes the query to determine which user has carried out the most activities in a period or + * ever since. + */ + public void executeQueryWhoDidTheMostActivities() { + System.out.println("[" + this.makeItFitController.getName() + "] Executing query ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[APP] Do you choose a period of time? (y/n): "); + String response = scanner.nextLine(); + if (response.equals("Y") || response.equals("y")) { + System.out.print("[APP] Enter the start date (dd/mm/aaaa): "); + MakeItFitDate startDate = MakeItFitDate.fromString(scanner.nextLine()); + System.out.print("[APP] Enter the end date (dd/mm/aaaa): "); + MakeItFitDate endDate = MakeItFitDate.fromString(scanner.nextLine()); + + System.out.println( + "Result: \n" + + this.makeItFitController.executeQueryWhoDidTheMostActivities(startDate, + endDate)); + } else { + System.out.println("Result: \n" + + this.makeItFitController.executeQueryWhoDidTheMostActivities()); + } + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Executes the query to list all activities from a user. + */ + public void executeQueryGetAllActivitiesFromUser() { + System.out.println("[" + this.makeItFitController.getName() + "] Executing query ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[APP] Enter the user's email: "); + String email = scanner.nextLine(); + + this.makeItFitController.setEmail(email); + + System.out.println("Result: \n" + this.makeItFitController.getActivities()); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } +} diff --git a/src/main/java/MakeItFit/views/MakeItFitView.java b/src/main/java/MakeItFit/views/MakeItFitView.java new file mode 100644 index 0000000..003b6c8 --- /dev/null +++ b/src/main/java/MakeItFit/views/MakeItFitView.java @@ -0,0 +1,884 @@ +package MakeItFit.views; + +import java.util.*; + +import MakeItFit.MakeItFitController; +import MakeItFit.exceptions.InvalidTypeException; +import MakeItFit.menu.*; +import MakeItFit.users.Gender; +import MakeItFit.utils.MakeItFitDate; + +/** + * The class MakeItFitView represents a base for the views. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public abstract class MakeItFitView { + + public final MakeItFitController makeItFitController; + private String userType; + private String activityType; + + /** + * Empty constructor of the class. + */ + public MakeItFitView() { + this.makeItFitController = new MakeItFitController(); + this.userType = "UNDEFINED"; + this.activityType = "UNDEFINED"; + } + + /* + * Abstract method login to be implemented by the subclasses such as user or admin. + */ + public abstract void login(); + + /** + * Creates a new user. + * Requests the user's information from the console and creates a new user using the controller. + */ + public void createUser() throws InvalidTypeException { + System.out.println("[APP] Creating user ..."); + + Scanner scanner = new Scanner(System.in); + + try { + String userType = ""; + do { + System.out.print( + "[APP] Please enter the type of user (Amateur | Occasional | Professional): "); + userType = scanner.nextLine(); + } while (!userType.equals("Amateur") && !userType.equals("Occasional") && + !userType.equals("Professional")); + + this.userType = userType; + + System.out.println("[APP] Please enter the following information:"); + + System.out.print("[APP] Name: "); + String name = scanner.nextLine(); + System.out.print("[APP] Age: "); + int age = scanner.nextInt(); + System.out.print("[APP] Gender (Male | Female | Other): "); + Gender gender = Gender.valueOf(scanner.next()); + System.out.print("[APP] Weight (Kg): "); + float weight = scanner.nextFloat(); + System.out.print("[APP] Height (cm): "); + int height = scanner.nextInt(); + System.out.print("[APP] Bpm: "); + int bpm = scanner.nextInt(); + System.out.print("[APP] Level: "); + int level = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Address: "); + String address = scanner.nextLine(); + System.out.print("[APP] Phone: "); + String phone = scanner.nextLine(); + + switch (this.userType) { + case "Amateur" -> + this.makeItFitController.createUser(name, + age, + gender, + weight, + height, + bpm, + level, + address, + phone, + -1, + this.userType); + case "Occasional", "Professional" -> { + System.out.print("[APP] Frequency: "); + int frequency = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.createUser(name, + age, + gender, + weight, + height, + bpm, + level, + address, + phone, + frequency, + this.userType); + } + default -> { + System.out.println("[APP] Invalid type."); + } + } + System.out.println("[" + this.makeItFitController.getName() + + "] User created successfully."); + } catch (Exception e) { + System.out.println("[APP] Invalid input."); + } + } + + /** + * Gets the user details. + */ + public void getUserDetails() { + System.out.println("[" + this.makeItFitController.getName() + "] Getting user details ..."); + + try { + System.out.println(this.makeItFitController.getUserDetails()); + } catch (Exception e) { + System.out.println("[APP] Something went wrong."); + } + } + + /** + * Creates the update user menu of the application. + * + * @return The created update user menu. + */ + public Menu createUpdateUserMenu() { + List updateUserMenuItems = new ArrayList<>(); + + updateUserMenuItems.add(new MenuItem("Update Name", () -> updateName())); + updateUserMenuItems.add(new MenuItem("Update Age", () -> updateAge())); + updateUserMenuItems.add(new MenuItem("Update Gender", () -> updateGender())); + updateUserMenuItems.add(new MenuItem("Update Weight", () -> updateWeight())); + updateUserMenuItems.add(new MenuItem("Update Height", () -> updateHeight())); + updateUserMenuItems.add(new MenuItem("Update BPM", () -> updateBpm())); + updateUserMenuItems.add(new MenuItem("Update Level", () -> updateLevel())); + updateUserMenuItems.add(new MenuItem("Update Address", () -> updateAddress())); + updateUserMenuItems.add(new MenuItem("Update Phone", () -> updatePhone())); + updateUserMenuItems.add(new MenuItem("Update Email", () -> updateEmail())); + + return new Menu(updateUserMenuItems); + } + + /** + * Updates the name of the currently logged in user. + */ + private void updateName() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating name ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new name: "); + String name = scanner.nextLine(); + + this.makeItFitController.updateName(name); + System.out.println("[" + this.makeItFitController.getName() + + "] Name updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the age of the currently logged in user. + */ + private void updateAge() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating age ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new age: "); + int age = scanner.nextInt(); + + this.makeItFitController.updateAge(age); + System.out.println("[" + this.makeItFitController.getName() + + "] Age updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the gender of the currently logged in user. + */ + private void updateGender() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating gender ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the gender (Male | Female | Other): "); + Gender gender = Gender.valueOf(scanner.next()); + + this.makeItFitController.updateGender(gender); + System.out.println("[" + this.makeItFitController.getName() + + "] Gender updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the weight of the currently logged in user. + */ + private void updateWeight() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating weight ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new weight: "); + float weight = scanner.nextFloat(); + + this.makeItFitController.updateWeight(weight); + System.out.println("[" + this.makeItFitController.getName() + + "] Weight updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the height of the currently logged in user. + */ + private void updateHeight() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating height ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new height: "); + int height = scanner.nextInt(); + + this.makeItFitController.updateHeight(height); + System.out.println("[" + this.makeItFitController.getName() + + "] Height updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the bpm of the currently logged in user. + */ + private void updateBpm() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating bpm ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new bpm: "); + int bpm = scanner.nextInt(); + + this.makeItFitController.updateBpm(bpm); + System.out.println("[" + this.makeItFitController.getName() + + "] BPM updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the level of the currently logged in user. + */ + private void updateLevel() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating level ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new level: "); + int level = scanner.nextInt(); + + this.makeItFitController.updateLevel(level); + System.out.println("[" + this.makeItFitController.getName() + + "] Level updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the address of the currently logged in user. + */ + private void updateAddress() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating address ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new address: "); + String address = scanner.nextLine(); + + this.makeItFitController.updateAddress(address); + System.out.println("[" + this.makeItFitController.getName() + + "] Address updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the phone of the currently logged in user. + */ + private void updatePhone() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating phone ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new phone: "); + String phone = scanner.nextLine(); + + this.makeItFitController.updatePhone(phone); + System.out.println("[" + this.makeItFitController.getName() + + "] Phone updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Updates the email of the currently logged in user. + */ + private void updateEmail() { + System.out.println("[" + this.makeItFitController.getName() + "] Updating email ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the new email: "); + String email = scanner.nextLine(); + + this.makeItFitController.updateEmail(email); + System.out.println("[" + this.makeItFitController.getName() + + "] Email updated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Adds an activity to the currently logged in user. + */ + public void addActivityToUser() { + System.out.println("[" + this.makeItFitController.getName() + + "] Adding activity to user ..."); + + Scanner scanner = new Scanner(System.in); + + try { + + String activityType = ""; + do { + System.out.print( + "[" + this.makeItFitController.getName() + + "] Please select the activity (PushUp | WeightSquat | Running | Trail): "); + activityType = scanner.nextLine(); + } while (!activityType.equals("PushUp") && !activityType.equals("WeightSquat") && + !activityType.equals("Running") && !activityType.equals("Trail")); + + this.activityType = activityType; + + System.out.println("[APP] Please enter the following information:"); + + try { + System.out.print("[APP] Date (dd/mm/aaaa): "); + MakeItFitDate date = MakeItFitDate.fromString(scanner.nextLine()); + System.out.print("[APP] Duration (minutes): "); + int duration = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Designation: "); + String designation = scanner.nextLine(); + + switch (this.activityType) { + case "PushUp" -> { + System.out.print("[APP] Repetitions: "); + int repetitions = scanner.nextInt(); + System.out.print("[APP] Series: "); + int series = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.addActivityToUser(date, + duration, + designation, + this.activityType, + repetitions, + series); + } + case "Running" -> { + System.out.print("[APP] Distance (meters): "); + double distance = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Speed (Km/h):"); + double speed = scanner.nextDouble(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.addActivityToUser(date, + duration, + designation, + this.activityType, + distance, + speed); + } + case "Trail" -> { + System.out.print("[APP] Distance (meters): "); + double distance = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Elevation gain (meters): "); + double elevationGain = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Elevation loss (meters): "); + double elevationLoss = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Trail type ([0] Easy, [1] Medium, [2] Hard): "); + int trailType = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.addActivityToUser(date, + duration, + designation, + this.activityType, + distance, + elevationGain, + elevationLoss, + trailType); + } + case "WeightSquat" -> { + System.out.print("[APP] Repetitions: "); + int repetitions = scanner.nextInt(); + System.out.print("[APP] Series: "); + int series = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Weight (Kg): "); + double weight = scanner.nextDouble(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.addActivityToUser(date, + duration, + designation, + this.activityType, + repetitions, + series, + weight); + } + default -> System.out.println("[APP] Invalid type."); + } + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + return; + } + + System.out.println("[" + this.makeItFitController.getName() + + "] Activity added to user successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Removes an activity from the currently logged in user. + */ + public void removeActivityFromUser() { + System.out.println("[" + this.makeItFitController.getName() + + "] Removing activity from user ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please insert the code of the activity: "); + UUID code = UUID.fromString(scanner.nextLine()); + + this.makeItFitController.removeActivityFromUser(code); + System.out.println("[" + this.makeItFitController.getName() + + "] Activity removed successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Lists the activities from the currently logged in user. + */ + public void listActivities() { + System.out.println("[" + this.makeItFitController.getName() + "] Listing activities ..."); + + try { + System.out.println(this.makeItFitController.getActivities()); + } catch (Exception e) { + System.out.println("[APP] invalid input."); + } + } + + /** + * Creates a new training plan based on the provided specifications. + */ + public void createTrainingPlan() { + System.out.println("[" + this.makeItFitController.getName() + + "] Creating training plan ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the start date (dd/mm/aaaa): "); + MakeItFitDate startDate = MakeItFitDate.fromString(scanner.nextLine()); + + this.makeItFitController.createTrainingPlan(startDate); + System.out.println("[" + this.makeItFitController.getName() + + "] Training plan created successfully."); + + Menu trainingPlanMenu = createTrainingPlanMenu(); + trainingPlanMenu.run(); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Generates a new training plan based on the provided specifications. + */ + public Menu createTrainingPlanMenu() { + List trainingPlanMenuItems = new ArrayList<>(); + + trainingPlanMenuItems.add(new MenuItem("Construct plan", () -> constructTrainingPlan())); + trainingPlanMenuItems.add(new MenuItem("Generate plan", () -> generateTrainingPlan())); + + return new Menu(trainingPlanMenuItems); + } + + /** + * Constructs a new training plan based on the provided specifications. + */ + public void constructTrainingPlan() { + System.out.println("[" + this.makeItFitController.getName() + + "] Constructing training plan ..."); + + try { + addActivityToTrainingPlan(); + + System.out.println("[" + this.makeItFitController.getName() + + "] Training plan constructed successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Adds an activity to the training plan of the currently logged in user. + */ + public void addActivityToTrainingPlan() { + System.out.println("[" + this.makeItFitController.getName() + + "] Adding activity to training plan ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the number of iterations for the activity: "); + int iterations = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining line + + String activityType = ""; + + do { + System.out.print( + "[" + this.makeItFitController.getName() + + "] Please select the activity (PushUp | WeightSquat | Running | Trail): "); + activityType = scanner.nextLine(); + } while (!activityType.equals("PushUp") && !activityType.equals("WeightSquat") && + !activityType.equals("Running") && !activityType.equals("Trail")); + + this.activityType = activityType; + + System.out.println("[APP] Please enter the following information:"); + + try { + System.out.print("[APP] Date (dd/mm/aaaa): "); + MakeItFitDate date = MakeItFitDate.fromString(scanner.nextLine()); + System.out.print("[APP] Duration (minutes): "); + int duration = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Designation: "); + String designation = scanner.nextLine(); + + switch (this.activityType) { + case "PushUp" -> { + System.out.print("[APP] Repetitions: "); + int repetitions = scanner.nextInt(); + System.out.print("[APP] Series: "); + int series = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.addActivityToTrainingPlan(date, + duration, + designation, + this.activityType, + repetitions, + series, + iterations); + } + case "Running" -> { + System.out.print("[APP] Distance (meters): "); + double distance = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Speed (Km/h): "); + double speed = scanner.nextDouble(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.addActivityToTrainingPlan(date, + duration, + designation, + this.activityType, + distance, + speed, + iterations); + } + case "Trail" -> { + System.out.print("[APP] Distance (meters): "); + double distance = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Elevation gain (meters): "); + double elevationGain = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Elevation loss (meters): "); + double elevationLoss = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Trail type ([0] Easy, [1] Medium, [2] Hard): "); + int trailType = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.addActivityToTrainingPlan(date, + duration, + designation, + this.activityType, + distance, + elevationGain, + elevationLoss, + trailType, + iterations); + } + case "WeightSquat" -> { + System.out.print("[APP] Repetitions: "); + int repetitions = scanner.nextInt(); + System.out.print("[APP] Series: "); + int series = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + System.out.print("[APP] Weight (Kg): "); + double weight = scanner.nextDouble(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.addActivityToTrainingPlan(date, + duration, + designation, + this.activityType, + repetitions, + series, + weight, + iterations); + } + default -> System.out.println("[APP] Invalid type."); + } + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + return; + } + + System.out.println("[" + this.makeItFitController.getName() + + "] Activity added to training plan successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Generates a new training plan based on the provided specifications. + */ + public void generateTrainingPlan() { + System.out.println("[" + this.makeItFitController.getName() + + "] Generating training plan ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Do you want to add hard activities? (y/n): "); + String response = scanner.nextLine(); + boolean hardActivities = response.equals("Y") || response.equals("y"); + + int maxActivitiesPerDay = 4; + while (maxActivitiesPerDay > 3) { + System.out.print( + "[" + this.makeItFitController.getName() + + "] Please insert the maximum number of activities per day (max 3): "); + maxActivitiesPerDay = scanner.nextInt(); + } + scanner.nextLine(); // Consume the remaining newline + + System.out.print("[" + this.makeItFitController.getName() + + "] Please insert the maximum number of different activities: "); + int maxDifferentActivities = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + + int maxWeeklyRecurrence = 8; + while (maxWeeklyRecurrence > 7) { + System.out.print("[" + this.makeItFitController.getName() + + "] Please insert the weekly recurrence expected (max 7): "); + maxWeeklyRecurrence = scanner.nextInt(); + } + scanner.nextLine(); // Consume the remaining newline + + int minCalories = 0; + while (minCalories < 1) { + System.out.print("[" + this.makeItFitController.getName() + + "] Please insert the minimum number of calories to be consumed: "); + minCalories = scanner.nextInt(); + } + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.constructTrainingPlanByObjectives(hardActivities, + maxActivitiesPerDay, + maxDifferentActivities, + maxWeeklyRecurrence, + minCalories); + System.out.println("[" + this.makeItFitController.getName() + + "] Training plan generated successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Removes an activity from the training plan of the currently logged in user. + */ + public void removeActivityFromTrainingPlan() { + System.out.println("[" + this.makeItFitController.getName() + + "] Removing activity from training plan ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please insert the code of the activity: "); + UUID code = UUID.fromString(scanner.nextLine()); + + this.makeItFitController.removeActivityFromTrainingPlan(code); + System.out.println("[" + this.makeItFitController.getName() + + "] Activity removed successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Removes a training plan from the currently logged in user. + */ + public void removeTrainingPlan() { + System.out.println("[" + this.makeItFitController.getName() + + "] Removing training plan ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please insert the code of the training plan: "); + UUID code = UUID.fromString(scanner.nextLine()); + + this.makeItFitController.setTrainingPlan(code); + + this.makeItFitController.removeTrainingPlan(); + System.out.println("[" + this.makeItFitController.getName() + + "] Training plan removed successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Selects a training plan from the currently logged in user. + */ + public void selectTrainingPlan() throws RuntimeException { + System.out.println("[" + this.makeItFitController.getName() + + "] Selecting training plan ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please insert the code of the training plan: "); + UUID code = UUID.fromString(scanner.nextLine()); + + this.makeItFitController.setTrainingPlan(code); + System.out.println("[" + this.makeItFitController.getName() + + "] Training plan selected successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + throw new RuntimeException(); + } + } + + /** + * Lists all training plans from the currently logged in user. + */ + public void listAllTrainingPlansFromUser() { + System.out.println("[" + this.makeItFitController.getName() + + "] Listing all training plans ..."); + + try { + System.out.println(this.makeItFitController.getTrainingPlansFromUser()); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + + "] Unexpected behaviour."); + } + } + + /** + * Advances the time of the application. + */ + public void advanceTimeManager() { + System.out.println("[" + this.makeItFitController.getName() + "] Advancing time ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the number of days to advance: "); + int days = scanner.nextInt(); + scanner.nextLine(); // Consume the remaining newline + + this.makeItFitController.updateSystemDate(days); + System.out.println("[" + this.makeItFitController.getName() + + "] Time advanced successfully."); + } catch (Exception e) { + System.out.println("[" + this.makeItFitController.getName() + "] Invalid input."); + } + } + + /** + * Saves the current state of the application. + */ + public void saveSystem() { + System.out.println("[" + this.makeItFitController.getName() + "] Saving system state ..."); + + Scanner scanner = new Scanner(System.in); + + try { + System.out.print("[" + this.makeItFitController.getName() + + "] Please enter the file name: "); + String fileName = scanner.nextLine(); + + this.makeItFitController.saveSystem(fileName); + System.out.println("[" + this.makeItFitController.getName() + + "] System state saved successfully."); + } catch (Exception e) { + System.out.println("View: " + e.getMessage()); + System.out.println("[" + this.makeItFitController.getName() + + "] Could not save the file."); + } + } +} diff --git a/src/main/java/MakeItFit/views/UserView.java b/src/main/java/MakeItFit/views/UserView.java new file mode 100644 index 0000000..d643496 --- /dev/null +++ b/src/main/java/MakeItFit/views/UserView.java @@ -0,0 +1,114 @@ +package MakeItFit.views; + +import java.util.*; + +import MakeItFit.menu.*; + +import static MakeItFit.utils.EmailValidator.*; + +/** + * The class UserView represents a view for a normal user. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class UserView extends MakeItFitView { + + /* + * Empty constructor of the class. + */ + public UserView() { + super(); + } + + /** + * Prompts the user to login. + * Requests the user's email from the console and logs the user in using the controller. + */ + public void login() { + Scanner scanner = new Scanner(System.in); + System.out.print("[APP] Do you want to load a previous state? (y/n): "); + String choice = scanner.nextLine(); + + if (choice.equals("Y") || choice.equals("y")) { + System.out.print("[APP] Please enter the file name: "); + String fileName = scanner.nextLine(); + try { + this.makeItFitController.loadSystem(fileName); + System.out.println("[APP] Loaded successfully."); + } catch (Exception e) { + System.out.println("[APP] Could not load the file."); + } + } + + System.out.println("[APP] Logging in ..."); + + Menu appMenu = createAppMenu(); + + try { + String email = ""; + do { + System.out.print("[APP] Please enter your email: "); + email = scanner.nextLine(); + } while (!isValidEmail(email)); + this.makeItFitController.login(email); + System.out.println("[" + this.makeItFitController.getName() + + "] Logged in successfully."); + + appMenu.run(); + + } catch (Exception e) { + System.out.println("[APP] The email " + e.getMessage() + " does not exist."); + + System.out.print("[APP] Would you like to create a new user? (y/n): "); + + String response = scanner.nextLine(); + + if (response.equals("Y") || response.equals("y")) { + + try { + createUser(); + appMenu.run(); + } catch (Exception e2) { + // TODO: appMenu.stopMenu(); + } + } else { + System.out.println("[APP] Exiting ..."); + } + } + } + + /** + * Creates the app menu of the application. + * + * @return The created app menu. + */ + private Menu createAppMenu() { + List appMenuItems = new ArrayList<>(); + + appMenuItems.add(new MenuItem("User Details", () -> getUserDetails())); + + Menu updateUserMenu = createUpdateUserMenu(); + appMenuItems.add(new MenuItem("Update user info", updateUserMenu::run)); + + appMenuItems.add(new MenuItem("Add activity", () -> addActivityToUser())); + appMenuItems.add(new MenuItem("Remove activity", () -> removeActivityFromUser())); + appMenuItems.add(new MenuItem("List activities", () -> listActivities())); + appMenuItems.add(new MenuItem("Create training plan", () -> createTrainingPlan())); + appMenuItems.add(new MenuItem("Remove training plan", () -> removeTrainingPlan())); + appMenuItems.add(new MenuItem("Add activity to a training plan", () -> { + selectTrainingPlan(); + addActivityToTrainingPlan(); + })); + appMenuItems.add(new MenuItem("Remove activity from a training plan", () -> { + selectTrainingPlan(); + removeActivityFromTrainingPlan(); + })); + appMenuItems.add( + new MenuItem("List all training plans", () -> listAllTrainingPlansFromUser())); + appMenuItems.add(new MenuItem("Advance time", () -> advanceTimeManager())); + appMenuItems.add(new MenuItem("Save system state", () -> saveSystem())); + + return new Menu(appMenuItems); + } +} diff --git a/src/oldunittests/java/MakeItFit/activities/PushUpTest.java b/src/oldunittests/java/MakeItFit/activities/PushUpTest.java new file mode 100644 index 0000000..d842142 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/activities/PushUpTest.java @@ -0,0 +1,124 @@ +import java.util.UUID; + +import MakeItFit.activities.implementation.PushUp; +import MakeItFit.users.Gender; +import MakeItFit.users.User; +import MakeItFit.users.types.Amateur; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the PushUp class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class PushUpTest { + /** + * Tests the PushUp class constructors. + */ + @Test + public void testConstructors() { + UUID UUID = java.util.UUID.randomUUID(); + PushUp pushUp1 = + new PushUp(UUID, MakeItFitDate.of(2024, 4, 4), 40, "Daily try", "PushUp", 10, 4); + assertNotNull(pushUp1); + PushUp pushUp2 = new PushUp(pushUp1); + assertNotNull(pushUp2); + } + + /** + * Tests the creation of PushUp instances using different constructors. + */ + @Test + public void testPushUpConstructors() { + UUID UUID = java.util.UUID.randomUUID(); + PushUp pushUp1 = + new PushUp(UUID, MakeItFitDate.of(2024, 4, 4), 30, "Daily try", "PushUp", 10, 10); + assertNotNull(pushUp1, "PushUp instance should be created successfully."); + + PushUp pushUp2 = new PushUp(pushUp1); + assertNotNull(pushUp2, "Copy constructor should create a non-null instance."); + assertEquals(pushUp1, pushUp2, "Copy constructor should create an equal instance."); + } + + /** + * Tests the calculation of caloric waste for PushUp instances. + */ + @Test + public void testCalculateCaloricWaste() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + PushUp pushUp1 = new PushUp(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Daily try", + "PushUp", + 10, + 10); + int expectedWaste1 = 232; + pushUp1.calculateCaloricWaste(user.getIndex()); + assertEquals(expectedWaste1, + pushUp1.getCaloricWaste(), + "Caloric waste should match the expected value."); + + PushUp pushUp2 = new PushUp(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Daily try", + "PushUp", + 5, + 25); + int expectedWaste2 = 290; + pushUp2.calculateCaloricWaste(user.getIndex()); + assertEquals(expectedWaste2, + pushUp2.getCaloricWaste(), + "Caloric waste should match the expected value."); + } + + /** + * Tests the equals method for PushUp instances. + */ + @Test + public void testPushUpEquals() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + PushUp pushUp1 = new PushUp(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Daily try", + "PushUp", + 6, + 4); + assertNotEquals(null, pushUp1, "PushUp instance should not be equal to null."); + + PushUp pushUp2 = new PushUp(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Daily try", + "PushUp", + 6, + 4); + assertEquals(pushUp1, + pushUp2, + "PushUp instances with the same properties should be equal."); + } +} diff --git a/src/oldunittests/java/MakeItFit/activities/RunningTest.java b/src/oldunittests/java/MakeItFit/activities/RunningTest.java new file mode 100644 index 0000000..148ec65 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/activities/RunningTest.java @@ -0,0 +1,172 @@ +import java.util.UUID; + +import MakeItFit.activities.implementation.Running; +import MakeItFit.users.Gender; +import MakeItFit.users.User; +import MakeItFit.users.types.Amateur; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the Running class. + * + * These tests verify the functionality of the Running class, which represents a running activity in + * the application. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class RunningTest { + /** + * Tests the Running class constructors. + */ + @Test + public void testConstructors() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + Running run1 = new Running(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5); + assertNotNull(run1); + assertEquals(14.5, run1.getSpeed()); + Running run3 = new Running(run1); + assertNotNull(run3); + assertEquals(14.5, run3.getSpeed()); + } + + /** + * Tests the getSpeed method of the Running class. + */ + @Test + public void testGetSpeed() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + Running run1 = new Running(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5); + assertEquals(14.5, run1.getSpeed()); + } + + /** + * Tests the setSpeed method of the Running class. + */ + @Test + public void testSetSpeed() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + Running run1 = new Running(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5); + run1.setSpeed(12.0); + assertEquals(12.0, run1.getSpeed()); + } + + /** + * Tests the calculateCaloricWaste method of the Running class. + */ + @Test + public void testCalculateCaloricWaste() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + Running run1 = new Running(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 45, + "Braga em Movimento", + "Runnign", + 2300, + 14.5); + int expectedCaloricWaste = 3873; + run1.calculateCaloricWaste(user.getIndex()); + assertEquals(expectedCaloricWaste, run1.getCaloricWaste()); + } + + /** + * Tests the equals method of the Running class. + */ + @Test + public void testEquals() { + User user1 = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + User user2 = new Amateur("Erica", + 25, + Gender.Female, + 56, + 164, + 75, + 2, + "Wallstreet N18", + "972233536", + "erica@mail.com"); + + Running run1 = new Running(user1.getCode(), + MakeItFitDate.of(2024, 4, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5); + Running run2 = new Running(user2.getCode(), + MakeItFitDate.of(2024, 4, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5); + assertNotEquals(null, run1); + assertEquals(run1, run2); + } +} diff --git a/src/oldunittests/java/MakeItFit/activities/TrailTest.java b/src/oldunittests/java/MakeItFit/activities/TrailTest.java new file mode 100644 index 0000000..5febd99 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/activities/TrailTest.java @@ -0,0 +1,180 @@ +import java.util.UUID; + +import MakeItFit.activities.implementation.Trail; +import MakeItFit.users.Gender; +import MakeItFit.users.User; +import MakeItFit.users.types.Amateur; +import MakeItFit.users.types.Professional; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * Tests for the Trail class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class TrailTest { + /** + * Tests the constructors of the Trail class. + */ + @Test + public void testConstructors() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + Trail trail1 = new Trail(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 40, + "Serra da Estrela", + "Trail", + 10000.6, + 700.8, + 200.3, + Trail.TRAIL_TYPE_MEDIUM); + assertNotNull(trail1, "Trail instance should not be null"); + assertEquals(Trail.TRAIL_TYPE_MEDIUM, trail1.getTrailType(), "Trail type should be medium"); + + Trail trail2 = new Trail(trail1); + assertNotNull(trail2, "Trail instance created using copy constructor should not be null"); + assertEquals(trail2.getTrailType(), + Trail.TRAIL_TYPE_MEDIUM, + "Trail type should match the original"); + } + + /** + * Tests the getTrailType method of the Trail class. + */ + @Test + public void testGetTrailType() { + User user = new Professional("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com", + 7); + Trail trail1 = new Trail(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 40, + "Serra da Estrela", + "Trail", + 10000.6, + 700.8, + 200.3, + Trail.TRAIL_TYPE_MEDIUM); + assertEquals(trail1.getTrailType(), + Trail.TRAIL_TYPE_MEDIUM, + "The trail type should be medium"); + } + + /** + * Tests the setTrailType method of the Trail class. + */ + @Test + public void testSetTrailType() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + Trail trail1 = new Trail(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 40, + "Serra da Estrela", + "Trail", + 10000.6, + 700.8, + 200.3, + Trail.TRAIL_TYPE_EASY); + + trail1.setTrailType(Trail.TRAIL_TYPE_HARD); + assertEquals(trail1.getTrailType(), Trail.TRAIL_TYPE_HARD, "The trail type should be hard"); + } + + /** + * Tests the calculateCaloricWaste method of the Trail class. + */ + @Test + public void testCalculateCaloricWaste() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + Trail trail1 = new Trail(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 40, + "Serra da Estrela", + "Trail", + 900.6, + 700.8, + 200.3, + Trail.TRAIL_TYPE_HARD); + trail1.calculateCaloricWaste(user.getIndex()); + assertEquals(trail1.getCaloricWaste(), + 116, + "Caloric waste should match the expected value"); + } + + /** + * Tests the equals method of the Trail class. + */ + @Test + public void testEquals() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + Trail trail1 = new Trail(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 40, + "Serra da Estrela", + "Trail", + 10000.6, + 700.8, + 200.3, + Trail.TRAIL_TYPE_EASY); + Trail trail2 = new Trail(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 40, + "Serra da Estrela", + "Trail", + 10000.6, + 700.8, + 200.3, + Trail.TRAIL_TYPE_EASY); + + assertEquals(trail1, trail2, "Two identical Trail instances should be equal"); + assertNotEquals(null, trail1, "Trail instance should not be equal to null"); + } +} diff --git a/src/oldunittests/java/MakeItFit/activities/WeightSquatTest.java b/src/oldunittests/java/MakeItFit/activities/WeightSquatTest.java new file mode 100644 index 0000000..5972c35 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/activities/WeightSquatTest.java @@ -0,0 +1,119 @@ +import java.util.UUID; + +import MakeItFit.activities.implementation.WeightSquat; +import MakeItFit.users.Gender; +import MakeItFit.users.User; +import MakeItFit.users.types.Amateur; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the WeightSquat class. + * + * This class contains tests for the constructors, methods, and operations of the WeightSquat class, + * including tests for construction, calculating caloric waste, and object equality. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class WeightSquatTest { + + /** + * Tests the WeightSquat class constructors. + */ + @Test + public void testConstructors() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + WeightSquat squat1 = new WeightSquat(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Weekly try", + "WeightSquat", + 20, + 3, + 50); + assertNotNull(squat1, "WeightSquat instance should be created successfully."); + + WeightSquat squat3 = new WeightSquat(squat1); + assertNotNull(squat3, "Copy of WeightSquat instance should be created successfully."); + } + + /** + * Tests the WeightSquat class method calculateCaloricWaste. + */ + @Test + public void testCalculateCaloricWaste() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + WeightSquat squat1 = new WeightSquat(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Weekly try", + "WeightSquat", + 20, + 3, + 50); + squat1.calculateCaloricWaste(user.getIndex()); + assertEquals(6968, + squat1.getCaloricWaste(), + "Calculated caloric waste should match the expected value."); + } + + /** + * Tests the WeightSquat class method equals. + */ + @Test + public void testEquals() { + User user = new Amateur("John", + 20, + Gender.Male, + 70, + 180, + 65, + 3, + "Wallstreet N16", + "974632836", + "jonh@mail.com"); + WeightSquat squat1 = new WeightSquat(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Weekly try", + "WeightSquat", + 20, + 3, + 50); + assertNotEquals(null, squat1, "WeightSquat instance should not be equal to null."); + + UUID UUID2 = java.util.UUID.randomUUID(); + WeightSquat squat2 = new WeightSquat(user.getCode(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Weekly try", + "WeightSquat", + 20, + 3, + 50); + assertEquals(squat1, + squat2, + "WeightSquat instances with identical parameters should be considered equal."); + } +} diff --git a/src/oldunittests/java/MakeItFit/queries/HowManyAltimetryDoneTest.java b/src/oldunittests/java/MakeItFit/queries/HowManyAltimetryDoneTest.java new file mode 100644 index 0000000..47f380b --- /dev/null +++ b/src/oldunittests/java/MakeItFit/queries/HowManyAltimetryDoneTest.java @@ -0,0 +1,108 @@ +import MakeItFit.activities.implementation.Trail; +import MakeItFit.queries.HowManyAltimetryDone; +import MakeItFit.users.Gender; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; +import MakeItFit.users.types.*; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static java.lang.Math.round; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the HowManyAltimetryDone class. + * + * This class contains tests for the constructors, methods, and operations of the + * HowManyAltimetryDone class, + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class HowManyAltimetryDoneTest { + + private UserManager userManager; + private User testUser; + + /** + * Sets up the test environment. + */ + @BeforeEach + void setUp() { + userManager = new UserManager(); + testUser = new Amateur("Test User", + 30, + Gender.Male, + 70, + 180, + 65, + 3, + "Test Street", + "123456789", + "test@example.com"); + + userManager.insertUser(testUser); + + testUser.addActivity(new Trail(testUser.getCode(), + MakeItFitDate.of(2024, 5, 2), + 40, + "Serra da Estrela", + "Trail", + 10000.6, + 700.8, + 200.3, + Trail.TRAIL_TYPE_MEDIUM)); + testUser.addActivity(new Trail(testUser.getCode(), + MakeItFitDate.of(2024, 5, 7), + 30, + "Serra da Lua", + "Trail", + 55040.6, + 299.2, + 299.7, + Trail.TRAIL_TYPE_EASY)); + } + + /** + * Tests the HowManyAltimetryDone class method executeQuery. + */ + @Test + void testExecuteQueryWithoutDates() { + HowManyAltimetryDone altimetryAnalyzer = new HowManyAltimetryDone(); + + double result = altimetryAnalyzer.executeQuery(userManager, "test@example.com"); + + assertEquals(500, round(result)); + } + + /** + * Tests the HowManyAltimetryDone class method executeQuery. + */ + @Test + void testExecuteQueryValidDates() { + HowManyAltimetryDone altimetryAnalyzer = new HowManyAltimetryDone(); + MakeItFitDate date1 = MakeItFitDate.of(2024, 5, 1); + MakeItFitDate date2 = MakeItFitDate.of(2024, 5, 5); + + double result = + altimetryAnalyzer.executeQuery(userManager, "test@example.com", date1, date2); + + assertEquals((double) 1500, round(result)); + } + + /** + * Tests the HowManyAltimetryDone class method executeQuery. + */ + @Test + void testExecuteQueryInvalidDates() { + UserManager userManager = new UserManager(); + HowManyAltimetryDone altimetryAnalyzer = new HowManyAltimetryDone(); + MakeItFitDate date1 = MakeItFitDate.of(2024, 5, 5); + + assertThrows(IllegalArgumentException.class, () -> { + altimetryAnalyzer.executeQuery(userManager, "test@example.com", date1, null); + }); + } +} diff --git a/src/oldunittests/java/MakeItFit/queries/HowManyKMsDoneTest.java b/src/oldunittests/java/MakeItFit/queries/HowManyKMsDoneTest.java new file mode 100644 index 0000000..a3e4cdb --- /dev/null +++ b/src/oldunittests/java/MakeItFit/queries/HowManyKMsDoneTest.java @@ -0,0 +1,107 @@ +package MakeItFit.queries; + +import MakeItFit.activities.implementation.Running; +import MakeItFit.activities.implementation.Trail; +import MakeItFit.users.Gender; +import MakeItFit.users.User; +import MakeItFit.users.UserManager; +import MakeItFit.users.types.*; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static java.lang.Math.round; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the HowManyMetersDone class. + * + * This class contains tests for the constructors, methods, and operations of the HowManyMetersDone + * class, + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class HowManyKMsDoneTest { + + private UserManager userManager; + private User testUser; + + /** + * Sets up the test environment. + */ + @BeforeEach + void setUp() { + userManager = new UserManager(); + testUser = new Amateur("Test User", + 30, + Gender.Male, + 70, + 180, + 65, + 3, + "Test Street", + "123456789", + "test@example.com"); + + userManager.insertUser(testUser); + + testUser.addActivity(new Running(testUser.getCode(), + MakeItFitDate.of(2024, 5, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5)); + testUser.addActivity(new Trail(testUser.getCode(), + MakeItFitDate.of(2024, 5, 7), + 30, + "Serra da Lua", + "Trail", + 55040.6, + 299.2, + 299.7, + Trail.TRAIL_TYPE_EASY)); + } + + /** + * Tests the HowManyMetersDone class method executeQuery. + */ + @Test + void testExecuteQueryWithoutDates() { + HowManyKMsDone metersAnalyzer = new HowManyKMsDone(); + + double result = metersAnalyzer.executeQuery(userManager, "test@example.com"); + + assertEquals(57, round(result)); + } + + /** + * Tests the HowManyMetersDone class method executeQuery. + */ + @Test + void testExecuteQueryValidDates() { + HowManyKMsDone metersAnalyzer = new HowManyKMsDone(); + MakeItFitDate date1 = MakeItFitDate.of(2024, 5, 1); + MakeItFitDate date2 = MakeItFitDate.of(2024, 5, 5); + + double result = metersAnalyzer.executeQuery(userManager, "test@example.com", date1, date2); + + assertEquals(2.3, result); + } + + /** + * Tests the HowManyMetersDone class method executeQuery. + */ + @Test + void testExecuteQueryInvalidDates() { + UserManager userManager = new UserManager(); + HowManyKMsDone metersAnalyzer = new HowManyKMsDone(); + MakeItFitDate date1 = MakeItFitDate.of(2024, 5, 5); + + assertThrows(IllegalArgumentException.class, () -> { + metersAnalyzer.executeQuery(userManager, "test@example.com", date1, null); + }); + } +} diff --git a/src/oldunittests/java/MakeItFit/queries/MostDemaningTrainingPlanTest.java b/src/oldunittests/java/MakeItFit/queries/MostDemaningTrainingPlanTest.java new file mode 100644 index 0000000..f9098f1 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/queries/MostDemaningTrainingPlanTest.java @@ -0,0 +1,114 @@ +package MakeItFit.queries; + +import java.util.UUID; + +import MakeItFit.activities.implementation.*; +import MakeItFit.trainingPlan.TrainingPlan; +import MakeItFit.trainingPlan.TrainingPlanManager; +import MakeItFit.users.*; +import MakeItFit.users.types.*; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static java.lang.Math.round; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the MostDemaningTrainingPlan class. + * + * This class contains tests for the constructors, methods, and operations of the + * MostDemaningTrainingPlan class, + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MostDemaningTrainingPlanTest { + + private UserManager userManager; + private TrainingPlanManager trainingPlanManager; + private User testUser; + private UUID trainingPlanCode; + + /** + * Sets up the test environment. + */ + @BeforeEach + void setUp() { + userManager = new UserManager(); + testUser = new Amateur("Test User", + 30, + Gender.Male, + 70, + 180, + 65, + 3, + "Test Street", + "123456789", + "test@example.com"); + + userManager.insertUser(testUser); + + testUser.addActivity(new Running(testUser.getCode(), + MakeItFitDate.of(2024, 5, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5)); + testUser.addActivity(new Trail(testUser.getCode(), + MakeItFitDate.of(2024, 5, 7), + 30, + "Serra da Lua", + "Trail", + 55040.6, + 299.2, + 299.7, + Trail.TRAIL_TYPE_EASY)); + + trainingPlanManager = new TrainingPlanManager(); + + TrainingPlan trainingPlan1 = + new TrainingPlan(testUser.getCode(), MakeItFitDate.of(2024, 5, 1)); + + trainingPlanCode = trainingPlan1.getCode(); + + Running running = (new Running(testUser.getCode(), + MakeItFitDate.of(2024, 5, 12), + 45, + "Porto em Movimento", + "Running", + 1000, + 15)); + + trainingPlan1.addActivity(3, running); + + trainingPlanManager.insertTrainingPlan(trainingPlan1); + } + + /** + * Tests the MostDemaningTrainingPlan class method executeQuery. + */ + @Test + void testExecuteQueryValidDates() { + MostDemandingTrainingPlan trainingPlanAnalyzer = new MostDemandingTrainingPlan(); + + String result = + trainingPlanAnalyzer.executeQuery(trainingPlanManager, userManager).toString(); + + assertEquals(trainingPlanManager.getTrainingPlan(trainingPlanCode).toString(), result); + } + + /** + * Tests the MostDemaningTrainingPlan class method executeQuery. + */ + @Test + void testExecuteQueryInvalidInput() { + UserManager userManager = new UserManager(); + MostDemandingTrainingPlan trainingPlanAnalyzer = new MostDemandingTrainingPlan(); + + assertThrows(NullPointerException.class, + () -> { trainingPlanAnalyzer.executeQuery(null, userManager); }); + } +} diff --git a/src/oldunittests/java/MakeItFit/queries/MostDoneActivityTest.java b/src/oldunittests/java/MakeItFit/queries/MostDoneActivityTest.java new file mode 100644 index 0000000..38bbd42 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/queries/MostDoneActivityTest.java @@ -0,0 +1,91 @@ +package MakeItFit.queries; + +import MakeItFit.activities.implementation.*; +import MakeItFit.users.*; +import MakeItFit.users.types.*; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the MostDoneActivity class. + * + * This class contains tests for the constructors, methods, and operations of the MostDoneActivity + * class, + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MostDoneActivityTest { + + private UserManager userManager; + private User testUser; + + /** + * Sets up the test environment. + */ + @BeforeEach + void setUp() { + userManager = new UserManager(); + testUser = new Amateur("Test User", + 30, + Gender.Male, + 70, + 180, + 65, + 3, + "Test Street", + "123456789", + "test@example.com"); + + userManager.insertUser(testUser); + + testUser.addActivity(new Running(testUser.getCode(), + MakeItFitDate.of(2024, 5, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5)); + testUser.addActivity(new Trail(testUser.getCode(), + MakeItFitDate.of(2024, 5, 7), + 30, + "Serra da Lua", + "Trail", + 55040.6, + 299.2, + 299.7, + Trail.TRAIL_TYPE_EASY)); + testUser.addActivity(new Running(testUser.getCode(), + MakeItFitDate.of(2024, 5, 12), + 45, + "Porto em Movimento", + "Running", + 1000, + 15)); + } + + /** + * Tests the MostDoneActivity class method executeQuery. + */ + @Test + void testExecuteQueryValidUser() { + MostDoneActivity activityAnalyzer = new MostDoneActivity(); + + String result = activityAnalyzer.executeQuery(userManager); + + assertEquals("Distance", result); + } + + /** + * Tests the MostDoneActivity class method executeQuery. + */ + @Test + void testExecuteQueryInvalidUser() { + MostDoneActivity activityAnalyzer = new MostDoneActivity(); + + assertThrows(NullPointerException.class, () -> { activityAnalyzer.executeQuery(null); }); + } +} diff --git a/src/oldunittests/java/MakeItFit/queries/WhoBurnsMoreCaloriesTest.java b/src/oldunittests/java/MakeItFit/queries/WhoBurnsMoreCaloriesTest.java new file mode 100644 index 0000000..ecc5b47 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/queries/WhoBurnsMoreCaloriesTest.java @@ -0,0 +1,86 @@ +package MakeItFit.queries; + +import MakeItFit.activities.implementation.*; +import MakeItFit.users.*; +import MakeItFit.users.types.*; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +public class WhoBurnsMoreCaloriesTest { + + private UserManager userManager; + private User testUser1; + private User testUser2; + + @BeforeEach + void setUp() { + userManager = new UserManager(); + testUser1 = new Amateur("Test User 1", + 30, + Gender.Male, + 70, + 180, + 65, + 3, + "Test Street", + "123456789", + "test1@example.com"); + testUser2 = new Amateur("Test User 2", + 30, + Gender.Female, + 60, + 170, + 55, + 2, + "Test Street", + "123456789", + "test2@example.com"); + + userManager.insertUser(testUser1); + userManager.insertUser(testUser2); + + testUser1.addActivity(new Running(testUser1.getCode(), + MakeItFitDate.of(2024, 5, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5)); + testUser1.addActivity(new Trail(testUser1.getCode(), + MakeItFitDate.of(2024, 5, 7), + 30, + "Serra da Lua", + "Trail", + 55040.6, + 299.2, + 299.7, + Trail.TRAIL_TYPE_EASY)); + testUser2.addActivity(new Running(testUser2.getCode(), + MakeItFitDate.of(2024, 5, 12), + 45, + "Porto em Movimento", + "Running", + 1000, + 15)); + } + + @Test + void testExecuteQueryValidUsers() { + WhoBurnsMoreCalories calorieAnalyzer = new WhoBurnsMoreCalories(); + + String result = calorieAnalyzer.executeQuery(userManager).toString(); + + assertEquals(testUser1.toString(), result); + } + + @Test + void testExecuteQueryNoUsers() { + WhoBurnsMoreCalories calorieAnalyzer = new WhoBurnsMoreCalories(); + + assertThrows(IllegalArgumentException.class, + () -> { calorieAnalyzer.executeQuery(null, null, null); }); + } +} diff --git a/src/oldunittests/java/MakeItFit/queries/WhoDidTheMostActivitiesTest.java b/src/oldunittests/java/MakeItFit/queries/WhoDidTheMostActivitiesTest.java new file mode 100644 index 0000000..d785329 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/queries/WhoDidTheMostActivitiesTest.java @@ -0,0 +1,98 @@ +package MakeItFit.queries; + +import MakeItFit.activities.implementation.*; +import MakeItFit.users.*; +import MakeItFit.users.types.*; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +public class WhoDidTheMostActivitiesTest { + + private UserManager userManager; + private User testUser1; + private User testUser2; + + @BeforeEach + void setUp() { + userManager = new UserManager(); + testUser1 = new Amateur("Test User 1", + 30, + Gender.Male, + 70, + 180, + 65, + 3, + "Test Street", + "123456789", + "test1@example.com"); + testUser2 = new Amateur("Test User 2", + 30, + Gender.Female, + 60, + 170, + 55, + 2, + "Test Street", + "123456789", + "test2@example.com"); + + userManager.insertUser(testUser1); + userManager.insertUser(testUser2); + + testUser1.addActivity(new Running(testUser1.getCode(), + MakeItFitDate.of(2024, 5, 4), + 45, + "Braga em Movimento", + "Running", + 2300, + 14.5)); + testUser1.addActivity(new Trail(testUser1.getCode(), + MakeItFitDate.of(2024, 5, 7), + 30, + "Serra da Lua", + "Trail", + 55040.6, + 299.2, + 299.7, + Trail.TRAIL_TYPE_EASY)); + testUser2.addActivity(new Running(testUser2.getCode(), + MakeItFitDate.of(2024, 5, 12), + 45, + "Porto em Movimento", + "Running", + 1000, + 15)); + } + + @Test + void testExecuteQueryValidUsers() { + WhoDidTheMostActivities activityAnalyzer = new WhoDidTheMostActivities(); + + String result = activityAnalyzer.executeQuery(userManager).toString(); + + assertEquals(testUser1.toString(), result); + } + + @Test + void testExecuteQueryNoUsers() { + WhoDidTheMostActivities activityAnalyzer = new WhoDidTheMostActivities(); + + assertThrows(IllegalArgumentException.class, + () -> { activityAnalyzer.executeQuery(null, null, null); }); + } + + @Test + void testExecuteQueryBetweenDates() { + WhoDidTheMostActivities activityAnalyzer = new WhoDidTheMostActivities(); + + MakeItFitDate date1 = MakeItFitDate.of(2024, 5, 1); + MakeItFitDate date2 = MakeItFitDate.of(2024, 5, 10); + + String result = activityAnalyzer.executeQuery(userManager, date1, date2).toString(); + + assertEquals(testUser1.toString(), result); + } +} diff --git a/src/oldunittests/java/MakeItFit/time/TimeManagerTest.java b/src/oldunittests/java/MakeItFit/time/TimeManagerTest.java new file mode 100644 index 0000000..6c36ab7 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/time/TimeManagerTest.java @@ -0,0 +1,70 @@ +import MakeItFit.time.TimeManager; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the TimeManager class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104100) + * @version (11052024) + */ +public class TimeManagerTest { + /** + * Tests the constructor of the class TimeManager. + */ + @Test + public void testTimeManagerTest() { + MakeItFitDate currentDate = MakeItFitDate.of(2021, 12, 1); + TimeManager timeManager = new TimeManager(currentDate); + assertNotNull(timeManager); + assertEquals(currentDate, timeManager.getCurrentDate()); + + assertEquals(timeManager.getCurrentDate().plusDays(2).getDate(), + timeManager.advanceTime(2).getDate()); + assertEquals(timeManager.getCurrentDate().plusDays(18).getDate(), + timeManager.advanceTime(18).getDate()); + assertNotEquals(timeManager.getCurrentDate().plusDays(2).getDate(), + timeManager.advanceTime(4).getDate()); + } + + /** + * Tests the constructor of the class TimeManager + */ + @Test + public void testTimeManagerConstructor() { + MakeItFitDate currentDate = MakeItFitDate.of(2021, 12, 1); + TimeManager timeManager = new TimeManager(currentDate); + assertNotNull(timeManager); + assertEquals(currentDate, timeManager.getCurrentDate()); + } + + /** + * Tests the advanceTime method of the class TimeManager + */ + @Test + public void testAdvanceTime() { + MakeItFitDate currentDate = MakeItFitDate.of(2021, 12, 1); + TimeManager timeManager = new TimeManager(currentDate); + assertNotNull(timeManager); + assertEquals(currentDate, timeManager.getCurrentDate()); + assertEquals(timeManager.getCurrentDate().plusDays(2).getDate(), + timeManager.advanceTime(2).getDate()); + assertEquals(timeManager.getCurrentDate().plusDays(18).getDate(), + timeManager.advanceTime(18).getDate()); + assertNotEquals(timeManager.getCurrentDate().plusDays(2).getDate(), + timeManager.advanceTime(4).getDate()); + } + + /** + * Tests the advanceTime method of the class TimeManager + */ + @Test + public void testAdvanceTimeInvalidInputs() { + MakeItFitDate currentDate = MakeItFitDate.of(2021, 12, 1); + TimeManager timeManager = new TimeManager(currentDate); + assertNotNull(timeManager); + assertThrows(IllegalArgumentException.class, () -> { timeManager.advanceTime(-1); }); + } +} diff --git a/src/oldunittests/java/MakeItFit/trainingPlan/TrainingPlanManagerTest.java b/src/oldunittests/java/MakeItFit/trainingPlan/TrainingPlanManagerTest.java new file mode 100644 index 0000000..b1a56a2 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/trainingPlan/TrainingPlanManagerTest.java @@ -0,0 +1,90 @@ + +import java.util.UUID; + +import MakeItFit.trainingPlan.TrainingPlan; +import MakeItFit.trainingPlan.TrainingPlanManager; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the TrainingPlanManager class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104100) + * @version (11052024) + */ +public class TrainingPlanManagerTest { + + /** + * Tests the creation of TrainingPlanManager instances using different constructors. + */ + @Test + public void testCreateTrainingPlan() { + UUID userCode = UUID.randomUUID(); + MakeItFitDate startDate = MakeItFitDate.of(2024, 4, 4); + + TrainingPlanManager manager = new TrainingPlanManager(); + TrainingPlan trainingPlan = manager.createTrainingPlan(userCode, startDate); + + assertNotNull(trainingPlan); + assertEquals(userCode, trainingPlan.getUserCode()); + assertEquals(startDate, trainingPlan.getStartDate()); + } + + /** + * Test the method createTrainingPlan with null inputs + */ + @Test + public void testCreateTrainingPlanWithNullInputs() { + TrainingPlanManager manager = new TrainingPlanManager(); + assertThrows(IllegalArgumentException.class, + () -> { manager.createTrainingPlan(null, MakeItFitDate.of(2024, 4, 4)); }); + + assertThrows(IllegalArgumentException.class, + () -> { manager.createTrainingPlan(UUID.randomUUID(), null); }); + } + + /** + * Test the method insertTrainingPlan with a null training plan + */ + @Test + public void testInsertTrainingPlanWithNullTrainingPlan() { + TrainingPlanManager manager = new TrainingPlanManager(); + assertThrows(IllegalArgumentException.class, () -> { manager.insertTrainingPlan(null); }); + } + + /** + * Test the method removeTrainingPlan with a valid training plan + */ + @Test + public void testRemoveTrainingPlan() { + UUID code = UUID.randomUUID(); + TrainingPlan trainingPlan = + new TrainingPlan(UUID.randomUUID(), MakeItFitDate.of(2024, 4, 4)); + + TrainingPlanManager manager = new TrainingPlanManager(); + manager.insertTrainingPlan(trainingPlan); + + manager.removeTrainingPlan(code); + + assertThrows(IllegalArgumentException.class, () -> { manager.getTrainingPlan(code); }); + } + + /** + * Test the method getAllTrainingPlans with a valid training plan + */ + @Test + public void testGetAllTrainingPlans() { + TrainingPlan trainingPlan1 = + new TrainingPlan(UUID.randomUUID(), MakeItFitDate.of(2024, 4, 4)); + TrainingPlan trainingPlan2 = + new TrainingPlan(UUID.randomUUID(), MakeItFitDate.of(2024, 4, 4)); + + TrainingPlanManager manager = new TrainingPlanManager(); + manager.insertTrainingPlan(trainingPlan1); + manager.insertTrainingPlan(trainingPlan2); + + assertEquals(2, manager.getAllTrainingPlans().size()); + } +} diff --git a/src/oldunittests/java/MakeItFit/trainingPlan/TrainingPlanTest.java b/src/oldunittests/java/MakeItFit/trainingPlan/TrainingPlanTest.java new file mode 100644 index 0000000..5e553f4 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/trainingPlan/TrainingPlanTest.java @@ -0,0 +1,134 @@ + + +import java.util.UUID; + +import MakeItFit.activities.implementation.PushUp; +import MakeItFit.trainingPlan.TrainingPlan; +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the TrainingPlan class. + * + * This class contains tests for the constructors, methods, and operations of the TrainingPlan + * class, including tests for construction, object equality, and getters. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104100) + * @version (11052024) + */ +public class TrainingPlanTest { + + /** + * Tests the TrainingPlan class constructors. + * + */ + @Test + public void testConstructors() { + UUID UUID_user = java.util.UUID.randomUUID(); + TrainingPlan trainingPlan1 = new TrainingPlan(UUID_user, MakeItFitDate.of(2024, 4, 4)); + assertNotNull(trainingPlan1); + TrainingPlan trainingPlan2 = new TrainingPlan(trainingPlan1); + assertNotNull(trainingPlan2); + } + + /** + * Tests the creation of TrainingPlan instances using different constructors. + * + */ + @Test + public void testTrainingPlanConstructors() { + UUID UUID_user = java.util.UUID.randomUUID(); + TrainingPlan trainingPlan1 = new TrainingPlan(UUID_user, MakeItFitDate.of(2024, 4, 4)); + assertNotNull(trainingPlan1, "TrainingPlan instance should be created successfully."); + + TrainingPlan trainingPlan2 = new TrainingPlan(trainingPlan1); + assertNotNull(trainingPlan2, "Copy constructor should create a non-null instance."); + assertEquals(trainingPlan1, + trainingPlan2, + "Copy constructor should create an equal instance."); + } + + /** + * Tests the getters of the TrainingPlan class. + */ + @Test + public void testTrainingPlanGetters() { + UUID UUID_user = java.util.UUID.randomUUID(); + MakeItFitDate startDate = MakeItFitDate.of(2024, 4, 4); + TrainingPlan trainingPlan = new TrainingPlan(UUID_user, startDate); + assertEquals(UUID_user, + trainingPlan.getUserCode(), + "User code should match the expected value."); + assertEquals(startDate, + trainingPlan.getStartDate(), + "Start date should match the expected value."); + } + + /** + * Tests the addActivity for TrainingPlan class. + * + */ + @Test + public void testTrainingPlanAddActivity() { + UUID UUID_user = java.util.UUID.randomUUID(); + MakeItFitDate startDate = MakeItFitDate.of(2024, 4, 4); + TrainingPlan trainingPlan = new TrainingPlan(UUID_user, startDate); + assertEquals(0, + trainingPlan.getActivities().size(), + "The activities list should be empty."); + + trainingPlan.addActivity(10, null); + assertEquals(1, + trainingPlan.getActivities().size(), + "The activities list should have one element."); + } + + /** + * Tests the removeActivity for TrainingPlan class. + * + */ + @Test + public void testTrainingPlanRemoveActivity() { + UUID UUID_user = java.util.UUID.randomUUID(); + MakeItFitDate startDate = MakeItFitDate.of(2024, 4, 4); + TrainingPlan trainingPlan = new TrainingPlan(UUID_user, startDate); + assertEquals(0, + trainingPlan.getActivities().size(), + "The activities list should be empty."); + + PushUp pushUp = new PushUp(UUID.randomUUID(), + MakeItFitDate.of(2024, 4, 4), + 30, + "Daily try", + "PushUp", + 10, + 10); + trainingPlan.addActivity(10, pushUp); + assertEquals(1, + trainingPlan.getActivities().size(), + "The activities list should have one element."); + + trainingPlan.removeActivity(pushUp.getCode()); + assertEquals(0, + trainingPlan.getActivities().size(), + "The activities list should be empty."); + } + + /** + * Tests the equals method for TrainingPlan instances. + * + */ + @Test + public void testTrainingPlanEquals() { + UUID UUID_user = java.util.UUID.randomUUID(); + TrainingPlan trainingPlan1 = new TrainingPlan(UUID_user, MakeItFitDate.of(2024, 4, 4)); + TrainingPlan trainingPlan2 = new TrainingPlan(UUID_user, MakeItFitDate.of(2024, 4, 4)); + assertNotEquals(trainingPlan1, null, "TrainingPlan instance should not be equal to null."); + + assertTrue( + trainingPlan1.equals(trainingPlan2), + "TrainingPlan instance should be equal to another instance with the same attributes."); + } +} diff --git a/src/oldunittests/java/MakeItFit/users/AmateurTest.java b/src/oldunittests/java/MakeItFit/users/AmateurTest.java new file mode 100644 index 0000000..2e219c0 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/users/AmateurTest.java @@ -0,0 +1,101 @@ +import MakeItFit.users.Gender; +import MakeItFit.users.types.Amateur; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * Tests for the Amateur class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class AmateurTest { + + /** + * Tests the Amateur class parameterized constructor. + */ + @Test + public void testParameterizedConstructors() { + Amateur user1 = new Amateur("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com"); + assertNotNull(user1); + assertEquals("José Fernandes", user1.getName()); + assertEquals(45, user1.getAge()); + assertEquals(Gender.Male, user1.getGender()); + assertEquals(75, user1.getWeight()); + assertEquals(175, user1.getHeight()); + assertEquals(67, user1.getBpm()); + assertEquals(6, user1.getLevel()); + assertEquals("Braga", user1.getAddress()); + assertEquals("990 000 000", user1.getPhone()); + assertEquals("josefernandes@mail.com", user1.getEmail()); + } + + /** + * Tests the Amateur class copy constructor. + */ + @Test + public void testCopyConstructors() { + Amateur user1 = new Amateur("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com"); + Amateur user2 = new Amateur(user1); + assertNotNull(user2); + assertEquals(user1.getName(), user2.getName()); + assertEquals(user1.getAge(), user2.getAge()); + assertEquals(user1.getGender(), user2.getGender()); + assertEquals(user1.getWeight(), user2.getWeight()); + assertEquals(user1.getHeight(), user2.getHeight()); + assertEquals(user1.getBpm(), user2.getBpm()); + assertEquals(user1.getLevel(), user2.getLevel()); + assertEquals(user1.getAddress(), user2.getAddress()); + assertEquals(user1.getPhone(), user2.getPhone()); + assertEquals(user1.getEmail(), user2.getEmail()); + } + + /** + * Tests the Amateur class method clone. + */ + @Test + public void testClone() { + Amateur user1 = new Amateur("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com"); + Amateur user2 = user1.clone(); + + assertNotSame(user1, user2); + assertEquals(user1.getName(), user2.getName()); + assertEquals(user1.getAge(), user2.getAge()); + assertEquals(user1.getGender(), user2.getGender()); + assertEquals(user1.getWeight(), user2.getWeight()); + assertEquals(user1.getHeight(), user2.getHeight()); + assertEquals(user1.getBpm(), user2.getBpm()); + assertEquals(user1.getLevel(), user2.getLevel()); + assertEquals(user1.getAddress(), user2.getAddress()); + assertEquals(user1.getPhone(), user2.getPhone()); + assertEquals(user1.getEmail(), user2.getEmail()); + } +} diff --git a/src/oldunittests/java/MakeItFit/users/OccasionalTest.java b/src/oldunittests/java/MakeItFit/users/OccasionalTest.java new file mode 100644 index 0000000..7f6d027 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/users/OccasionalTest.java @@ -0,0 +1,162 @@ +import MakeItFit.users.Gender; +import MakeItFit.users.types.Occasional; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * Tests for the Occasional class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class OccasionalTest { + /** + * Tests the Occasional class parameterized constructor. + */ + @Test + public void testParameterizedConstructor() { + Occasional user1 = new Occasional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + assertNotNull(user1, "The Occasional object should not be null"); + assertEquals(2, user1.getFrequency(), "The frequency should be set to 2"); + assertEquals("José Fernandes", user1.getName(), "The name should match the input"); + assertEquals(45, user1.getAge(), "The age should match the input"); + assertEquals(Gender.Male, user1.getGender(), "The gender should match the input"); + assertEquals(75, user1.getWeight(), "The weight should match the input"); + assertEquals(175, user1.getHeight(), "The height should match the input"); + assertEquals(67, user1.getBpm(), "The BPM should match the input"); + assertEquals(6, user1.getLevel(), "The level should match the input"); + assertEquals("Braga", user1.getAddress(), "The address should match the input"); + assertEquals("990 000 000", user1.getPhone(), "The phone number should match the input"); + assertEquals("josefernandes@mail.com", + user1.getEmail(), + "The email should match the input"); + } + + /** + * Tests the Occasional class copy constructor. + */ + @Test + public void testCopyConstructor() { + Occasional user1 = new Occasional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + Occasional user2 = new Occasional(user1); + assertNotNull(user2, "The copied Occasional object should not be null"); + assertEquals(user1.getFrequency(), + user2.getFrequency(), + "The frequency should be equal to the original"); + assertEquals(user1.getName(), user2.getName(), "The name should be equal to the original"); + assertEquals(user1.getAge(), user2.getAge(), "The age should be equal to the original"); + assertEquals(user1.getGender(), + user2.getGender(), + "The gender should be equal to the original"); + assertEquals(user1.getWeight(), + user2.getWeight(), + "The weight should be equal to the original"); + assertEquals(user1.getHeight(), + user2.getHeight(), + "The height should be equal to the original"); + assertEquals(user1.getBpm(), user2.getBpm(), "The BPM should be equal to the original"); + assertEquals(user1.getLevel(), + user2.getLevel(), + "The level should be equal to the original"); + assertEquals(user1.getAddress(), + user2.getAddress(), + "The address should be equal to the original"); + assertEquals(user1.getPhone(), + user2.getPhone(), + "The phone number should be equal to the original"); + assertEquals(user1.getEmail(), + user2.getEmail(), + "The email should be equal to the original"); + } + + /** + * Tests the Occasional class method getFrequency. + */ + @Test + public void testGetFrequency() { + Occasional user1 = new Occasional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + assertEquals(2, user1.getFrequency(), "The frequency should be 2"); + } + + /** + * Tests the Occasional class method setFrequency. + */ + @Test + public void testSetFrequency() { + Occasional user1 = new Occasional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + user1.setFrequency(4); + assertEquals(4, user1.getFrequency(), "The frequency should be updated to 4"); + } + + /** + * Tests the Occasional class method clone. + */ + @Test + public void testClone() { + Occasional user1 = new Occasional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + Occasional user2 = user1.clone(); + assertNotSame(user1, user2, "The clone should not reference the same object"); + assertEquals(user1.getName(), user2.getName(), "The name should match"); + assertEquals(user1.getAge(), user2.getAge(), "The age should match"); + assertEquals(user1.getGender(), user2.getGender(), "The gender should match"); + assertEquals(user1.getWeight(), user2.getWeight(), "The weight should match"); + assertEquals(user1.getHeight(), user2.getHeight(), "The height should match"); + assertEquals(user1.getBpm(), user2.getBpm(), "The BPM should match"); + assertEquals(user1.getLevel(), user2.getLevel(), "The level should match"); + assertEquals(user1.getAddress(), user2.getAddress(), "The address should match"); + assertEquals(user1.getPhone(), user2.getPhone(), "The phone number should match"); + assertEquals(user1.getEmail(), user2.getEmail(), "The email should match"); + assertEquals(user1.getFrequency(), user2.getFrequency(), "The frequency should match"); + } +} diff --git a/src/oldunittests/java/MakeItFit/users/ProfessionalTest.java b/src/oldunittests/java/MakeItFit/users/ProfessionalTest.java new file mode 100644 index 0000000..e999ac9 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/users/ProfessionalTest.java @@ -0,0 +1,191 @@ +import MakeItFit.users.Gender; +import MakeItFit.users.types.Professional; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the Professional class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class ProfessionalTest { + + /** + * Tests the constructor of the Professional class and object creation. + */ + @Test + public void testConstructor() { + Professional user = new Professional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + assertNotNull(user); + assertEquals("José Fernandes", user.getName()); + assertEquals(45, user.getAge()); + assertEquals(Gender.Male, user.getGender()); + assertEquals(75, user.getWeight()); + assertEquals(175, user.getHeight()); + assertEquals(67, user.getBpm()); + assertEquals(6, user.getLevel()); + assertEquals("Braga", user.getAddress()); + assertEquals("990 000 000", user.getPhone()); + assertEquals("josefernandes@mail.com", user.getEmail()); + assertEquals("No specialization", user.getSpecialization()); + assertEquals(2, user.getFrequency()); + } + + /** + * Tests the copy constructor of the Professional class. + */ + @Test + public void testCopyConstructor() { + Professional user1 = new Professional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + Professional user2 = new Professional(user1); + assertNotNull(user2); + assertEquals(user1.getName(), user2.getName()); + assertEquals(user1.getAge(), user2.getAge()); + assertEquals(user1.getGender(), user2.getGender()); + assertEquals(user1.getWeight(), user2.getWeight()); + assertEquals(user1.getHeight(), user2.getHeight()); + assertEquals(user1.getBpm(), user2.getBpm()); + assertEquals(user1.getLevel(), user2.getLevel()); + assertEquals(user1.getAddress(), user2.getAddress()); + assertEquals(user1.getPhone(), user2.getPhone()); + assertEquals(user1.getEmail(), user2.getEmail()); + assertEquals(user1.getSpecialization(), user2.getSpecialization()); + assertEquals(user1.getFrequency(), user2.getFrequency()); + } + + /** + * Tests the getSpecialization method. + */ + @Test + public void testGetSpecialization() { + Professional user = new Professional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + String specialization = user.getSpecialization(); + assertEquals("No specialization", specialization); + } + + /** + * Tests the setSpecialization method. + */ + @Test + public void testSetSpecialization() { + Professional user = new Professional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + user.setSpecialization("Running"); + assertEquals("Running", user.getSpecialization()); + } + + /** + * Tests the getFrequency method. + */ + @Test + public void testGetFrequency() { + Professional user = new Professional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + int frequency = user.getFrequency(); + assertEquals(2, frequency); + } + + /** + * Tests the setFrequency method. + */ + @Test + public void testSetFrequency() { + Professional user = new Professional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + user.setFrequency(4); + assertEquals(4, user.getFrequency()); + } + + /** + * Tests the clone method. + */ + @Test + public void testClone() { + Professional user = new Professional("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 2); + Professional clone = user.clone(); + + assertNotNull(clone); + assertNotSame(user, clone); + assertEquals(user.getName(), clone.getName()); + assertEquals(user.getAge(), clone.getAge()); + assertEquals(user.getGender(), clone.getGender()); + assertEquals(user.getWeight(), clone.getWeight()); + assertEquals(user.getHeight(), clone.getHeight()); + assertEquals(user.getBpm(), clone.getBpm()); + assertEquals(user.getLevel(), clone.getLevel()); + assertEquals(user.getAddress(), clone.getAddress()); + assertEquals(user.getPhone(), clone.getPhone()); + assertEquals(user.getEmail(), clone.getEmail()); + assertEquals(user.getSpecialization(), clone.getSpecialization()); + assertEquals(user.getFrequency(), clone.getFrequency()); + } +} diff --git a/src/oldunittests/java/MakeItFit/users/UserManagerTest.java b/src/oldunittests/java/MakeItFit/users/UserManagerTest.java new file mode 100644 index 0000000..4edc590 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/users/UserManagerTest.java @@ -0,0 +1,404 @@ +import java.util.*; + +import MakeItFit.exceptions.*; +import MakeItFit.users.*; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the UserManager class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class UserManagerTest { + + /** + * Tests the constructor of the class UserManager. + */ + @Test + public void testConstructor() { + UserManager userManager = new UserManager(); + assertNotNull(userManager); + } + + /** + * Tests the creation of a user with valid entries. + */ + @Test + public void testCreateUserValidInputs() { + UserManager userManager = new UserManager(); + User user = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + assertNotNull(user); + assertEquals("José Fernandes", user.getName()); + assertEquals(45, user.getAge()); + assertEquals(Gender.Male, user.getGender()); + assertEquals(75, user.getWeight()); + assertEquals(175, user.getHeight()); + assertEquals(67, user.getBpm()); + assertEquals(6, user.getLevel()); + assertEquals("Braga", user.getAddress()); + assertEquals("990 000 000", user.getPhone()); + assertEquals("josefernandes@mail.com", user.getEmail()); + } + + /** + * Tests the creation of a user with invalid entries. + */ + @Test + public void testCreateUserInvalidInputs() { + UserManager userManager = new UserManager(); + assertThrows(IllegalArgumentException.class, () -> { + userManager.createUser(null, + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + }); + assertThrows(IllegalArgumentException.class, () -> { + userManager.createUser("José Fernandes", + -1, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + }); + assertThrows(IllegalArgumentException.class, () -> { + userManager.createUser("José Fernandes", + 45, + Gender.Male, + -75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + }); + assertThrows(IllegalArgumentException.class, () -> { + userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + -175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + }); + assertThrows(IllegalArgumentException.class, () -> { + userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + -67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + }); + assertThrows(IllegalArgumentException.class, () -> { + userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + -6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + }); + } + + /** + * Tests the insertion of a valid user. + */ + @Test + public void testInsertUserValid() { + UserManager userManager = new UserManager(); + User user = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + userManager.insertUser(user); + assertNotNull(userManager.getUserByCode(user.getCode())); + } + + /** + * Tests the insertion of a user with an email that already exists. + */ + @Test + public void testInsertUserDuplicateEmail() { + UserManager userManager = new UserManager(); + User user1 = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + userManager.insertUser(user1); + User user2 = userManager.createUser("António Silva", + 25, + Gender.Male, + 95, + 198, + 72, + 9, + "Lisboa", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + assertThrows(ExistingEntityConflictException.class, + () -> { userManager.insertUser(user2); }); + } + + /** + * Tests the removal of a valid user. + */ + @Test + public void testRemoveUser() { + UserManager userManager = new UserManager(); + User user = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + userManager.insertUser(user); + userManager.removeUserByCode(user.getCode()); + assertThrows(EntityDoesNotExistException.class, + () -> { userManager.getUserByCode(user.getCode()); }); + } + + /** + * Tests the removal of a non-existing user. + */ + @Test + public void testRemoveNonExistingUser() { + UserManager userManager = new UserManager(); + UUID invalidCode = UUID.randomUUID(); + assertThrows(EntityDoesNotExistException.class, + () -> { userManager.removeUserByCode(invalidCode); }); + } + + /** + * Tests the verification of existence of a user by using his email. + */ + @Test + public void testExistsUserWithEmail() { + UserManager userManager = new UserManager(); + User user = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + userManager.insertUser(user); + assertTrue(userManager.existsUserWithEmail("josefernandes@mail.com")); + assertFalse(userManager.existsUserWithEmail("antoniosilva@mail.com")); + } + + /** + * Tests the verification of existence of a user by using his code. + */ + @Test + public void testGetUserByCode() { + UserManager userManager = new UserManager(); + User user = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + userManager.insertUser(user); + assertNotNull(userManager.getUserByCode(user.getCode())); + } + + /** + * Tests the retrieve of a user by his email. + */ + @Test + public void testGetUserByEmail() { + UserManager userManager = new UserManager(); + User user = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + userManager.insertUser(user); + assertNotNull(userManager.getUserByEmail(user.getEmail())); + } + + /** + * Tests the update of an existing user. + */ + @Test + public void testUpdateUser() { + UserManager userManager = new UserManager(); + User user = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + userManager.insertUser(user); + user.setAge(34); + user.setLevel(5); + userManager.updateUser(user); + User updatedUser = userManager.getUserByCode(user.getCode()); + assertNotNull(updatedUser); + assertEquals(34, updatedUser.getAge()); + assertEquals(5, updatedUser.getLevel()); + } + + /** + * Tests the update of a non-existing user. + */ + @Test + public void testUpdateNonExistingUser() { + UserManager userManager = new UserManager(); + User user = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + assertThrows(EntityDoesNotExistException.class, () -> { userManager.updateUser(user); }); + } + + /** + * Tests the retrieve of all the users. + */ + @Test + public void testGetAllUsers() { + UserManager userManager = new UserManager(); + User user1 = userManager.createUser("José Fernandes", + 45, + Gender.Male, + 75, + 175, + 67, + 6, + "Braga", + "990 000 000", + "josefernandes@mail.com", + 7, + "Professional"); + User user2 = userManager.createUser("António Silva", + 25, + Gender.Male, + 95, + 198, + 72, + 9, + "Lisboa", + "990 000 000", + "antoniosilva@mail.com", + 7, + "Professional"); + userManager.insertUser(user1); + userManager.insertUser(user2); + List allUsers = userManager.getAllUsers(); + assertEquals(2, allUsers.size()); + assertTrue(allUsers.contains(user1)); + assertTrue(allUsers.contains(user2)); + } + + /** + * Tests the retrieve of all the users when the list is empty. + */ + @Test + public void testGetAllUsersEmpty() { + UserManager userManager = new UserManager(); + List allUsers = userManager.getAllUsers(); + assertTrue(allUsers.isEmpty()); + } +} diff --git a/src/oldunittests/java/MakeItFit/utils/EmailValidatorTest.java b/src/oldunittests/java/MakeItFit/utils/EmailValidatorTest.java new file mode 100644 index 0000000..6b7d7c5 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/utils/EmailValidatorTest.java @@ -0,0 +1,30 @@ +package MakeItFit.utils; + +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the EmailValidator class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class EmailValidatorTest { + + /** + * Tests the EmailValidator class method isValid. + */ + @Test + public void testIsValid() { + assertTrue(EmailValidator.isValidEmail("jonh@mail.com")); + assertTrue(EmailValidator.isValidEmail("erica@gmail.com")); + assertFalse(EmailValidator.isValidEmail("jonhmail.com")); + assertFalse(EmailValidator.isValidEmail("erica@gmailcom")); + assertFalse(EmailValidator.isValidEmail("jonh@mailcom")); + assertFalse(EmailValidator.isValidEmail("ericagmail.com")); + assertFalse(EmailValidator.isValidEmail("jonhmailcom")); + assertFalse(EmailValidator.isValidEmail("ericagmailcom")); + } +} diff --git a/src/oldunittests/java/MakeItFit/utils/MakeItFitDateTest.java b/src/oldunittests/java/MakeItFit/utils/MakeItFitDateTest.java new file mode 100644 index 0000000..c53b5f6 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/utils/MakeItFitDateTest.java @@ -0,0 +1,77 @@ +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the MakeItFitDate class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MakeItFitDateTest { + + /** + * Tests the MakeItFitDate essential methods. + */ + @Test + public void distanceTest() { + MakeItFitDate date1 = MakeItFitDate.of(2021, 12, 1); + assertNotNull(date1); + assertEquals(date1.getDayOfMonth(), 1); + assertEquals(date1.getMonth(), 12); + assertEquals(date1.getYear(), 2021); + MakeItFitDate date2 = MakeItFitDate.fromString("10/12/2021"); + assertNotNull(date2); + assertEquals(date2.getDayOfMonth(), 10); + assertEquals(date2.getMonth(), 12); + assertEquals(date2.getYear(), 2021); + assertEquals(date1.distance(date2), 9); + } + + /** + * Tests the MakeItFitDate essential methods. + */ + @Test + public void testToString() { + MakeItFitDate date1 = MakeItFitDate.of(2021, 12, 1); + assertNotNull(date1); + assertEquals(date1.toString(), "01/12/2021"); + } + + /** + * Tests the MakeItFitDate essential methods. + */ + @Test + public void equals() { + MakeItFitDate date1 = MakeItFitDate.of(2021, 12, 1); + MakeItFitDate date2 = MakeItFitDate.of(2021, 12, 1); + MakeItFitDate date3 = MakeItFitDate.of(2021, 12, 2); + MakeItFitDate date4 = MakeItFitDate.of(2021, 11, 1); + MakeItFitDate date5 = MakeItFitDate.of(2020, 12, 1); + MakeItFitDate date6 = MakeItFitDate.of(2021, 12, 1); + assertEquals(date1, date2); + assertNotEquals(date1, date3); + assertNotEquals(date1, date4); + assertNotEquals(date1, date5); + assertEquals(date1, date6); + } + + /** + * Tests the MakeItFitDate essential methods. + */ + @Test + public void compareTo() { + MakeItFitDate date1 = MakeItFitDate.of(2021, 12, 1); + MakeItFitDate date2 = MakeItFitDate.of(2021, 12, 1); + MakeItFitDate date3 = MakeItFitDate.of(2021, 12, 2); + MakeItFitDate date4 = MakeItFitDate.of(2021, 11, 1); + MakeItFitDate date5 = MakeItFitDate.of(2020, 12, 1); + MakeItFitDate date6 = MakeItFitDate.of(2021, 12, 1); + assertEquals(date1.compareTo(date2), 0); + assertEquals(date1.compareTo(date3), -1); + assertEquals(date1.compareTo(date4), 1); + assertEquals(date1.compareTo(date5), 1); + assertEquals(date1.compareTo(date6), 0); + } +} diff --git a/src/oldunittests/java/MakeItFit/utils/MyTupleTest.java b/src/oldunittests/java/MakeItFit/utils/MyTupleTest.java new file mode 100644 index 0000000..03cdbc2 --- /dev/null +++ b/src/oldunittests/java/MakeItFit/utils/MyTupleTest.java @@ -0,0 +1,61 @@ +package MakeItFit.utils; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * The tests for the EmailValidator class. + * + * @author Afonso Santos (a104276), Hélder Gomes (a104100) and Pedro Pereira (a104082) + * @version (11052024) + */ +public class MyTupleTest { + + /** + * Tests the MyTuple essential methods. + */ + @Test + public void testMyTuple() { + MyTuple tuple = new MyTuple<>(1, "test"); + assertNotNull(tuple); + assertEquals(tuple.getItem1(), 1); + assertEquals(tuple.getItem2(), "test"); + assertEquals(tuple.toString(), "(1, test)"); + } + + /** + * Tests the MyTuple essential methods. + */ + @Test + public void testEquals() { + MyTuple tuple1 = new MyTuple<>(1, "test"); + MyTuple tuple2 = new MyTuple<>(1, "test"); + MyTuple tuple3 = new MyTuple<>(2, "test"); + MyTuple tuple4 = new MyTuple<>(1, "test2"); + MyTuple tuple5 = new MyTuple<>(2, "test2"); + MyTuple tuple6 = new MyTuple<>(1, "test"); + assertEquals(tuple1, tuple2); + assertNotEquals(tuple1, tuple3); + assertNotEquals(tuple1, tuple4); + assertNotEquals(tuple1, tuple5); + assertEquals(tuple1, tuple6); + } + + /** + * Tests the MyTuple essential methods. + */ + @Test + public void testGetItem1() { + MyTuple tuple = new MyTuple<>(1, "test"); + assertEquals(tuple.getItem1(), 1); + } + + /** + * Tests the MyTuple essential methods. + */ + @Test + public void testGetItem2() { + MyTuple tuple = new MyTuple<>(1, "test"); + assertEquals(tuple.getItem2(), "test"); + } +} diff --git a/src/unittests/java/MakeItFit/utils/EmailValidatorTest.java b/src/unittests/java/MakeItFit/utils/EmailValidatorTest.java new file mode 100644 index 0000000..1a7605a --- /dev/null +++ b/src/unittests/java/MakeItFit/utils/EmailValidatorTest.java @@ -0,0 +1,13 @@ +package MakeItFit.utils; + +import MakeItFit.utils.MakeItFitDate; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +public class EmailValidatorTest { + @Test + public void testValid() { + assertTrue(EmailValidator.isValidEmail("jonh@mail.com")); + } +}