diff --git a/src/main/java/local/epul4a/fotosharing/controller/PhotoController.java b/src/main/java/local/epul4a/fotosharing/controller/PhotoController.java index 22f0c46..7ba5bf6 100644 --- a/src/main/java/local/epul4a/fotosharing/controller/PhotoController.java +++ b/src/main/java/local/epul4a/fotosharing/controller/PhotoController.java @@ -51,7 +51,7 @@ public class PhotoController { @PostMapping("/upload") public String doUpload(@RequestParam("file") MultipartFile file, - @RequestParam(value="visibilite", defaultValue = "PRIVATE") String visibilite, + @RequestParam(value = "visibilite", defaultValue = "PRIVATE") String visibilite, Authentication authentication, Model model) { try { @@ -82,7 +82,8 @@ public class PhotoController { String contentType = "application/octet-stream"; try { contentType = Files.probeContentType(p); - } catch (Exception ignored) {} + } catch (Exception ignored) { + } return ResponseEntity.ok() .contentType(MediaType.parseMediaType(contentType)) @@ -92,14 +93,27 @@ public class PhotoController { } @GetMapping("/mes-photos") - public String mesPhotos(Model model, Authentication auth) { + public String mesPhotos( + @RequestParam(name = "pagePrivees", defaultValue = "0") int pagePrivees, + @RequestParam(name = "pagePubliques", defaultValue = "0") int pagePubliques, + @RequestParam(name = "pagePartagees", defaultValue = "0") int pagePartagees, + Model model, + Authentication auth + ) { String email = auth.getName(); - model.addAttribute("photosPrivees", photoService.listPrivatePhotos(email)); - model.addAttribute("photosPubliques", photoService.listPublicPhotos(email)); - model.addAttribute("photosPartagees", photoService.listSharedWith(email)); + // Chaque liste utilise sa propre pagination + model.addAttribute("photosPrivees", photoService.listPrivatePhotos(email, pagePrivees, 12)); + model.addAttribute("photosPubliques", photoService.listPublicPhotos(email, pagePubliques, 12)); + model.addAttribute("photosPartagees", photoService.listSharedWith(email, pagePartagees, 12)); + + // Ajouter les 3 index séparés + model.addAttribute("pagePrivees", pagePrivees); + model.addAttribute("pagePubliques", pagePubliques); + model.addAttribute("pagePartagees", pagePartagees); return "mes-photos"; } + @GetMapping("/galerie") public String galerie(@RequestParam(defaultValue = "0") int page, Model model) { Page photosPage = photoService.listPublic(page, 12); @@ -112,28 +126,28 @@ public class PhotoController { @GetMapping("/photo/{id}") @PreAuthorize("@securityService.canAccessPhoto(authentication, #id)") public String viewPhoto(@PathVariable Long id, + @RequestParam(defaultValue = "0") int page, Model model, Authentication auth) { - Photo photo = photoRepository.findById(id).orElse(null); if (photo == null) { return "redirect:/galerie"; } - model.addAttribute("photo", photo); - model.addAttribute("commentaires", commentaireService.listByPhoto(id)); - - // utilisateur connecté (peut être null si visiteur) + // Pagination des commentaires + model.addAttribute("commentairesPage", + commentaireService.listByPhoto(id, page, 10)); + model.addAttribute("currentPage", page); + // utilisateur connecté (peut être null) String currentUser = (auth != null ? auth.getName() : null); model.addAttribute("currentUser", currentUser); - // Liste des partages List partages = partageRepository.findByPhoto_Id(id); model.addAttribute("partages", partages); - return "photo-detail"; } + @PostMapping("/photo/{id}/comment") public String addComment(@PathVariable Long id, @RequestParam String contenu, diff --git a/src/main/java/local/epul4a/fotosharing/repository/CommentaireRepository.java b/src/main/java/local/epul4a/fotosharing/repository/CommentaireRepository.java index bd75032..bcf077e 100644 --- a/src/main/java/local/epul4a/fotosharing/repository/CommentaireRepository.java +++ b/src/main/java/local/epul4a/fotosharing/repository/CommentaireRepository.java @@ -1,11 +1,15 @@ package local.epul4a.fotosharing.repository; import local.epul4a.fotosharing.model.Commentaire; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import java.util.List; public interface CommentaireRepository extends JpaRepository { List findByPhoto_IdOrderByDateCommentaireAsc(Long photoId); + Page findByPhoto_Id(Long photoId, Pageable pageable); + } diff --git a/src/main/java/local/epul4a/fotosharing/repository/PhotoRepository.java b/src/main/java/local/epul4a/fotosharing/repository/PhotoRepository.java index a7bd93a..baa185e 100644 --- a/src/main/java/local/epul4a/fotosharing/repository/PhotoRepository.java +++ b/src/main/java/local/epul4a/fotosharing/repository/PhotoRepository.java @@ -11,5 +11,16 @@ public interface PhotoRepository extends JpaRepository { List findByProprietaire_Email(String email); List findByVisibilite(Photo.Visibilite visibilite); Page findByVisibilite(Photo.Visibilite visibilite, Pageable pageable); + Page findByProprietaire_Email(String email, Pageable pageable); + Page findByProprietaire_EmailAndVisibilite( + String email, + Photo.Visibilite visibilite, + Pageable pageable + ); + Page findByVisibiliteAndProprietaire_Email( + Photo.Visibilite visibilite, + String email, + Pageable pageable + ); } \ No newline at end of file diff --git a/src/main/java/local/epul4a/fotosharing/service/CommentaireService.java b/src/main/java/local/epul4a/fotosharing/service/CommentaireService.java index b186355..84d4dff 100644 --- a/src/main/java/local/epul4a/fotosharing/service/CommentaireService.java +++ b/src/main/java/local/epul4a/fotosharing/service/CommentaireService.java @@ -1,9 +1,13 @@ package local.epul4a.fotosharing.service; import local.epul4a.fotosharing.model.Commentaire; +import org.springframework.data.domain.Page; + import java.util.List; public interface CommentaireService { List listByPhoto(Long photoId); void addComment(Long photoId, String email, String contenu); + Page listByPhoto(Long photoId, int page, int size); + } diff --git a/src/main/java/local/epul4a/fotosharing/service/PhotoService.java b/src/main/java/local/epul4a/fotosharing/service/PhotoService.java index 1a8db91..6d41696 100644 --- a/src/main/java/local/epul4a/fotosharing/service/PhotoService.java +++ b/src/main/java/local/epul4a/fotosharing/service/PhotoService.java @@ -17,6 +17,10 @@ public interface PhotoService { List listPublicPhotos(String email); void unshare(Long photoId, String email); Page listPublic(int page, int size); + Page listPrivatePhotos(String email, int page, int size); + Page listPublicPhotos(String email, int page, int size); + Page listSharedWith(String email, int page, int size); + diff --git a/src/main/java/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.java b/src/main/java/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.java index 12c21d7..bb9b5b2 100644 --- a/src/main/java/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.java +++ b/src/main/java/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.java @@ -7,6 +7,9 @@ import local.epul4a.fotosharing.repository.CommentaireRepository; import local.epul4a.fotosharing.repository.PhotoRepository; import local.epul4a.fotosharing.repository.UtilisateurRepository; import local.epul4a.fotosharing.service.CommentaireService; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; import java.time.LocalDateTime; @@ -47,4 +50,10 @@ public class CommentaireServiceImpl implements CommentaireService { commentaireRepository.save(c); } + @Override + public Page listByPhoto(Long photoId, int page, int size) { + Pageable pageable = PageRequest.of(page, size); + return commentaireRepository.findByPhoto_Id(photoId, pageable); + } + } diff --git a/src/main/java/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.java b/src/main/java/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.java index 94e0985..789053d 100644 --- a/src/main/java/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.java +++ b/src/main/java/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.java @@ -9,6 +9,7 @@ import local.epul4a.fotosharing.repository.UtilisateurRepository; import local.epul4a.fotosharing.service.PhotoService; import org.springframework.beans.factory.annotation.Value; import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageImpl; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; @@ -115,5 +116,35 @@ public class PhotoServiceImpl implements PhotoService { return photoRepository.findByVisibilite(Photo.Visibilite.PUBLIC, pageable); } + @Override + public Page listPrivatePhotos(String email, int page, int size) { + Pageable pageable = PageRequest.of(page, size); + return photoRepository.findByProprietaire_EmailAndVisibilite( + email, + Photo.Visibilite.PRIVATE, + pageable + ); + } + + @Override + public Page listPublicPhotos(String email, int page, int size) { + Pageable pageable = PageRequest.of(page, size); + return photoRepository.findByProprietaire_EmailAndVisibilite( + email, + Photo.Visibilite.PUBLIC, + pageable + ); + } + + @Override + public Page listSharedWith(String email, int page, int size) { + List partages = partageRepository.findByUtilisateur_Email(email); + List photos = partages.stream().map(Partage::getPhoto).toList(); + // convertir list en page manuellement + int start = page * size; + int end = Math.min(start + size, photos.size()); + List sublist = photos.subList(start, end); + return new PageImpl<>(sublist, PageRequest.of(page, size), photos.size()); + } } diff --git a/src/main/resources/templates/mes-photos.html b/src/main/resources/templates/mes-photos.html index 01cab91..cb83708 100644 --- a/src/main/resources/templates/mes-photos.html +++ b/src/main/resources/templates/mes-photos.html @@ -12,31 +12,51 @@

Vous n'avez pas encore de photos.

Mes photos privées

-
    -
  • - - [PRIVÉE] -
  • -
+ +
+ + + +
+

Mes photos publiques

-
    -
  • - - [PUBLIQUE] -
  • -
+ +
+ + + + +

Photos partagées avec moi

-
    -
  • - - [SHARED] -
  • -
+ +
+ + + +

Galerie publique

diff --git a/src/main/resources/templates/photo-detail.html b/src/main/resources/templates/photo-detail.html index fdc6fb8..7ad65a6 100644 --- a/src/main/resources/templates/photo-detail.html +++ b/src/main/resources/templates/photo-detail.html @@ -53,16 +53,20 @@

Commentaires

-
-

Aucun commentaire pour l'instant.

-
-
    -
  • - Auteur : +
    +

    + - () -

  • -
+

+ +
+ + + +
+

Ajouter un commentaire

diff --git a/target/FotoSharing-0.0.1-SNAPSHOT.war b/target/FotoSharing-0.0.1-SNAPSHOT.war deleted file mode 100644 index 5a6edd3..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT.war and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT.war.original b/target/FotoSharing-0.0.1-SNAPSHOT.war.original deleted file mode 100644 index 0d17ca6..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT.war.original and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/application.properties b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/application.properties deleted file mode 100644 index a5a0b68..0000000 --- a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/application.properties +++ /dev/null @@ -1,17 +0,0 @@ -spring.application.name=FotoSharing - -# =============================== -# DATABASE -# =============================== -spring.datasource.url=jdbc:mariadb://192.168.124.171:3306/fotoshareDB -spring.datasource.username=ufoto -spring.datasource.password=4AinfoRep-25 -# =============================== -# JPA / HIBERNATE -# =============================== -spring.jpa.hibernate.ddl-auto=update -spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MariaDBDialect -spring.jpa.show-sql=true -spring.thymeleaf.prefix=classpath:/templates/ -spring.thymeleaf.suffix=.html -spring.thymeleaf.mode=HTML diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/local/epul4a/fotosharing/FotoSharingApplication.class b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/local/epul4a/fotosharing/FotoSharingApplication.class deleted file mode 100644 index 74916bb..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/local/epul4a/fotosharing/FotoSharingApplication.class and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/templates/index.html b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/templates/index.html deleted file mode 100644 index 5c3632a..0000000 --- a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/classes/templates/index.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - FotoSharing Title! - - -

FotoSharing Title!

- - \ No newline at end of file diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/HdrHistogram-2.2.2.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/HdrHistogram-2.2.2.jar deleted file mode 100644 index 92697e5..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/HdrHistogram-2.2.2.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/HikariCP-7.0.2.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/HikariCP-7.0.2.jar deleted file mode 100644 index d165106..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/HikariCP-7.0.2.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/LatencyUtils-2.0.3.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/LatencyUtils-2.0.3.jar deleted file mode 100644 index e7251b7..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/LatencyUtils-2.0.3.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/angus-activation-2.0.3.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/angus-activation-2.0.3.jar deleted file mode 100644 index 361060a..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/angus-activation-2.0.3.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/antlr4-runtime-4.13.2.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/antlr4-runtime-4.13.2.jar deleted file mode 100644 index 350c1d0..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/antlr4-runtime-4.13.2.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/aspectjweaver-1.9.25.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/aspectjweaver-1.9.25.jar deleted file mode 100644 index 8d2ac20..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/aspectjweaver-1.9.25.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/attoparser-2.0.7.RELEASE.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/attoparser-2.0.7.RELEASE.jar deleted file mode 100644 index 16161b2..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/attoparser-2.0.7.RELEASE.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/byte-buddy-1.17.8.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/byte-buddy-1.17.8.jar deleted file mode 100644 index 7cca201..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/byte-buddy-1.17.8.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/classmate-1.7.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/classmate-1.7.1.jar deleted file mode 100644 index 8a79a7c..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/classmate-1.7.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/commons-logging-1.3.5.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/commons-logging-1.3.5.jar deleted file mode 100644 index 75d93a1..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/commons-logging-1.3.5.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/hibernate-core-7.1.8.Final.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/hibernate-core-7.1.8.Final.jar deleted file mode 100644 index ba14a2a..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/hibernate-core-7.1.8.Final.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/hibernate-models-1.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/hibernate-models-1.0.1.jar deleted file mode 100644 index a213a14..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/hibernate-models-1.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/istack-commons-runtime-4.1.2.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/istack-commons-runtime-4.1.2.jar deleted file mode 100644 index d1a642b..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/istack-commons-runtime-4.1.2.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-annotations-2.20.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-annotations-2.20.jar deleted file mode 100644 index ae5ba4e..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-annotations-2.20.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-core-3.0.2.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-core-3.0.2.jar deleted file mode 100644 index d97a6a6..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-core-3.0.2.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-databind-3.0.2.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-databind-3.0.2.jar deleted file mode 100644 index c6704b7..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jackson-databind-3.0.2.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.activation-api-2.1.4.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.activation-api-2.1.4.jar deleted file mode 100644 index 63caeb8..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.activation-api-2.1.4.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.annotation-api-3.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.annotation-api-3.0.0.jar deleted file mode 100644 index 34c1d43..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.annotation-api-3.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.inject-api-2.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.inject-api-2.0.1.jar deleted file mode 100644 index a92e099..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.inject-api-2.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.persistence-api-3.2.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.persistence-api-3.2.0.jar deleted file mode 100644 index e813f2b..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.persistence-api-3.2.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.transaction-api-2.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.transaction-api-2.0.1.jar deleted file mode 100644 index b1e7da4..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.transaction-api-2.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.xml.bind-api-4.0.4.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.xml.bind-api-4.0.4.jar deleted file mode 100644 index d893d5e..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jakarta.xml.bind-api-4.0.4.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jaxb-core-4.0.6.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jaxb-core-4.0.6.jar deleted file mode 100644 index 205c086..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jaxb-core-4.0.6.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jaxb-runtime-4.0.6.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jaxb-runtime-4.0.6.jar deleted file mode 100644 index 0fa2863..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jaxb-runtime-4.0.6.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jboss-logging-3.6.1.Final.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jboss-logging-3.6.1.Final.jar deleted file mode 100644 index 6bb6f7f..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jboss-logging-3.6.1.Final.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jspecify-1.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jspecify-1.0.0.jar deleted file mode 100644 index 466b875..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jspecify-1.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jul-to-slf4j-2.0.17.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jul-to-slf4j-2.0.17.jar deleted file mode 100644 index 66c0a7b..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/jul-to-slf4j-2.0.17.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/log4j-api-2.25.2.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/log4j-api-2.25.2.jar deleted file mode 100644 index b6255e6..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/log4j-api-2.25.2.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/log4j-to-slf4j-2.25.2.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/log4j-to-slf4j-2.25.2.jar deleted file mode 100644 index bbf9bc3..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/log4j-to-slf4j-2.25.2.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/logback-classic-1.5.21.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/logback-classic-1.5.21.jar deleted file mode 100644 index 67b2117..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/logback-classic-1.5.21.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/logback-core-1.5.21.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/logback-core-1.5.21.jar deleted file mode 100644 index 1fa1399..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/logback-core-1.5.21.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/mariadb-java-client-3.5.6.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/mariadb-java-client-3.5.6.jar deleted file mode 100644 index 447793c..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/mariadb-java-client-3.5.6.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-commons-1.16.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-commons-1.16.0.jar deleted file mode 100644 index ffc3d79..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-commons-1.16.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-core-1.16.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-core-1.16.0.jar deleted file mode 100644 index c2857b2..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-core-1.16.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-jakarta9-1.16.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-jakarta9-1.16.0.jar deleted file mode 100644 index 7ed0046..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-jakarta9-1.16.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-observation-1.16.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-observation-1.16.0.jar deleted file mode 100644 index 1ebbfd3..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/micrometer-observation-1.16.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/slf4j-api-2.0.17.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/slf4j-api-2.0.17.jar deleted file mode 100644 index 26b1545..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/slf4j-api-2.0.17.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/snakeyaml-2.5.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/snakeyaml-2.5.jar deleted file mode 100644 index 8186451..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/snakeyaml-2.5.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-aop-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-aop-7.0.1.jar deleted file mode 100644 index 66b6919..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-aop-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-aspects-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-aspects-7.0.1.jar deleted file mode 100644 index 3be32d2..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-aspects-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-beans-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-beans-7.0.1.jar deleted file mode 100644 index 8b600a3..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-beans-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-4.0.0.jar deleted file mode 100644 index 1381ee7..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-actuator-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-actuator-4.0.0.jar deleted file mode 100644 index 2239d76..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-actuator-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-actuator-autoconfigure-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-actuator-autoconfigure-4.0.0.jar deleted file mode 100644 index c0850d4..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-actuator-autoconfigure-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-autoconfigure-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-autoconfigure-4.0.0.jar deleted file mode 100644 index fee91d1..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-autoconfigure-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-data-commons-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-data-commons-4.0.0.jar deleted file mode 100644 index 357d2de..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-data-commons-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-data-jpa-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-data-jpa-4.0.0.jar deleted file mode 100644 index 54da6c4..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-data-jpa-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-health-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-health-4.0.0.jar deleted file mode 100644 index b9b01ec..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-health-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-hibernate-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-hibernate-4.0.0.jar deleted file mode 100644 index 2612ba0..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-hibernate-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-http-converter-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-http-converter-4.0.0.jar deleted file mode 100644 index 957e136..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-http-converter-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jackson-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jackson-4.0.0.jar deleted file mode 100644 index 5bc5a4e..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jackson-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jdbc-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jdbc-4.0.0.jar deleted file mode 100644 index 3961f64..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jdbc-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jpa-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jpa-4.0.0.jar deleted file mode 100644 index 3137fa8..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-jpa-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-micrometer-metrics-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-micrometer-metrics-4.0.0.jar deleted file mode 100644 index a0f3be6..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-micrometer-metrics-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-micrometer-observation-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-micrometer-observation-4.0.0.jar deleted file mode 100644 index 5b375b7..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-micrometer-observation-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-persistence-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-persistence-4.0.0.jar deleted file mode 100644 index 2172e48..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-persistence-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-servlet-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-servlet-4.0.0.jar deleted file mode 100644 index d7d9ff9..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-servlet-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-sql-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-sql-4.0.0.jar deleted file mode 100644 index 08524a4..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-sql-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-4.0.0.jar deleted file mode 100644 index 9055981..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-actuator-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-actuator-4.0.0.jar deleted file mode 100644 index 3367842..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-actuator-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-data-jpa-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-data-jpa-4.0.0.jar deleted file mode 100644 index 3abdf63..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-data-jpa-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-jackson-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-jackson-4.0.0.jar deleted file mode 100644 index 6efee3a..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-jackson-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-jdbc-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-jdbc-4.0.0.jar deleted file mode 100644 index 81de08f..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-jdbc-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-logging-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-logging-4.0.0.jar deleted file mode 100644 index 848cff0..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-logging-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-micrometer-metrics-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-micrometer-metrics-4.0.0.jar deleted file mode 100644 index 00b3d7c..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-micrometer-metrics-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-thymeleaf-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-thymeleaf-4.0.0.jar deleted file mode 100644 index c025306..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-thymeleaf-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-web-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-web-4.0.0.jar deleted file mode 100644 index 956a674..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-starter-web-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-thymeleaf-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-thymeleaf-4.0.0.jar deleted file mode 100644 index 5af8073..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-thymeleaf-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-transaction-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-transaction-4.0.0.jar deleted file mode 100644 index 75f14a0..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-transaction-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-webmvc-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-webmvc-4.0.0.jar deleted file mode 100644 index d4e5cbe..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-boot-webmvc-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-context-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-context-7.0.1.jar deleted file mode 100644 index e343f29..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-context-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-core-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-core-7.0.1.jar deleted file mode 100644 index cd00c35..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-core-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-data-commons-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-data-commons-4.0.0.jar deleted file mode 100644 index 798a996..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-data-commons-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-data-jpa-4.0.0.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-data-jpa-4.0.0.jar deleted file mode 100644 index b401286..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-data-jpa-4.0.0.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-expression-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-expression-7.0.1.jar deleted file mode 100644 index ab74c70..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-expression-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-jdbc-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-jdbc-7.0.1.jar deleted file mode 100644 index 5f091a1..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-jdbc-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-orm-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-orm-7.0.1.jar deleted file mode 100644 index e53c4b0..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-orm-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-tx-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-tx-7.0.1.jar deleted file mode 100644 index ab41430..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-tx-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-web-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-web-7.0.1.jar deleted file mode 100644 index 4f68c51..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-web-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-webmvc-7.0.1.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-webmvc-7.0.1.jar deleted file mode 100644 index 2642cf5..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/spring-webmvc-7.0.1.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/thymeleaf-3.1.3.RELEASE.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/thymeleaf-3.1.3.RELEASE.jar deleted file mode 100644 index cb775f6..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/thymeleaf-3.1.3.RELEASE.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/thymeleaf-spring6-3.1.3.RELEASE.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/thymeleaf-spring6-3.1.3.RELEASE.jar deleted file mode 100644 index fa23a40..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/thymeleaf-spring6-3.1.3.RELEASE.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/txw2-4.0.6.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/txw2-4.0.6.jar deleted file mode 100644 index 5cc1cb8..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/txw2-4.0.6.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/unbescape-1.1.6.RELEASE.jar b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/unbescape-1.1.6.RELEASE.jar deleted file mode 100644 index 10e4da5..0000000 Binary files a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/lib/unbescape-1.1.6.RELEASE.jar and /dev/null differ diff --git a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/web.xml b/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/web.xml deleted file mode 100644 index d603b34..0000000 --- a/target/FotoSharing-0.0.1-SNAPSHOT/WEB-INF/web.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - FotoSharing - - - - spring_web - - - - diff --git a/target/classes/application.properties b/target/classes/application.properties index e4ec83b..0a16440 100644 --- a/target/classes/application.properties +++ b/target/classes/application.properties @@ -1,4 +1,7 @@ spring.application.name=FotoSharing +spring.jmx.enabled=false +management.endpoints.jmx.exposure.exclude=* + # =============================== # DATABASE diff --git a/target/classes/local/epul4a/fotosharing/controller/PhotoController.class b/target/classes/local/epul4a/fotosharing/controller/PhotoController.class index 2a2b365..5be10de 100644 Binary files a/target/classes/local/epul4a/fotosharing/controller/PhotoController.class and b/target/classes/local/epul4a/fotosharing/controller/PhotoController.class differ diff --git a/target/classes/local/epul4a/fotosharing/repository/CommentaireRepository.class b/target/classes/local/epul4a/fotosharing/repository/CommentaireRepository.class index da552e8..1d37372 100644 Binary files a/target/classes/local/epul4a/fotosharing/repository/CommentaireRepository.class and b/target/classes/local/epul4a/fotosharing/repository/CommentaireRepository.class differ diff --git a/target/classes/local/epul4a/fotosharing/repository/PhotoRepository.class b/target/classes/local/epul4a/fotosharing/repository/PhotoRepository.class index 2343e42..b25b417 100644 Binary files a/target/classes/local/epul4a/fotosharing/repository/PhotoRepository.class and b/target/classes/local/epul4a/fotosharing/repository/PhotoRepository.class differ diff --git a/target/classes/local/epul4a/fotosharing/security/CustomUserDetailsService.class b/target/classes/local/epul4a/fotosharing/security/CustomUserDetailsService.class index 6cbfc95..ad9e87a 100644 Binary files a/target/classes/local/epul4a/fotosharing/security/CustomUserDetailsService.class and b/target/classes/local/epul4a/fotosharing/security/CustomUserDetailsService.class differ diff --git a/target/classes/local/epul4a/fotosharing/security/SecurityConfig.class b/target/classes/local/epul4a/fotosharing/security/SecurityConfig.class index 7813d21..c4a7638 100644 Binary files a/target/classes/local/epul4a/fotosharing/security/SecurityConfig.class and b/target/classes/local/epul4a/fotosharing/security/SecurityConfig.class differ diff --git a/target/classes/local/epul4a/fotosharing/service/CommentaireService.class b/target/classes/local/epul4a/fotosharing/service/CommentaireService.class index 86c900f..a5c9458 100644 Binary files a/target/classes/local/epul4a/fotosharing/service/CommentaireService.class and b/target/classes/local/epul4a/fotosharing/service/CommentaireService.class differ diff --git a/target/classes/local/epul4a/fotosharing/service/PhotoService.class b/target/classes/local/epul4a/fotosharing/service/PhotoService.class index a1627c2..0d4e10d 100644 Binary files a/target/classes/local/epul4a/fotosharing/service/PhotoService.class and b/target/classes/local/epul4a/fotosharing/service/PhotoService.class differ diff --git a/target/classes/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.class b/target/classes/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.class index 47c9dbf..8aa0d52 100644 Binary files a/target/classes/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.class and b/target/classes/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.class differ diff --git a/target/classes/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.class b/target/classes/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.class index 198309c..bf6d631 100644 Binary files a/target/classes/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.class and b/target/classes/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.class differ diff --git a/target/classes/templates/mes-photos.html b/target/classes/templates/mes-photos.html index 01cab91..cb83708 100644 --- a/target/classes/templates/mes-photos.html +++ b/target/classes/templates/mes-photos.html @@ -12,31 +12,51 @@

Vous n'avez pas encore de photos.

Mes photos privées

-
    -
  • - - [PRIVÉE] -
  • -
+ +
+ + + +
+

Mes photos publiques

-
    -
  • - - [PUBLIQUE] -
  • -
+ +
+ + + + +

Photos partagées avec moi

-
    -
  • - - [SHARED] -
  • -
+ +
+ + + +

Galerie publique

diff --git a/target/classes/templates/photo-detail.html b/target/classes/templates/photo-detail.html index fdc6fb8..7ad65a6 100644 --- a/target/classes/templates/photo-detail.html +++ b/target/classes/templates/photo-detail.html @@ -53,16 +53,20 @@

Commentaires

-
-

Aucun commentaire pour l'instant.

-
-
    -
  • - Auteur : +
    +

    + - () -

  • -
+

+ +
+ + + +
+

Ajouter un commentaire

diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties deleted file mode 100644 index de8f615..0000000 --- a/target/maven-archiver/pom.properties +++ /dev/null @@ -1,3 +0,0 @@ -artifactId=FotoSharing -groupId=local.epul4a -version=0.0.1-SNAPSHOT diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst index b9237e3..4b9fc90 100644 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -1 +1,20 @@ +local/epul4a/fotosharing/service/PhotoService.class +local/epul4a/fotosharing/model/Partage.class +local/epul4a/fotosharing/security/SecurityConfig.class +local/epul4a/fotosharing/repository/PartageRepository.class +local/epul4a/fotosharing/controller/PhotoController.class +local/epul4a/fotosharing/security/CustomUserDetails.class +local/epul4a/fotosharing/service/CommentaireService.class +local/epul4a/fotosharing/repository/UtilisateurRepository.class +local/epul4a/fotosharing/repository/CommentaireRepository.class +local/epul4a/fotosharing/security/SecurityService.class local/epul4a/fotosharing/FotoSharingApplication.class +local/epul4a/fotosharing/model/Photo.class +local/epul4a/fotosharing/controller/AuthController.class +local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.class +local/epul4a/fotosharing/repository/PhotoRepository.class +local/epul4a/fotosharing/model/Commentaire.class +local/epul4a/fotosharing/model/Photo$Visibilite.class +local/epul4a/fotosharing/model/Utilisateur.class +local/epul4a/fotosharing/service/impl/PhotoServiceImpl.class +local/epul4a/fotosharing/security/CustomUserDetailsService.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst index a8f8eb2..309aac7 100644 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -1 +1,19 @@ -/home/morph/Bureau/semestre7/infoRepartie/InfoRepartie/FotoSharing/FotoSharing/src/main/java/local/epul4a/fotosharing/FotoSharingApplication.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/FotoSharingApplication.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/controller/AuthController.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/controller/PhotoController.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/model/Commentaire.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/model/Partage.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/model/Photo.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/model/Utilisateur.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/repository/CommentaireRepository.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/repository/PartageRepository.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/repository/PhotoRepository.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/repository/UtilisateurRepository.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/security/CustomUserDetails.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/security/CustomUserDetailsService.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/security/SecurityConfig.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/security/SecurityService.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/service/CommentaireService.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/service/PhotoService.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/service/impl/CommentaireServiceImpl.java +/home/gtrnet/FotoSharing/src/main/java/local/epul4a/fotosharing/service/impl/PhotoServiceImpl.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst index 8167ff7..e3822b4 100644 --- a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -1 +1 @@ -/home/morph/Bureau/semestre7/infoRepartie/InfoRepartie/FotoSharing/FotoSharing/src/test/java/local/epul4a/fotosharing/FotoSharingApplicationTests.java +/home/gtrnet/FotoSharing/src/test/java/local/epul4a/fotosharing/FotoSharingApplicationTests.java