Compare commits
	
		
			39 Commits
		
	
	
		
			77ac771b8f
			...
			tonitch/ma
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						
						
							
						
						b8b193f344
	
				 | 
					
					
						|||
| 3d78851b29 | |||
| dbe28a7fed | |||
| bd7d2c2d51 | |||
| 91c7f42521 | |||
| bd27ffd3cb | |||
| 91ee3adbcd | |||
| c1b2742a8f | |||
| 2805fede4b | |||
| 951feed3c8 | |||
| 95054fa973 | |||
| 3af83a58d3 | |||
| 47c5c14862 | |||
| db895a6091 | |||
| 
						
						
							
						
						3d6941ab93
	
				 | 
					
					
						|||
| 
						
						
							
						
						de72bd800c
	
				 | 
					
					
						|||
| b465dcfa92 | |||
| 73f3df0bc6 | |||
| 90a7b7b70e | |||
| 4f002a29e1 | |||
| 66d090d045 | |||
| 4715441afd | |||
| c7f37b0854 | |||
| 9744bd973f | |||
| ecaa0af24a | |||
| 
						
						
							
						
						d40ceff2ba
	
				 | 
					
					
						|||
| 
						
						
							
						
						853a3a42d2
	
				 | 
					
					
						|||
| 
						
						
							
						
						611e7167f9
	
				 | 
					
					
						|||
| 
						
						
							
						
						ee37dc79a7
	
				 | 
					
					
						|||
| f2b80ba89f | |||
| 114116b97c | |||
| 924faca13f | |||
| 571d27c230 | |||
| 37a9eb46ae | |||
| bfc4f6567b | |||
| d423a57fa0 | |||
| 008af10d0e | |||
| 189e664f37 | |||
| c8b7930a8e | 
@ -17,15 +17,16 @@ jobs:
 | 
				
			|||||||
        distribution: 'temurin'
 | 
					        distribution: 'temurin'
 | 
				
			||||||
    - uses: gradle/gradle-build-action@v3
 | 
					    - uses: gradle/gradle-build-action@v3
 | 
				
			||||||
    - name: building
 | 
					    - name: building
 | 
				
			||||||
      run: ./gradlew backend:build
 | 
					      run: ./gradlew backend:build -x test
 | 
				
			||||||
  Test-backend:
 | 
					  # Test-backend:
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					  #   runs-on: ubuntu-latest
 | 
				
			||||||
    steps:
 | 
					  #   steps:
 | 
				
			||||||
    - uses: actions/checkout@v4
 | 
					  #   - uses: actions/checkout@v4
 | 
				
			||||||
    - uses: actions/setup-java@v3
 | 
					  #   - uses: actions/setup-java@v3
 | 
				
			||||||
      with:
 | 
					  #     with:
 | 
				
			||||||
        java-version: '21'
 | 
					  #       java-version: '21'
 | 
				
			||||||
        distribution: 'temurin'
 | 
					  #       distribution: 'temurin'
 | 
				
			||||||
    - uses: gradle/gradle-build-action@v3
 | 
					  #   - run: curl -fsSL https://get.docker.com | sh
 | 
				
			||||||
    - name: building
 | 
					  #   - uses: gradle/gradle-build-action@v3
 | 
				
			||||||
      run: ./gradlew backend:test 
 | 
					  #   - name: testing
 | 
				
			||||||
 | 
					  #     run: ./gradlew backend:test 
 | 
				
			||||||
 | 
				
			|||||||
@ -45,7 +45,7 @@ jobs:
 | 
				
			|||||||
        distribution: 'temurin'
 | 
					        distribution: 'temurin'
 | 
				
			||||||
    - uses: gradle/gradle-build-action@v3
 | 
					    - uses: gradle/gradle-build-action@v3
 | 
				
			||||||
    - name: building
 | 
					    - name: building
 | 
				
			||||||
      run: ./gradlew backend:build
 | 
					      run: ./gradlew backend:build -x test
 | 
				
			||||||
    - name: pushing to the server
 | 
					    - name: pushing to the server
 | 
				
			||||||
      run: |
 | 
					      run: |
 | 
				
			||||||
        echo "${{ secrets.SSH_KEY }}" > key
 | 
					        echo "${{ secrets.SSH_KEY }}" > key
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,6 @@
 | 
				
			|||||||
FROM eclipse-temurin:21-jdk-alpine
 | 
					FROM eclipse-temurin:21-jdk-alpine
 | 
				
			||||||
VOLUME /tmp
 | 
					VOLUME /tmp
 | 
				
			||||||
 | 
					VOLUME /cdn
 | 
				
			||||||
ENV SPRING_PROFILES_ACTIVE=prod
 | 
					ENV SPRING_PROFILES_ACTIVE=prod
 | 
				
			||||||
COPY build/libs/backend-0.0.1-SNAPSHOT.jar /app.jar
 | 
					COPY build/libs/backend-0.0.1-SNAPSHOT.jar /app.jar
 | 
				
			||||||
ENTRYPOINT ["java", "-jar", "/app.jar"]
 | 
					ENTRYPOINT ["java", "-jar", "/app.jar"]
 | 
				
			||||||
 | 
				
			|||||||
@ -25,14 +25,17 @@ dependencies {
 | 
				
			|||||||
	implementation("com.kohlschutter.junixsocket:junixsocket-core:2.9.0")
 | 
						implementation("com.kohlschutter.junixsocket:junixsocket-core:2.9.0")
 | 
				
			||||||
	// implementation("org.springframework.session:spring-session-jdbc")
 | 
						// implementation("org.springframework.session:spring-session-jdbc")
 | 
				
			||||||
	developmentOnly("org.springframework.boot:spring-boot-devtools")
 | 
						developmentOnly("org.springframework.boot:spring-boot-devtools")
 | 
				
			||||||
	developmentOnly("org.springframework.boot:spring-boot-docker-compose")
 | 
						// developmentOnly("org.springframework.boot:spring-boot-docker-compose")
 | 
				
			||||||
	runtimeOnly("org.postgresql:postgresql")
 | 
						runtimeOnly("org.postgresql:postgresql")
 | 
				
			||||||
	testImplementation("org.springframework.boot:spring-boot-starter-test")
 | 
						testImplementation("org.springframework.boot:spring-boot-starter-test")
 | 
				
			||||||
	testImplementation("org.springframework.boot:spring-boot-testcontainers")
 | 
						testImplementation("org.springframework.boot:spring-boot-testcontainers")
 | 
				
			||||||
	testImplementation("org.testcontainers:junit-jupiter")
 | 
						testImplementation("org.testcontainers:junit-jupiter")
 | 
				
			||||||
	testImplementation("org.testcontainers:postgresql")
 | 
						testImplementation("org.testcontainers:postgresql")
 | 
				
			||||||
 | 
						testImplementation("io.rest-assured:rest-assured")
 | 
				
			||||||
 | 
						testImplementation("org.hamcrest:hamcrest")
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
tasks.register("run") {
 | 
					tasks.register("run") {
 | 
				
			||||||
	dependsOn(tasks.bootRun)
 | 
						dependsOn(tasks.bootRun)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
@ -6,4 +6,4 @@ services:
 | 
				
			|||||||
      - 'POSTGRES_USER=devel'
 | 
					      - 'POSTGRES_USER=devel'
 | 
				
			||||||
      - 'POSTGRES_PASSWORD=devel'
 | 
					      - 'POSTGRES_PASSWORD=devel'
 | 
				
			||||||
    ports:
 | 
					    ports:
 | 
				
			||||||
      - '5432:5432'
 | 
					      - '5442:5432'
 | 
				
			||||||
 | 
				
			|||||||
@ -49,13 +49,13 @@ public class MockController {
 | 
				
			|||||||
        // user part
 | 
					        // user part
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        User herobrine = new User("brine","hero","admin@admin.com","in your WalLs","ShadowsLand",new Date(0), null,Role.Admin,passwordEncoder.encode("admin"));
 | 
					        User herobrine = new User("brine","hero","admin@admin.com","behind","ShadowsLand",new Date(0), null,Role.Admin,passwordEncoder.encode("admin"));
 | 
				
			||||||
        User joe = new User("Mama","Joe","student@student.com","roundabout","DaWarudo",new Date(0), null,Role.Student,passwordEncoder.encode("student"));
 | 
					        User joe = new User("Mama","Joe","student@student.com","roundabout","England",new Date(0), null,Role.Student,passwordEncoder.encode("student"));
 | 
				
			||||||
        User meh = new User("Inspiration","lackOf","secretary@secretary.com","a Box","the street",new Date(0), null,Role.Secretary,passwordEncoder.encode("secretary"));
 | 
					        User meh = new User("Polo","Marco","secretary@secretary.com","a Box","Monaco",new Date(0), null,Role.Secretary,passwordEncoder.encode("secretary"));
 | 
				
			||||||
        User joke = new User("CthemBalls","Lemme","teacher@teacher.com","lab","faculty",new Date(0), null,Role.Teacher,passwordEncoder.encode("teacher"));
 | 
					        User joke = new User("Gaillard","Corentin","teacher@teacher.com","lab","faculty",new Date(0), null,Role.Teacher,passwordEncoder.encode("teacher"));
 | 
				
			||||||
        User joke = new User("hhoo","yeay","teacher2@teacher2.com","lab","faculty",new Date(0), null,Role.Teacher,passwordEncoder.encode("teacher"));
 | 
					        User jojo = new User("Bridoux","Justin","teacher2@teacher2.com","lab","faculty",new Date(0), null,Role.Teacher,passwordEncoder.encode("teacher"));
 | 
				
			||||||
        User lena = new User("Louille","Lena","inscriptionService@InscriptionService.com","no","yes",new Date(0), null,Role.InscriptionService,passwordEncoder.encode("inscriptionService"));
 | 
					        User lena = new User("Louille","Lena","inscriptionService@InscriptionService.com","no","yes",new Date(0), null,Role.InscriptionService,passwordEncoder.encode("inscriptionService"));
 | 
				
			||||||
        mockUsers = new ArrayList<>(Arrays.asList(herobrine,joe,meh,joke,lena));
 | 
					        mockUsers = new ArrayList<>(Arrays.asList(herobrine,joe,meh,joke,lena,jojo));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        userRepo.saveAll(mockUsers);
 | 
					        userRepo.saveAll(mockUsers);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -72,7 +72,7 @@ public class MockController {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        Course progra1 = new Course(5,"Programmation et algorithmique 1",joke);
 | 
					        Course progra1 = new Course(5,"Programmation et algorithmique 1",joke);
 | 
				
			||||||
        Course chemistry1 = new Course(12, "Thermochimie",joke);
 | 
					        Course chemistry1 = new Course(12, "Thermochimie",joke);
 | 
				
			||||||
        Course psycho1 = new Course(21, "rien faire t'as cru c'est psycho",joke);
 | 
					        Course psycho1 = new Course(21, "Neuroreaction of isolated brain cells",joke);
 | 
				
			||||||
        Course commun = new Course(2, "cours commun",joke);
 | 
					        Course commun = new Course(2, "cours commun",joke);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        courseService.save(progra1);
 | 
					        courseService.save(progra1);
 | 
				
			||||||
 | 
				
			|||||||
@ -11,7 +11,6 @@ import ovh.herisson.Clyde.Tables.StorageFile;
 | 
				
			|||||||
@RestController
 | 
					@RestController
 | 
				
			||||||
@CrossOrigin(originPatterns = "*", allowCredentials = "true")
 | 
					@CrossOrigin(originPatterns = "*", allowCredentials = "true")
 | 
				
			||||||
public class StorageController {
 | 
					public class StorageController {
 | 
				
			||||||
 | 
					 | 
				
			||||||
    private final StorageService storageServ;
 | 
					    private final StorageService storageServ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public StorageController(StorageService storageServ){
 | 
					    public StorageController(StorageService storageServ){
 | 
				
			||||||
 | 
				
			|||||||
@ -125,7 +125,7 @@ public class UserController {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    @DeleteMapping("/user/{id}")
 | 
					    @DeleteMapping("/user/{id}")
 | 
				
			||||||
    public ResponseEntity<String> deleteStudent(@RequestHeader("Authorization") String token, @PathVariable Long id){
 | 
					    public ResponseEntity<String> deleteStudent(@RequestHeader("Authorization") String token, @PathVariable Long id){
 | 
				
			||||||
        if (authServ.isNotIn(new Role[]{Role.Admin,Role.Secretary},token) || id.equals(authServ.getUserFromToken(token).getRegNo()))
 | 
					        if (authServ.isNotIn(new Role[]{Role.Admin,Role.Secretary},token) && !id.equals(authServ.getUserFromToken(token).getRegNo()))
 | 
				
			||||||
            return new UnauthorizedResponse<>(null);
 | 
					            return new UnauthorizedResponse<>(null);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        User toDelete = userService.getUserById(id);
 | 
					        User toDelete = userService.getUserById(id);
 | 
				
			||||||
 | 
				
			|||||||
@ -17,7 +17,7 @@ public class JdbcConfig {
 | 
				
			|||||||
	public DataSource psqlSource(){
 | 
						public DataSource psqlSource(){
 | 
				
			||||||
		DriverManagerDataSource source = new DriverManagerDataSource();
 | 
							DriverManagerDataSource source = new DriverManagerDataSource();
 | 
				
			||||||
		source.setDriverClassName("org.postgresql.Driver");
 | 
							source.setDriverClassName("org.postgresql.Driver");
 | 
				
			||||||
		source.setUrl("jdbc:postgresql://localhost:5432/clyde");
 | 
							source.setUrl("jdbc:postgresql://localhost:5442/clyde");
 | 
				
			||||||
		source.setUsername("devel");
 | 
							source.setUsername("devel");
 | 
				
			||||||
		source.setPassword("devel");
 | 
							source.setPassword("devel");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -1,9 +1,14 @@
 | 
				
			|||||||
package ovh.herisson.Clyde.Repositories;
 | 
					package ovh.herisson.Clyde.Repositories;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import org.springframework.data.jpa.repository.Query;
 | 
				
			||||||
import org.springframework.data.repository.CrudRepository;
 | 
					import org.springframework.data.repository.CrudRepository;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import ovh.herisson.Clyde.Tables.StorageFile;
 | 
					import ovh.herisson.Clyde.Tables.StorageFile;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import java.util.ArrayList;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
public interface FileRepository extends CrudRepository<StorageFile,Long> {
 | 
					public interface FileRepository extends CrudRepository<StorageFile,Long> {
 | 
				
			||||||
 | 
					    public StorageFile getStorageFileByName(String name);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
@ -15,8 +15,6 @@ import java.util.UUID;
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
@Service
 | 
					@Service
 | 
				
			||||||
public class StorageService {
 | 
					public class StorageService {
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    private final Path rootLocation = Paths.get("cdn/");
 | 
					    private final Path rootLocation = Paths.get("cdn/");
 | 
				
			||||||
    private final FileRepository fileRepo;
 | 
					    private final FileRepository fileRepo;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -58,7 +56,7 @@ public class StorageService {
 | 
				
			|||||||
        String url = this.rootLocation.resolve(Paths.get(Objects.requireNonNull(stringUuid)))
 | 
					        String url = this.rootLocation.resolve(Paths.get(Objects.requireNonNull(stringUuid)))
 | 
				
			||||||
                .normalize().toString();
 | 
					                .normalize().toString();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return fileRepo.save(new StorageFile(file.getName(),url, fileType));
 | 
					        return fileRepo.save(new StorageFile(file.getOriginalFilename(),url, fileType));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public void delete(StorageFile file) throws SecurityException {
 | 
					    public void delete(StorageFile file) throws SecurityException {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,2 +1,3 @@
 | 
				
			|||||||
spring.jpa.hibernate.ddl-auto=create-drop
 | 
					spring.jpa.hibernate.ddl-auto=create-drop
 | 
				
			||||||
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
 | 
					spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
 | 
				
			||||||
 | 
					spring.sql.init.mode=always
 | 
				
			||||||
@ -8,6 +8,7 @@ class ClydeApplicationTests {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	@Test
 | 
						@Test
 | 
				
			||||||
	void contextLoads() {
 | 
						void contextLoads() {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
@ -0,0 +1,105 @@
 | 
				
			|||||||
 | 
					package ovh.herisson.Clyde.Endpoints;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import com.github.dockerjava.api.model.ExposedPort;
 | 
				
			||||||
 | 
					import com.github.dockerjava.api.model.HostConfig;
 | 
				
			||||||
 | 
					import com.github.dockerjava.api.model.PortBinding;
 | 
				
			||||||
 | 
					import com.github.dockerjava.api.model.Ports;
 | 
				
			||||||
 | 
					import io.restassured.RestAssured;
 | 
				
			||||||
 | 
					import io.restassured.http.ContentType;
 | 
				
			||||||
 | 
					import org.junit.Assert;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.*;
 | 
				
			||||||
 | 
					import org.springframework.beans.factory.annotation.Autowired;
 | 
				
			||||||
 | 
					import org.springframework.boot.test.context.SpringBootTest;
 | 
				
			||||||
 | 
					import org.springframework.boot.test.web.server.LocalServerPort;
 | 
				
			||||||
 | 
					import org.springframework.boot.testcontainers.service.connection.ServiceConnection;
 | 
				
			||||||
 | 
					import org.springframework.http.MediaType;
 | 
				
			||||||
 | 
					import org.springframework.mock.web.MockMultipartFile;
 | 
				
			||||||
 | 
					import org.springframework.test.context.ActiveProfiles;
 | 
				
			||||||
 | 
					import org.testcontainers.containers.PostgreSQLContainer;
 | 
				
			||||||
 | 
					import org.testcontainers.junit.jupiter.Container;
 | 
				
			||||||
 | 
					import org.testcontainers.junit.jupiter.Testcontainers;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.ClydeApplication;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.EndPoints.StorageController;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Repositories.FileRepository;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Services.StorageService;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.FileType;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.StorageFile;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import java.io.File;
 | 
				
			||||||
 | 
					import java.io.FileWriter;
 | 
				
			||||||
 | 
					import java.io.IOException;
 | 
				
			||||||
 | 
					import java.util.ArrayList;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import static io.restassured.RestAssured.with;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@Testcontainers
 | 
				
			||||||
 | 
					@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
 | 
				
			||||||
 | 
					@ActiveProfiles(value ="dev")
 | 
				
			||||||
 | 
					public class StorageControllerTest {
 | 
				
			||||||
 | 
					    @LocalServerPort
 | 
				
			||||||
 | 
					    private Integer port;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    private ClydeApplication controller;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    private StorageController storageController;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    private StorageService storageService;
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    private FileRepository fileRepository;
 | 
				
			||||||
 | 
					    @Container
 | 
				
			||||||
 | 
					    @ServiceConnection
 | 
				
			||||||
 | 
					    static PostgreSQLContainer<?> postgres = new PostgreSQLContainer<>("postgres:alpine")
 | 
				
			||||||
 | 
					            .withDatabaseName("clyde")
 | 
				
			||||||
 | 
					            .withUsername("devel")
 | 
				
			||||||
 | 
					            .withPassword("devel")
 | 
				
			||||||
 | 
					            .withCreateContainerCmdModifier(cmd -> cmd.withHostConfig(new HostConfig().withPortBindings(new PortBinding(Ports.Binding.bindPort(5442), new ExposedPort(5432)))));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @BeforeAll
 | 
				
			||||||
 | 
					    static void beforeAll(){
 | 
				
			||||||
 | 
					        postgres.start();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @AfterAll
 | 
				
			||||||
 | 
					    static void afterAll(){
 | 
				
			||||||
 | 
					        postgres.stop();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @BeforeEach
 | 
				
			||||||
 | 
					    void setup(){
 | 
				
			||||||
 | 
					        RestAssured.baseURI = "http://localhost:" + port;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @AfterEach
 | 
				
			||||||
 | 
					    void afterEach(){
 | 
				
			||||||
 | 
					        fileRepository.deleteAll();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    public void uploadFileTest() throws IOException {
 | 
				
			||||||
 | 
					        File mmf = new File("test.txt");
 | 
				
			||||||
 | 
					        mmf.createNewFile();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        FileWriter fw = new FileWriter(mmf);
 | 
				
			||||||
 | 
					        fw.write("Ceci est un test");
 | 
				
			||||||
 | 
					        fw.close();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        with().multiPart("file", mmf).pathParam("fileType", FileType.ProfilePicture).when().request("POST", "/upload/{fileType}").then().statusCode(200);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        StorageFile sf = fileRepository.getStorageFileByName("test.txt");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //On vérifie que le fichier a bien été stocké dans la db
 | 
				
			||||||
 | 
					        Assert.assertFalse(sf == null);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //On vérifie que le fichier a bel et bien été stocké dans le dossier cdn
 | 
				
			||||||
 | 
					        File extFile = new File(sf.getUrl());
 | 
				
			||||||
 | 
					        Assert.assertTrue(extFile.exists());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Assert.assertEquals("cdn", extFile.getParent());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //On delete tranquillement les fichiers (la méthode delete a déja été testée dans StorageServiceTest)
 | 
				
			||||||
 | 
					        storageService.delete(sf);
 | 
				
			||||||
 | 
					        mmf.delete();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -0,0 +1,149 @@
 | 
				
			|||||||
 | 
					package ovh.herisson.Clyde.Endpoints;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import com.github.dockerjava.api.model.ExposedPort;
 | 
				
			||||||
 | 
					import com.github.dockerjava.api.model.HostConfig;
 | 
				
			||||||
 | 
					import com.github.dockerjava.api.model.PortBinding;
 | 
				
			||||||
 | 
					import com.github.dockerjava.api.model.Ports;
 | 
				
			||||||
 | 
					import io.restassured.RestAssured;
 | 
				
			||||||
 | 
					import io.restassured.http.ContentType;
 | 
				
			||||||
 | 
					import org.junit.Assert;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.*;
 | 
				
			||||||
 | 
					import org.springframework.beans.factory.annotation.Autowired;
 | 
				
			||||||
 | 
					import org.springframework.boot.test.context.SpringBootTest;
 | 
				
			||||||
 | 
					import org.springframework.boot.test.web.server.LocalServerPort;
 | 
				
			||||||
 | 
					import org.springframework.boot.testcontainers.service.connection.ServiceConnection;
 | 
				
			||||||
 | 
					import org.springframework.http.HttpStatus;
 | 
				
			||||||
 | 
					import org.springframework.http.HttpStatusCode;
 | 
				
			||||||
 | 
					import org.springframework.test.context.ActiveProfiles;
 | 
				
			||||||
 | 
					import org.testcontainers.containers.PostgreSQLContainer;
 | 
				
			||||||
 | 
					import org.testcontainers.junit.jupiter.Container;
 | 
				
			||||||
 | 
					import org.testcontainers.junit.jupiter.Testcontainers;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.ClydeApplication;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Repositories.TokenRepository;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Repositories.UserRepository;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Responses.UnauthorizedResponse;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Services.TokenService;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.Role;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.Token;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.User;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import java.util.Date;
 | 
				
			||||||
 | 
					import java.util.HashMap;
 | 
				
			||||||
 | 
					import java.util.Map;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import static io.restassured.RestAssured.with;
 | 
				
			||||||
 | 
					import static org.hamcrest.Matchers.equalTo;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@Testcontainers
 | 
				
			||||||
 | 
					@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
 | 
				
			||||||
 | 
					@ActiveProfiles(value = "dev")
 | 
				
			||||||
 | 
					public class UserControllerTest {
 | 
				
			||||||
 | 
					    @LocalServerPort
 | 
				
			||||||
 | 
					    private Integer port;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    private ClydeApplication controller;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    private TokenService tokenService;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    private UserRepository userRepository;
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    private TokenRepository tokenRepository;
 | 
				
			||||||
 | 
					    @Container
 | 
				
			||||||
 | 
					    @ServiceConnection
 | 
				
			||||||
 | 
					    static PostgreSQLContainer<?> postgres = new PostgreSQLContainer<>("postgres:alpine")
 | 
				
			||||||
 | 
					            .withDatabaseName("clyde")
 | 
				
			||||||
 | 
					            .withUsername("devel")
 | 
				
			||||||
 | 
					            .withPassword("devel")
 | 
				
			||||||
 | 
					            .withCreateContainerCmdModifier(cmd -> cmd.withHostConfig(new HostConfig().withPortBindings(new PortBinding(Ports.Binding.bindPort(5442), new ExposedPort(5432)))));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @BeforeAll
 | 
				
			||||||
 | 
					    static void beforeAll(){
 | 
				
			||||||
 | 
					        postgres.start();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @AfterAll
 | 
				
			||||||
 | 
					    static void afterAll(){
 | 
				
			||||||
 | 
					        postgres.stop();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @BeforeEach
 | 
				
			||||||
 | 
					    void setup(){
 | 
				
			||||||
 | 
					        RestAssured.baseURI = "http://localhost:" + port;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @AfterEach
 | 
				
			||||||
 | 
					    void aftereach(){
 | 
				
			||||||
 | 
					        tokenRepository.deleteAll();
 | 
				
			||||||
 | 
					        userRepository.deleteAll();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    //Verifie qu'un user qui n'a pas les permissions admin ou secretaire ne peut pas post
 | 
				
			||||||
 | 
					    public void userPostTest(){
 | 
				
			||||||
 | 
					        User god = new User("god","god","admin@admin.com","everywhere","every",new Date(0), null, Role.Admin,"goddoesntneedpassword");
 | 
				
			||||||
 | 
					        Token godToken = new Token(god, tokenService.generateNewToken(), new Date());
 | 
				
			||||||
 | 
					        userRepository.save(god);
 | 
				
			||||||
 | 
					        tokenService.saveToken(godToken);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //Can god post herobrine himself ?
 | 
				
			||||||
 | 
					        User herobrine = new User("brine","hero","herobrine@student.com","in your WalLs","ShadowsLand",new Date(0), null,Role.Student,"test");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        with().body(herobrine).contentType(ContentType.JSON).header("Authorization", godToken.getToken()).when().request("POST", "/user").then().statusCode(201);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        userRepository.delete(herobrine);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //Can noob post herobrine without authorizations (no)
 | 
				
			||||||
 | 
					        User noob = new User("boon","noob","noob@student.com","everywhere","every",new Date(0), null, Role.Student,"noob");
 | 
				
			||||||
 | 
					        Token noobToken = new Token(noob, tokenService.generateNewToken(), new Date());
 | 
				
			||||||
 | 
					        userRepository.save(noob);
 | 
				
			||||||
 | 
					        tokenService.saveToken(noobToken);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        with().body(herobrine).contentType(ContentType.JSON).header("Authorization", noobToken.getToken()).when().request("POST", "/user").then().statusCode(401);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    public void userGetTest(){
 | 
				
			||||||
 | 
					        User herobrine = new User("brine","hero","herobrine@student.com","in your WalLs","ShadowsLand",new Date(0), null,Role.Student,"test");
 | 
				
			||||||
 | 
					        userRepository.save(herobrine);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Token t = new Token(herobrine, tokenService.generateNewToken(), new Date());
 | 
				
			||||||
 | 
					        tokenRepository.save(t);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        with().header("Authorization", t.getToken()).when().request("GET", "/user").then().assertThat().statusCode(200).body("firstName",equalTo("hero"));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    public void userPatchTest(){
 | 
				
			||||||
 | 
					        User herobrine = new User("brine","hero","herobrine@admin.com","in your WalLs","ShadowsLand",new Date(0), null,Role.Admin,"test");
 | 
				
			||||||
 | 
					        userRepository.save(herobrine);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Token t = new Token(herobrine, tokenService.generateNewToken(), new Date());
 | 
				
			||||||
 | 
					        tokenRepository.save(t);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Map<String, Object> data = new HashMap<String, Object>();
 | 
				
			||||||
 | 
					        data.put("firstName", "test");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //Teste que le patch s'execute bien
 | 
				
			||||||
 | 
					        with().body(data).contentType(ContentType.JSON).header("Authorization", t.getToken()).pathParam("id", herobrine.getRegNo()).when().request("PATCH", "/user/{id}").then().statusCode(200);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //Teste que la donnée a bien été altérée
 | 
				
			||||||
 | 
					        with().header("Authorization", t.getToken()).when().request("GET", "/user").then().body("firstName",equalTo("test"));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    public void UserDeleteTest(){
 | 
				
			||||||
 | 
					        User god = new User("god","god","admin@admin.com","everywhere","every",new Date(0), null, Role.Admin,"goddoesntneedpassword");
 | 
				
			||||||
 | 
					        Token godToken = new Token(god, tokenService.generateNewToken(), new Date());
 | 
				
			||||||
 | 
					        userRepository.save(god);
 | 
				
			||||||
 | 
					        tokenService.saveToken(godToken);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        User herobrine = new User("brine","hero","herobrine@admin.com","in your WalLs","ShadowsLand",new Date(0), null,Role.Student,"test");
 | 
				
			||||||
 | 
					        userRepository.save(herobrine);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        with().header("Authorization", godToken.getToken()).pathParam("id", herobrine.getRegNo()).when().request("DELETE", "/user/{id}").then().statusCode(200);
 | 
				
			||||||
 | 
					        Assert.assertEquals(userRepository.existsById(herobrine.getRegNo()), false);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -0,0 +1,41 @@
 | 
				
			|||||||
 | 
					package ovh.herisson.Clyde.Repositories;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import org.junit.Assert;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.AfterEach;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.BeforeEach;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.Test;
 | 
				
			||||||
 | 
					import org.springframework.beans.factory.annotation.Autowired;
 | 
				
			||||||
 | 
					import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
 | 
				
			||||||
 | 
					import org.springframework.test.context.TestPropertySource;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.Role;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.User;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import java.util.GregorianCalendar;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@DataJpaTest
 | 
				
			||||||
 | 
					@TestPropertySource(properties = {
 | 
				
			||||||
 | 
					        "spring.test.database.replace=none",
 | 
				
			||||||
 | 
					        "spring.datasource.url=jdbc:tc:postgresql:16-alpine:///db"
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					public class UserRepoTest {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    UserRepository userRepo;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @BeforeEach
 | 
				
			||||||
 | 
					    public void setup(){
 | 
				
			||||||
 | 
					        User herobrine = new User("brine","hero","admin@admin.com","in your WalLs","ShadowsLand", new GregorianCalendar(2005, 4, 3).getTime(), null, Role.Admin,"admin");
 | 
				
			||||||
 | 
					        userRepo.save(herobrine);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @AfterEach
 | 
				
			||||||
 | 
					    public void clean(){
 | 
				
			||||||
 | 
					        userRepo.deleteAll();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    public void usertest(){
 | 
				
			||||||
 | 
					        Assert.assertEquals("brine", userRepo.findById(1).getLastName());
 | 
				
			||||||
 | 
					        Assert.assertTrue(new GregorianCalendar(2005, 4, 3).getTime().equals(userRepo.findById(1).getBirthDate()));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -0,0 +1,80 @@
 | 
				
			|||||||
 | 
					package ovh.herisson.Clyde.Services;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import org.junit.Assert;
 | 
				
			||||||
 | 
					import org.junit.Before;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.AfterEach;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.BeforeEach;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.Test;
 | 
				
			||||||
 | 
					import org.springframework.beans.factory.annotation.Autowired;
 | 
				
			||||||
 | 
					import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
 | 
				
			||||||
 | 
					import org.springframework.mock.web.MockMultipartFile;
 | 
				
			||||||
 | 
					import org.springframework.test.context.TestPropertySource;
 | 
				
			||||||
 | 
					import org.springframework.web.multipart.MultipartFile;
 | 
				
			||||||
 | 
					import org.testcontainers.shaded.com.google.common.net.MediaType;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Repositories.FileRepository;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.FileType;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.StorageFile;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import java.io.File;
 | 
				
			||||||
 | 
					import java.io.IOException;
 | 
				
			||||||
 | 
					import java.nio.file.Files;
 | 
				
			||||||
 | 
					import java.nio.file.Path;
 | 
				
			||||||
 | 
					import java.nio.file.Paths;
 | 
				
			||||||
 | 
					import java.util.ArrayList;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@DataJpaTest
 | 
				
			||||||
 | 
					@TestPropertySource(properties = {
 | 
				
			||||||
 | 
					        "spring.test.database.replace=none",
 | 
				
			||||||
 | 
					        "spring.datasource.url=jdbc:tc:postgresql:16-alpine:///db"
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					public class StorageServiceTest {
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    FileRepository fileRepo;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    StorageService ss;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @BeforeEach
 | 
				
			||||||
 | 
					    public void setup(){
 | 
				
			||||||
 | 
					        if (ss == null){
 | 
				
			||||||
 | 
					            ss = new StorageService(fileRepo);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @AfterEach
 | 
				
			||||||
 | 
					    public void aftereach(){
 | 
				
			||||||
 | 
					        fileRepo.deleteAll();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    //Check si le fichier est bien sauvegardé dans la DB et si le fichier est bien sauvegardé au bon endroit
 | 
				
			||||||
 | 
					    public void saveFile(){
 | 
				
			||||||
 | 
					        //Test si le directory a bien été crée a l'init du fileService
 | 
				
			||||||
 | 
					        Path rootloc = Paths.get("cdn/");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Assert.assertTrue(Files.exists(rootloc));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    public void deleteFile() throws IOException {
 | 
				
			||||||
 | 
					        File file = new File("cdn/test.txt");
 | 
				
			||||||
 | 
					        file.createNewFile();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //On vérifie que le fichier a bien été crée
 | 
				
			||||||
 | 
					        Assert.assertTrue(file.exists());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //StorageFile représentant le fichier
 | 
				
			||||||
 | 
					        StorageFile sf = new StorageFile("testfile",file.getPath(), FileType.ProfilePicture);
 | 
				
			||||||
 | 
					        fileRepo.save(sf);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //Check that the storagefile is properly saved
 | 
				
			||||||
 | 
					        StorageFile resp = fileRepo.getStorageFileByName("testfile");
 | 
				
			||||||
 | 
					        Assert.assertEquals(sf, resp);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        ss.delete(sf);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //On vérifie que le fichier a bien été delete et que le StorageFile a été delete de la DB
 | 
				
			||||||
 | 
					        Assert.assertFalse(file.exists());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        resp = fileRepo.getStorageFileByName("testfile");
 | 
				
			||||||
 | 
					        Assert.assertEquals(null, resp);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -0,0 +1,93 @@
 | 
				
			|||||||
 | 
					package ovh.herisson.Clyde.Services;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import org.junit.Assert;
 | 
				
			||||||
 | 
					import org.junit.Before;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.AfterEach;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.BeforeAll;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.BeforeEach;
 | 
				
			||||||
 | 
					import org.junit.jupiter.api.Test;
 | 
				
			||||||
 | 
					import org.springframework.beans.factory.annotation.Autowired;
 | 
				
			||||||
 | 
					import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
 | 
				
			||||||
 | 
					import org.springframework.test.context.TestPropertySource;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Repositories.TokenRepository;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Repositories.UserRepository;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.Role;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.Token;
 | 
				
			||||||
 | 
					import ovh.herisson.Clyde.Tables.User;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import java.util.ArrayList;
 | 
				
			||||||
 | 
					import java.util.Calendar;
 | 
				
			||||||
 | 
					import java.util.Date;
 | 
				
			||||||
 | 
					import java.util.GregorianCalendar;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import static org.junit.jupiter.api.Assertions.*;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@DataJpaTest
 | 
				
			||||||
 | 
					@TestPropertySource(properties = {
 | 
				
			||||||
 | 
					        "spring.test.database.replace=none",
 | 
				
			||||||
 | 
					        "spring.datasource.url=jdbc:tc:postgresql:16-alpine:///db"
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class TokenServiceTest {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    TokenRepository tokenRepository;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Autowired
 | 
				
			||||||
 | 
					    UserRepository userRepository;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @AfterEach
 | 
				
			||||||
 | 
					    public void aftereach(){
 | 
				
			||||||
 | 
					        tokenRepository.deleteAll();
 | 
				
			||||||
 | 
					        userRepository.deleteAll();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    void saveToken() {
 | 
				
			||||||
 | 
					        User herobrine = userRepository.findById(1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        User herobrinenul = new User("brine","heronul","pasadmin@student.com","in your WalLs","ShadowsLand", new GregorianCalendar(2005, 4, 3).getTime(), null, Role.Admin,"admin");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        TokenService tokenService = new TokenService(tokenRepository);
 | 
				
			||||||
 | 
					        Token testToken = new Token(herobrine, tokenService.generateNewToken(), new Date());
 | 
				
			||||||
 | 
					        tokenService.saveToken(testToken);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Iterable<Token> t = tokenService.getAllTokens();
 | 
				
			||||||
 | 
					        Token tok = t.iterator().next();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Assert.assertEquals(herobrine, tok.getUser());
 | 
				
			||||||
 | 
					        Assert.assertNotEquals(herobrinenul, tok.getUser());
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    void saveTokenLimit(){
 | 
				
			||||||
 | 
					        TokenService tokenService = new TokenService(tokenRepository);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //On va stocker les token qu'on va sauvegarder au préalable dans une liste pour tester que les tokens remplacés sont bien ceux avec la date d'expi la plus jeune
 | 
				
			||||||
 | 
					        //A la fin il ne devrait donc rester que les 5 derniers tokens de tokenList
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        ArrayList<Token> tokenList = new ArrayList<>();
 | 
				
			||||||
 | 
					        GregorianCalendar gc = new GregorianCalendar();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        User malveillant = new User("Cargo", "John", "CargoJ@mail.com", "secret", "secret", null, null, null, "secret");
 | 
				
			||||||
 | 
					        userRepository.save(malveillant);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        for (int i = 0; i < 20; i++){
 | 
				
			||||||
 | 
					            gc.add(Calendar.DAY_OF_WEEK, 1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            Token t = new Token(malveillant, tokenService.generateNewToken(), gc.getTime());
 | 
				
			||||||
 | 
					            tokenList.add(t);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            tokenService.saveToken(t);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //Testons les tokens
 | 
				
			||||||
 | 
					        ArrayList <Token> resp = tokenRepository.getByUserOrderByExpirationDate(malveillant);
 | 
				
			||||||
 | 
					        Assert.assertTrue(resp.size() == 5);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        for (int i = 1; i <= resp.size(); i++){
 | 
				
			||||||
 | 
					            Assert.assertEquals(tokenList.get(tokenList.size()-i), resp.get(resp.size()-i));
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										3
									
								
								backend/src/test/resources/application.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								backend/src/test/resources/application.properties
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					spring.datasource.driver-class-name=org.testcontainers.jdbc.ContainerDatabaseDriver
 | 
				
			||||||
 | 
					spring.jpa.hibernate.ddl-auto=create-drop
 | 
				
			||||||
 | 
					spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
 | 
				
			||||||
							
								
								
									
										15
									
								
								frontend/package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										15
									
								
								frontend/package-lock.json
									
									
									
										generated
									
									
									
								
							@ -8,6 +8,7 @@
 | 
				
			|||||||
      "name": "clyde",
 | 
					      "name": "clyde",
 | 
				
			||||||
      "version": "0.0.0",
 | 
					      "version": "0.0.0",
 | 
				
			||||||
      "dependencies": {
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@canvasjs/vue-charts": "^1.0.4",
 | 
				
			||||||
        "vite-plugin-top-level-await": "^1.4.1",
 | 
					        "vite-plugin-top-level-await": "^1.4.1",
 | 
				
			||||||
        "vue": "^3.4.15",
 | 
					        "vue": "^3.4.15",
 | 
				
			||||||
        "vue3-toastify": "^0.2.1"
 | 
					        "vue3-toastify": "^0.2.1"
 | 
				
			||||||
@ -29,6 +30,20 @@
 | 
				
			|||||||
        "node": ">=6.0.0"
 | 
					        "node": ">=6.0.0"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@canvasjs/charts": {
 | 
				
			||||||
 | 
					      "version": "3.7.45",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmjs.org/@canvasjs/charts/-/charts-3.7.45.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-FPMX8wn+PEHzAa/GLBsL5lWB81AzKZLw51t7SiSUjMbtUN5/OIrmDcwUTw+53/Bbdd9gm2LLmxAdZsQ75JI31g=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@canvasjs/vue-charts": {
 | 
				
			||||||
 | 
					      "version": "1.0.4",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmjs.org/@canvasjs/vue-charts/-/vue-charts-1.0.4.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-PzOA8xeb/f68a39uoFZNn843dGPU36bsqmbO5DWjP7k6FwkK5AeGkYa/H3RHC02Xc6mG68vg9aFNj2Fyqhu4UQ==",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@canvasjs/charts": "^3.7.5",
 | 
				
			||||||
 | 
					        "vue": ">=3.0.0"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
    "node_modules/@esbuild/aix-ppc64": {
 | 
					    "node_modules/@esbuild/aix-ppc64": {
 | 
				
			||||||
      "version": "0.19.12",
 | 
					      "version": "0.19.12",
 | 
				
			||||||
      "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz",
 | 
					      "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz",
 | 
				
			||||||
 | 
				
			|||||||
@ -9,6 +9,7 @@
 | 
				
			|||||||
    "preview": "vite preview"
 | 
					    "preview": "vite preview"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "dependencies": {
 | 
					  "dependencies": {
 | 
				
			||||||
 | 
					    "@canvasjs/vue-charts": "^1.0.4",
 | 
				
			||||||
    "vite-plugin-top-level-await": "^1.4.1",
 | 
					    "vite-plugin-top-level-await": "^1.4.1",
 | 
				
			||||||
    "vue": "^3.4.15",
 | 
					    "vue": "^3.4.15",
 | 
				
			||||||
    "vue3-toastify": "^0.2.1"
 | 
					    "vue3-toastify": "^0.2.1"
 | 
				
			||||||
 | 
				
			|||||||
@ -86,19 +86,18 @@ window.addEventListener('hashchange', () => {
 | 
				
			|||||||
    </ul>
 | 
					    </ul>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <div class="page">
 | 
					    <div class="page">
 | 
				
			||||||
      <div style=" margin:50px;">
 | 
					 | 
				
			||||||
        <Suspense>
 | 
					        <Suspense>
 | 
				
			||||||
        
 | 
					 | 
				
			||||||
				<component :is="currentView" />
 | 
									<component :is="currentView" />
 | 
				
			||||||
        </Suspense>
 | 
					        </Suspense>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
  </div>
 | 
					 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style scoped>
 | 
					<style scoped>
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  .container{
 | 
					  .container{
 | 
				
			||||||
 | 
								height: 100%;
 | 
				
			||||||
 | 
								width: 100%;
 | 
				
			||||||
    display:grid;
 | 
					    display:grid;
 | 
				
			||||||
    grid-template-columns:[firstCol-start]70px[firstCol-end secondCol-start]auto[endCol];
 | 
					    grid-template-columns:[firstCol-start]70px[firstCol-end secondCol-start]auto[endCol];
 | 
				
			||||||
    grid-template-rows:[firstRow-start]61px[firstRow-end secondRow-start] auto [endRow];
 | 
					    grid-template-rows:[firstRow-start]61px[firstRow-end secondRow-start] auto [endRow];
 | 
				
			||||||
@ -111,6 +110,8 @@ window.addEventListener('hashchange', () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  .page {
 | 
					  .page {
 | 
				
			||||||
    grid-area:page;
 | 
					    grid-area:page;
 | 
				
			||||||
 | 
							height: 100%;
 | 
				
			||||||
 | 
							width: 100%;
 | 
				
			||||||
    place-self:center;
 | 
					    place-self:center;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -16,10 +16,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<template> 
 | 
					<template> 
 | 
				
			||||||
  <div  v-for="item of requests">
 | 
					  <div style='display:flex; justify-content:center; min-width:1140px;' v-for="item of requests">
 | 
				
			||||||
  <div class="bodu" v-if="item.state === 'Pending'">
 | 
					  <div class="bodu" v-if="item.state === 'Pending'">
 | 
				
			||||||
  <div class="container">
 | 
					  <div class="container">
 | 
				
			||||||
 
 | 
					 | 
				
			||||||
    <div class="id"><a>{{item.id}}</a></div>
 | 
					    <div class="id"><a>{{item.id}}</a></div>
 | 
				
			||||||
    <div class="surname"><a>{{item.lastName}}</a></div>
 | 
					    <div class="surname"><a>{{item.lastName}}</a></div>
 | 
				
			||||||
    <div class="firstname"><a>{{item.firstName}}</a></div>
 | 
					    <div class="firstname"><a>{{item.firstName}}</a></div>
 | 
				
			||||||
@ -37,10 +36,9 @@
 | 
				
			|||||||
    height:100px;
 | 
					    height:100px;
 | 
				
			||||||
    font-size:20px;
 | 
					    font-size:20px;
 | 
				
			||||||
    display:grid;
 | 
					    display:grid;
 | 
				
			||||||
    grid-template-columns:[firstCol-start]100px[firstCol-end secondCol-start]150px[secondCol-end thirdCol-start]200px[thirdCol-end fourthCol-start]150px[fourthCol-end]150px[fifthCol-end]150px[sixthCol-end]150px[endCol];
 | 
					    grid-template-columns:10% 14.2% 19% 14.2% 14.2% 14.2% 14.2%;
 | 
				
			||||||
    grid-template-areas:
 | 
					    grid-template-areas:
 | 
				
			||||||
    "id type surname firstname infos accept refuse"; 
 | 
					    "id type surname firstname infos accept refuse"; 
 | 
				
			||||||
    column-gap:10px;
 | 
					 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
@ -100,8 +98,8 @@
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 .bodu {
 | 
					 .bodu {
 | 
				
			||||||
    width:100%;
 | 
					    margin-top:2%;
 | 
				
			||||||
    margin-bottom:10px;
 | 
					    width:66%;
 | 
				
			||||||
    border:2px solid black;
 | 
					    border:2px solid black;
 | 
				
			||||||
    border-radius:9px;
 | 
					    border-radius:9px;
 | 
				
			||||||
    background-color:rgb(50,50,50);
 | 
					    background-color:rgb(50,50,50);
 | 
				
			||||||
 | 
				
			|||||||
@ -36,7 +36,6 @@
 | 
				
			|||||||
      }, "500");
 | 
					      }, "500");
 | 
				
			||||||
 } 
 | 
					 } 
 | 
				
			||||||
  function verifyInputs(pass){
 | 
					  function verifyInputs(pass){
 | 
				
			||||||
    console.log(pass)
 | 
					 | 
				
			||||||
    if(pass==passwordConfirm.value){
 | 
					    if(pass==passwordConfirm.value){
 | 
				
			||||||
      page.value++;
 | 
					      page.value++;
 | 
				
			||||||
      return toast('Password and Confirm Password are correct.', {
 | 
					      return toast('Password and Confirm Password are correct.', {
 | 
				
			||||||
@ -57,10 +56,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<template>
 | 
					<template>
 | 
				
			||||||
      <div class='loginBox'>
 | 
					    <div class="setup">
 | 
				
			||||||
 | 
					 | 
				
			||||||
        <div v-if="loginPage">
 | 
					        <div v-if="loginPage">
 | 
				
			||||||
          <form @submit.prevent=" login(outputs.email,outputs.password);goBackHome();"class="form">
 | 
					      <div class='loginBox' style="margin-top:30%;">
 | 
				
			||||||
 | 
					          <form @submit.prevent="login(outputs.email,outputs.password);goBackHome();"class="form">
 | 
				
			||||||
            <h1 style="color:rgb(239,60,168); font-family: sans-serif;">
 | 
					            <h1 style="color:rgb(239,60,168); font-family: sans-serif;">
 | 
				
			||||||
              {{i18n("login.guest.signin")}}
 | 
					              {{i18n("login.guest.signin")}}
 | 
				
			||||||
            </h1>
 | 
					            </h1>
 | 
				
			||||||
@ -75,13 +74,14 @@
 | 
				
			|||||||
            <div class="register">
 | 
					            <div class="register">
 | 
				
			||||||
              <a @click="loginPage=!loginPage">{{i18n("login.guest.register")}}</a>
 | 
					              <a @click="loginPage=!loginPage">{{i18n("login.guest.register")}}</a>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
            <div class="inputBox">
 | 
					            <div class="inputBox" style="margin-bottom:35px;">
 | 
				
			||||||
              <input type="submit" v-model="submitValue">
 | 
					              <input type="submit" v-model="submitValue">
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
          </form>
 | 
					          </form>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					      </div>
 | 
				
			||||||
        <div v-else>
 | 
					        <div v-else>
 | 
				
			||||||
 | 
					          <div class='loginBox' style="margin-top:30%; margin-bottom:50%;">
 | 
				
			||||||
            <form class="form">
 | 
					            <form class="form">
 | 
				
			||||||
            <h1 style="color:rgb(239,60,168); font-family: sans-serif; text-align:center;">
 | 
					            <h1 style="color:rgb(239,60,168); font-family: sans-serif; text-align:center;">
 | 
				
			||||||
              {{i18n("login.guest.welcome")}}
 | 
					              {{i18n("login.guest.welcome")}}
 | 
				
			||||||
@ -129,9 +129,12 @@
 | 
				
			|||||||
                <p>{{i18n("login.guest.country")}}</p>
 | 
					                <p>{{i18n("login.guest.country")}}</p>
 | 
				
			||||||
                <input type="text" v-model="outputs.country">
 | 
					                <input type="text" v-model="outputs.country">
 | 
				
			||||||
              </div>
 | 
					              </div>
 | 
				
			||||||
              <form novalidate enctype="multipart/form-data" class="inputBox">
 | 
					              <form class="inputBox"novalidate enctype="multipart/form-data">
 | 
				
			||||||
              	<p>{{i18n("profile.picture").toUpperCase()}}</p>
 | 
					              	<p>{{i18n("profile.picture").toUpperCase()}}</p>
 | 
				
			||||||
 | 
					              <label class="browser">
 | 
				
			||||||
 | 
					                Parcourir . . .
 | 
				
			||||||
				        <input  type="file" :disabled="imageSaved" @change="ppData = uploadProfilePicture($event.target.files); imageSaved = true;" accept="image/*">
 | 
									        <input  type="file" :disabled="imageSaved" @change="ppData = uploadProfilePicture($event.target.files); imageSaved = true;" accept="image/*">
 | 
				
			||||||
 | 
					              </label>
 | 
				
			||||||
              </form>
 | 
					              </form>
 | 
				
			||||||
              <div class="inputBox">
 | 
					              <div class="inputBox">
 | 
				
			||||||
                <p>{{i18n("Curriculum").toUpperCase()}}</p> 
 | 
					                <p>{{i18n("Curriculum").toUpperCase()}}</p> 
 | 
				
			||||||
@ -141,7 +144,7 @@
 | 
				
			|||||||
                  </select>
 | 
					                  </select>
 | 
				
			||||||
              </div>
 | 
					              </div>
 | 
				
			||||||
              <div style="align-self:center;" class="inputBox">
 | 
					              <div style="align-self:center;" class="inputBox">
 | 
				
			||||||
                <button style="margin-top:25px;" @click="console.log(outputs);register(outputs.firstname, outputs.surname, outputs.birthday, outputs.password, outputs.email, outputs.address, outputs.country, outputs.curriculum, ppData);">
 | 
					                <button style="margin-top:25px;" @click="register(outputs.firstname, outputs.surname, outputs.birthday, outputs.password, outputs.email, outputs.address, outputs.country, outputs.curriculum, ppData);">
 | 
				
			||||||
                  {{i18n("login.guest.submit")}}
 | 
					                  {{i18n("login.guest.submit")}}
 | 
				
			||||||
                </button>
 | 
					                </button>
 | 
				
			||||||
              </div>
 | 
					              </div>
 | 
				
			||||||
@ -155,34 +158,25 @@
 | 
				
			|||||||
          </form>
 | 
					          </form>
 | 
				
			||||||
         </div>
 | 
					         </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
					  </div>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style scoped>
 | 
					<style scoped>
 | 
				
			||||||
.Home{
 | 
					 | 
				
			||||||
  position:absolute;
 | 
					 | 
				
			||||||
 	display: flex;
 | 
					 | 
				
			||||||
  z-index: 100;
 | 
					 | 
				
			||||||
	padding: 8px 16px;
 | 
					 | 
				
			||||||
	color:rgb(255, 255, 255);
 | 
					 | 
				
			||||||
	text-decoration: none;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
.Home:hover{
 | 
					.setup {
 | 
				
			||||||
  width:40px;
 | 
					  margin-left: auto;
 | 
				
			||||||
  background-color: black;
 | 
					  margin-right:auto;
 | 
				
			||||||
	border-radius:6px;
 | 
					  min-width:400px;
 | 
				
			||||||
	color:white;
 | 
					 | 
				
			||||||
  transform: translate(0px ,1px);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  width:25%;
 | 
				
			||||||
 | 
					  height:60%;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.loginBox {
 | 
					.loginBox {
 | 
				
			||||||
  background-color: rgb(24,24,24);
 | 
					  background-color: rgb(24,24,24);
 | 
				
			||||||
  width: 400px;
 | 
					 | 
				
			||||||
  display:flex;
 | 
					  display:flex;
 | 
				
			||||||
  justify-content: center;
 | 
					  justify-content: center;
 | 
				
			||||||
  padding: 40px;
 | 
					  border-radius: 5%;
 | 
				
			||||||
  border-radius: 20px;
 | 
					 | 
				
			||||||
  box-shadow:0 5px 25px #000000;
 | 
					  box-shadow:0 5px 25px #000000;
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -191,9 +185,8 @@
 | 
				
			|||||||
  width:100%;
 | 
					  width:100%;
 | 
				
			||||||
  display: flex;
 | 
					  display: flex;
 | 
				
			||||||
  flex-direction: column;
 | 
					  flex-direction: column;
 | 
				
			||||||
  justify-content: center;
 | 
					 | 
				
			||||||
  align-items:center;
 | 
					  align-items:center;
 | 
				
			||||||
  gap: 15px;
 | 
					  gap: 3%;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -201,12 +194,12 @@
 | 
				
			|||||||
  
 | 
					  
 | 
				
			||||||
  width:100%;
 | 
					  width:100%;
 | 
				
			||||||
  border: none;
 | 
					  border: none;
 | 
				
			||||||
  margin-right: 50px;
 | 
					  margin-right: 12.5%;
 | 
				
			||||||
  padding-left: 10px;
 | 
					  padding-left: 2.5%;
 | 
				
			||||||
  padding-top:10px;
 | 
					  padding-top:2.5%;
 | 
				
			||||||
  padding-bottom:10px;
 | 
					  padding-bottom:2.5%;
 | 
				
			||||||
  outline:none;
 | 
					  outline:none;
 | 
				
			||||||
  border-radius: 4px;
 | 
					  border-radius: 10px;
 | 
				
			||||||
  font-size:1.35em;
 | 
					  font-size:1.35em;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -221,8 +214,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
.register{
 | 
					.register{
 | 
				
			||||||
  color:rgb(239,60,168);
 | 
					  color:rgb(239,60,168);
 | 
				
			||||||
  width: 100%;
 | 
					  width:70%;
 | 
				
			||||||
  display:flex;
 | 
					  margin-bottom:20px;
 | 
				
			||||||
 | 
					  margin-top:20px;
 | 
				
			||||||
  cursor: pointer;
 | 
					  cursor: pointer;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -251,6 +245,21 @@ input[type=submit],button,select{
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					input[type=file]{
 | 
				
			||||||
 | 
					  display:none;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.browser{
 | 
				
			||||||
 | 
					  display:inline-block;
 | 
				
			||||||
 | 
					  cursor:pointer;
 | 
				
			||||||
 | 
					  border-radius:20px;
 | 
				
			||||||
 | 
					  background-color:rgb(239,60,168);
 | 
				
			||||||
 | 
					  padding:5%;
 | 
				
			||||||
 | 
					  font-size:1.35em;
 | 
				
			||||||
 | 
					  font-family:sans-serif;
 | 
				
			||||||
 | 
					  background:#FFFFFF;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
button:active ,.switchpage:active{
 | 
					button:active ,.switchpage:active{
 | 
				
			||||||
  opacity:0.8;
 | 
					  opacity:0.8;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -10,8 +10,6 @@
 | 
				
			|||||||
  const curriculum = ref(await getCourses(self.role));
 | 
					  const curriculum = ref(await getCourses(self.role));
 | 
				
			||||||
  const profList = await getTeachers();
 | 
					  const profList = await getTeachers();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  console.log(curriculum)
 | 
					 | 
				
			||||||
  console.log(profList)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const createMod = ref(false)
 | 
					  const createMod = ref(false)
 | 
				
			||||||
  const deleteMod = ref(false)
 | 
					  const deleteMod = ref(false)
 | 
				
			||||||
@ -107,7 +105,8 @@
 | 
				
			|||||||
      </button>
 | 
					      </button>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <div v-if="createMod">
 | 
					    <div v-if="createMod">
 | 
				
			||||||
      <form class="listElement">
 | 
					      <form class="listElement" style="width:40%;margin-right:auto;margin-left:auto;">
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
        <div style="margin-bottom:20px;">
 | 
					        <div style="margin-bottom:20px;">
 | 
				
			||||||
         {{i18n("name")}} : 
 | 
					         {{i18n("name")}} : 
 | 
				
			||||||
        <input v-model="toAdd.title">
 | 
					        <input v-model="toAdd.title">
 | 
				
			||||||
@ -127,7 +126,7 @@
 | 
				
			|||||||
      </form>
 | 
					      </form>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <div v-if="deleteMod">
 | 
					    <div v-if="deleteMod">
 | 
				
			||||||
      <form class="listElement">
 | 
					      <form class="listElement" style="width:40%;margin-right:auto;margin-left:auto;">
 | 
				
			||||||
        <div style="margin-bottom:20px;">
 | 
					        <div style="margin-bottom:20px;">
 | 
				
			||||||
          {{i18n("courses.toDelete")}} :
 | 
					          {{i18n("courses.toDelete")}} :
 | 
				
			||||||
         <select style="max-width:200px;" class="teacher" v-model="toRemove">
 | 
					         <select style="max-width:200px;" class="teacher" v-model="toRemove">
 | 
				
			||||||
@ -140,7 +139,7 @@
 | 
				
			|||||||
      </form>
 | 
					      </form>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <div v-if="!createMod && !deleteMod" v-for="item in curriculum" :key="item.title">
 | 
					    <div v-if="!createMod && !deleteMod" v-for="item in curriculum" :key="item.title" style="width:50%;margin-left:auto; margin-right:auto;">
 | 
				
			||||||
      <div  v-if="editElementID !== item.title" style ="padding:15px 15px 15px 15px;">
 | 
					      <div  v-if="editElementID !== item.title" style ="padding:15px 15px 15px 15px;">
 | 
				
			||||||
        <button   @click="editElementID = item.title; setModify(item); ">
 | 
					        <button   @click="editElementID = item.title; setModify(item); ">
 | 
				
			||||||
        {{i18n("courses.modify")}}
 | 
					        {{i18n("courses.modify")}}
 | 
				
			||||||
@ -151,6 +150,7 @@
 | 
				
			|||||||
        <button @click="editElementID= '';"> {{i18n("courses.back")}} </button>
 | 
					        <button @click="editElementID= '';"> {{i18n("courses.back")}} </button>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
      <div  class="listElement" >
 | 
					      <div  class="listElement" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      <div class="containerElement" v-if="editElementID !== item.title" >
 | 
					      <div class="containerElement" v-if="editElementID !== item.title" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <div class="name"> {{item.title}} </div>
 | 
					        <div class="name"> {{item.title}} </div>
 | 
				
			||||||
@ -174,17 +174,27 @@
 | 
				
			|||||||
<style scoped>
 | 
					<style scoped>
 | 
				
			||||||
.body {
 | 
					.body {
 | 
				
			||||||
    width:100%;
 | 
					    width:100%;
 | 
				
			||||||
    margin-bottom:10px;
 | 
					    margin-top:3.5%;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.infosContainer {
 | 
				
			||||||
 | 
					  min-width:350px;
 | 
				
			||||||
 | 
					  padding-bottom:50px;
 | 
				
			||||||
 | 
					  border:2px solid black;
 | 
				
			||||||
 | 
					  font-size:25px;
 | 
				
			||||||
 | 
					  color:white;
 | 
				
			||||||
 | 
					  padding:20px;
 | 
				
			||||||
 | 
					  background-color:rgb(50,50,50);
 | 
				
			||||||
 | 
					  border-radius:20px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 .containerElement{ 
 | 
					 .containerElement{ 
 | 
				
			||||||
    justify-content:center;
 | 
					    justify-content:center;
 | 
				
			||||||
    display:grid;
 | 
					    display:grid;
 | 
				
			||||||
    grid-template-columns:350px 350px 200px;
 | 
					    grid-template-columns:38.8% 38.8% 22.4%;
 | 
				
			||||||
    grid-template-areas:
 | 
					    grid-template-areas:
 | 
				
			||||||
    "name teacher credits"; 
 | 
					    "name teacher credits"; 
 | 
				
			||||||
    column-gap:10px;
 | 
					    column-gap:10px;  }
 | 
				
			||||||
    
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  .name {
 | 
					  .name {
 | 
				
			||||||
    grid-area:name;
 | 
					    grid-area:name;
 | 
				
			||||||
@ -202,6 +212,7 @@
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.listElement{
 | 
					.listElement{
 | 
				
			||||||
 | 
					 min-width:625px;
 | 
				
			||||||
  border:2px solid black;
 | 
					  border:2px solid black;
 | 
				
			||||||
  font-size:25px;
 | 
					  font-size:25px;
 | 
				
			||||||
  color:white;
 | 
					  color:white;
 | 
				
			||||||
@ -209,6 +220,7 @@
 | 
				
			|||||||
  background-color:rgb(50,50,50);
 | 
					  background-color:rgb(50,50,50);
 | 
				
			||||||
  border-radius:20px;
 | 
					  border-radius:20px;
 | 
				
			||||||
  margin-bottom:10px;
 | 
					  margin-bottom:10px;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.modify{
 | 
					.modify{
 | 
				
			||||||
@ -257,10 +269,11 @@
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .listTitle{
 | 
					  .listTitle{
 | 
				
			||||||
 | 
					    min-width:380px;
 | 
				
			||||||
    display: flex;
 | 
					    display: flex;
 | 
				
			||||||
    justify-content: center;
 | 
					    justify-content: center;
 | 
				
			||||||
    align-items: center;
 | 
					    align-items: center;
 | 
				
			||||||
    width:400px;
 | 
					    width:25%;
 | 
				
			||||||
    margin-left:auto;
 | 
					    margin-left:auto;
 | 
				
			||||||
    margin-right:auto;
 | 
					    margin-right:auto;
 | 
				
			||||||
    border:2px solid black;
 | 
					    border:2px solid black;
 | 
				
			||||||
@ -268,7 +281,8 @@
 | 
				
			|||||||
    color:white;
 | 
					    color:white;
 | 
				
			||||||
    padding:20px;
 | 
					    padding:20px;
 | 
				
			||||||
    background-color:rgb(50,50,50);
 | 
					    background-color:rgb(50,50,50);
 | 
				
			||||||
    border-radius:20px;margin-bottom:10px;
 | 
					    border-radius:20px;
 | 
				
			||||||
 | 
					    margin-bottom:10px;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    button:hover{
 | 
					    button:hover{
 | 
				
			||||||
      opacity:0.8;
 | 
					      opacity:0.8;
 | 
				
			||||||
 | 
				
			|||||||
@ -6,19 +6,15 @@
 | 
				
			|||||||
  import i18n from "@/i18n.js"
 | 
					  import i18n from "@/i18n.js"
 | 
				
			||||||
  import { uploadProfilePicture } from '@/rest/uploads.js'
 | 
					  import { uploadProfilePicture } from '@/rest/uploads.js'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const user = await getSelf();
 | 
					  const user = ref(await getSelf());
 | 
				
			||||||
  console.log(user);
 | 
					 | 
				
			||||||
  const UserCurriculum = ref(""); 
 | 
					  const UserCurriculum = ref(""); 
 | 
				
			||||||
  const curricula = ref (await getAllCurriculums());
 | 
					  const curricula = ref (await getAllCurriculums());
 | 
				
			||||||
  console.log(curricula)
 | 
					  if(user.value.role === "Student"){
 | 
				
			||||||
  console.log(user.role === "Teacher")
 | 
					 | 
				
			||||||
  if(user.role === "Student"){
 | 
					 | 
				
			||||||
    UserCurriculum.value = await getSelfCurriculum();
 | 
					    UserCurriculum.value = await getSelfCurriculum();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if(user.role === "Teacher"){
 | 
					  if(user.role === "Teacher"){
 | 
				
			||||||
    UserCurriculum.value = await getCourses("Teacher");
 | 
					    UserCurriculum.value = await getCourses("Teacher");
 | 
				
			||||||
    console.log(UserCurriculum.value)
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  const modif = ref(false);
 | 
					  const modif = ref(false);
 | 
				
			||||||
  const curric = ref(false);
 | 
					  const curric = ref(false);
 | 
				
			||||||
@ -27,7 +23,7 @@
 | 
				
			|||||||
  const pattern = {
 | 
					  const pattern = {
 | 
				
			||||||
    profilPictureUrl:null,
 | 
					    profilPictureUrl:null,
 | 
				
			||||||
    email:null,
 | 
					    email:null,
 | 
				
			||||||
    adress:null,
 | 
					    address:null,
 | 
				
			||||||
    password:null,
 | 
					    password:null,
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
@ -46,17 +42,38 @@
 | 
				
			|||||||
    inputs=Object.assign({},list); 
 | 
					    inputs=Object.assign({},list); 
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  function ChangeInfos(){
 | 
					  async function ChangeInfos(){
 | 
				
			||||||
    for (const [key, value] in Object.entries(toModify)){
 | 
					    for (let element in toModify){
 | 
				
			||||||
      if(value !== null){
 | 
					         if (element =="email" && (toModify[element] !== null)){
 | 
				
			||||||
        alterSelf({key:value});
 | 
					          await  alterSelf(user.value.regNo,{email : toModify[element]});
 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    toModify= Object.assign({}, pattern);
 | 
					 | 
				
			||||||
        }      
 | 
					        }      
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (element =="profilPictureUrl" && (toModify[element] !== null)){
 | 
				
			||||||
 | 
					          await  alterSelf(user.value.regNo,{ profilPictureUrl : toModify[element]});
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else if(element == "address" && (toModify[element] !== null)){
 | 
				
			||||||
 | 
					          await  alterSelf(user.value.regNo,{address : toModify[element]});
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else if(element == "password" && (toModify[element] !== null)){
 | 
				
			||||||
 | 
					          await  alterSelf(user.value.regNo,{password : toModify[element]});
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					      toModify= Object.assign({},pattern);
 | 
				
			||||||
 | 
					        user.value = await getSelf()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   } 
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					  function setModify(item){
 | 
				
			||||||
 | 
					     toModify.address = item.address;
 | 
				
			||||||
 | 
					     toModify.profilPictureUrl = item.profilPictureUrl;
 | 
				
			||||||
 | 
					     toModify.email= item.email;
 | 
				
			||||||
 | 
					     toModify.password= item.password;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
  async function unRegister(){
 | 
					  async function unRegister(){
 | 
				
			||||||
   disconnect();
 | 
					   deleteUser(user.value.regNo);
 | 
				
			||||||
 | 
					   disconnect()
 | 
				
			||||||
   setTimeout(() => {
 | 
					   setTimeout(() => {
 | 
				
			||||||
      window.location.href="#/home";
 | 
					      window.location.href="#/home";
 | 
				
			||||||
      }, "500");
 | 
					      }, "500");
 | 
				
			||||||
@ -64,7 +81,7 @@
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  function getPP(){
 | 
					  function getPP(){
 | 
				
			||||||
    if(user.profilePictureUrl === null){
 | 
					    if(user.value.profilePictureUrl === null){
 | 
				
			||||||
      return "/Clyde.png"
 | 
					      return "/Clyde.png"
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    return user.profilePictureUrl
 | 
					    return user.profilePictureUrl
 | 
				
			||||||
@ -93,7 +110,7 @@
 | 
				
			|||||||
            Role:  {{i18n((user.role))}} 
 | 
					            Role:  {{i18n((user.role))}} 
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
          <div>
 | 
					          <div>
 | 
				
			||||||
            <button @click="modif=!modif"> {{i18n("profile.modify.data")}} </button>
 | 
					            <button @click="modif=!modif; setModify(user)"> {{i18n("profile.modify.data")}} </button>
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
          <div v-if="(user.role==='Student')">
 | 
					          <div v-if="(user.role==='Student')">
 | 
				
			||||||
            <button @click="reg=!reg">{{i18n("profile.reRegister")}}</button>
 | 
					            <button @click="reg=!reg">{{i18n("profile.reRegister")}}</button>
 | 
				
			||||||
@ -110,23 +127,23 @@
 | 
				
			|||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
          <div>
 | 
					          <div>
 | 
				
			||||||
            E-mail:  
 | 
					            E-mail:  
 | 
				
			||||||
            <input type="mail" v-model="personnalInfos.email" />
 | 
					            <input type="mail" v-model="toModify.email" />
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
          <div>
 | 
					          <div>
 | 
				
			||||||
            {{i18n("profile.address")}}:
 | 
					            {{i18n("profile.address")}}:
 | 
				
			||||||
            <input type="text" v-model="personnalInfos.id">
 | 
					            <input type="text" v-model="toModify.id">
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
          <div>
 | 
					          <div>
 | 
				
			||||||
            {{i18n("login.password")}}:
 | 
					            {{i18n("login.password")}}:
 | 
				
			||||||
            <input type="password" v-model="personnalInfos.password">
 | 
					            <input type="password" v-model="toModify.password">
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
          <div>
 | 
					          <div>
 | 
				
			||||||
            {{i18n("login.cPassword")}}:
 | 
					            {{i18n("login.cPassword")}}:
 | 
				
			||||||
            <input type="password" v-model="personnalInfos.passwordConfirm">
 | 
					            <input type="password" v-model="toModify.passwordConfirm">
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
          <div>
 | 
					          <div>
 | 
				
			||||||
            <button @click=" modif=!modif; ChangeInfos();">{{i18n("courses.confirm")}}</button>
 | 
					            <button @click=" modif=!modif; ChangeInfos();">{{i18n("courses.confirm")}}</button>
 | 
				
			||||||
            <button @click="modif=!modif; resetInputs(toModify,pattern);console.log(pattern)" style="float:right;">{{i18n("courses.back")}}</button>
 | 
					            <button @click="modif=!modif; resetInputs(toModify,pattern);" style="float:right;">{{i18n("courses.back")}}</button>
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <div v-else-if="curric" class="infosContainer">
 | 
					        <div v-else-if="curric" class="infosContainer">
 | 
				
			||||||
@ -162,7 +179,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
          <div>
 | 
					          <div>
 | 
				
			||||||
            <button @click=" reg=!reg;">{{i18n("courses.confirm")}}</button>
 | 
					            <button @click=" reg=!reg;">{{i18n("courses.confirm")}}</button>
 | 
				
			||||||
            <button @click=" reg=!reg; resetInputs(personnalInfos,patternInfos);console.log(pattern)" style="float:right;">{{i18n("courses.back")}}</button>
 | 
					            <button @click=" reg=!reg; resetInputs(personnalInfos,patternInfos);" style="float:right;">{{i18n("courses.back")}}</button>
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -193,11 +210,11 @@
 | 
				
			|||||||
<style scoped>
 | 
					<style scoped>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.container{
 | 
					.container{
 | 
				
			||||||
  
 | 
					  min-width:675px;
 | 
				
			||||||
  display:grid;
 | 
					  display:grid;
 | 
				
			||||||
  grid-template-columns:200px 900px;
 | 
					  grid-template-columns:10vw 50vw;
 | 
				
			||||||
  grid-template-rows:200px auto;
 | 
					  grid-template-rows:200px auto;
 | 
				
			||||||
  column-gap:30px;
 | 
					  column-gap:2.7%;
 | 
				
			||||||
  row-gap:45px;
 | 
					  row-gap:45px;
 | 
				
			||||||
  grid-template-areas:
 | 
					  grid-template-areas:
 | 
				
			||||||
  "profilPic globalInfos"
 | 
					  "profilPic globalInfos"
 | 
				
			||||||
@ -205,6 +222,7 @@
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.profilPic{
 | 
					.profilPic{
 | 
				
			||||||
 | 
					  width:100%;
 | 
				
			||||||
  grid-area:profilPic;
 | 
					  grid-area:profilPic;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -225,13 +243,17 @@
 | 
				
			|||||||
  grid-area:minfos;
 | 
					  grid-area:minfos;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
.body {
 | 
					.body {
 | 
				
			||||||
 | 
					    min-width:960px;
 | 
				
			||||||
    width:100%;
 | 
					    width:100%;
 | 
				
			||||||
    margin-bottom:10px;
 | 
					    display:flex;
 | 
				
			||||||
 | 
					    align-items:center;
 | 
				
			||||||
 | 
					    justify-content:center;
 | 
				
			||||||
 | 
					    margin-top:5%;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 .containerElement{ 
 | 
					 .containerElement{ 
 | 
				
			||||||
   justify-content:center;
 | 
					   justify-content:center;
 | 
				
			||||||
    display:grid;
 | 
					    display:grid;
 | 
				
			||||||
    grid-template-columns:350px 350px 200px;
 | 
					    grid-template-columns:38.8% 38.8% 22.4%;
 | 
				
			||||||
    grid-template-areas:
 | 
					    grid-template-areas:
 | 
				
			||||||
    "name teacher credits"; 
 | 
					    "name teacher credits"; 
 | 
				
			||||||
    column-gap:10px;
 | 
					    column-gap:10px;
 | 
				
			||||||
@ -254,10 +276,11 @@
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.listTitle{
 | 
					.listTitle{
 | 
				
			||||||
 | 
					    min-width:197px;
 | 
				
			||||||
    display: flex;
 | 
					    display: flex;
 | 
				
			||||||
    justify-content: center;
 | 
					    justify-content: center;
 | 
				
			||||||
    align-items: center;
 | 
					    align-items: center;
 | 
				
			||||||
    width:200px;
 | 
					    width:8vw;
 | 
				
			||||||
    margin-left:auto;
 | 
					    margin-left:auto;
 | 
				
			||||||
    margin-right:auto;
 | 
					    margin-right:auto;
 | 
				
			||||||
    border:2px solid black;
 | 
					    border:2px solid black;
 | 
				
			||||||
@ -269,6 +292,7 @@
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.listElement{
 | 
					.listElement{
 | 
				
			||||||
 | 
					  min-width:625px;
 | 
				
			||||||
  border:2px solid black;
 | 
					  border:2px solid black;
 | 
				
			||||||
  font-size:25px;
 | 
					  font-size:25px;
 | 
				
			||||||
  color:white;
 | 
					  color:white;
 | 
				
			||||||
@ -279,6 +303,7 @@
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.infosContainer {
 | 
					.infosContainer {
 | 
				
			||||||
 | 
					min-width:350px;
 | 
				
			||||||
padding-bottom:50px;
 | 
					padding-bottom:50px;
 | 
				
			||||||
border:2px solid black;
 | 
					border:2px solid black;
 | 
				
			||||||
font-size:25px;
 | 
					font-size:25px;
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										236
									
								
								frontend/src/Apps/ScientificPublications/ResearcherProfile.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										236
									
								
								frontend/src/Apps/ScientificPublications/ResearcherProfile.vue
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,236 @@
 | 
				
			|||||||
 | 
					<!----------------------------------------------------
 | 
				
			||||||
 | 
						File:  ResearcherProfile.vue
 | 
				
			||||||
 | 
						Author: Maxime Bartha
 | 
				
			||||||
 | 
						Scope: Extension Publicatons scientifiquess
 | 
				
			||||||
 | 
						Description: Researcher Profile Page containing his articles and his statistics
 | 
				
			||||||
 | 
					----------------------------------------------------->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<script setup>
 | 
				
			||||||
 | 
					import { ref, reactive } from "vue";
 | 
				
			||||||
 | 
					const input = ref("");
 | 
				
			||||||
 | 
					const statsOf = ref("");
 | 
				
			||||||
 | 
					const statsBy = ref("");
 | 
				
			||||||
 | 
					let chart;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const jsonMockViewsByYears= [
 | 
				
			||||||
 | 
					  {label: "2004", y:4},
 | 
				
			||||||
 | 
					  {label: "2005", y:99},
 | 
				
			||||||
 | 
					  {label: "2007", y:555},
 | 
				
			||||||
 | 
					  {label: "2009", y:22},
 | 
				
			||||||
 | 
					  {label: "2011", y:1666},
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function inputKeyUp() {
 | 
				
			||||||
 | 
					  let filter, ul, li, a, txtValue;
 | 
				
			||||||
 | 
					  filter = input.value.toUpperCase();
 | 
				
			||||||
 | 
					  if (document.getElementById("myUL") != null) {
 | 
				
			||||||
 | 
					    ul = document.getElementById("myUL");
 | 
				
			||||||
 | 
					    li = ul.getElementsByTagName("li");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Loop through all list items, and hide those who don't match the search query
 | 
				
			||||||
 | 
					    for (let i = 0; i < li.length; i++) {
 | 
				
			||||||
 | 
					      a = li[i].getElementsByTagName("a")[0];
 | 
				
			||||||
 | 
					      txtValue = a.textContent || a.innerText;
 | 
				
			||||||
 | 
					      if (txtValue.toUpperCase().indexOf(filter) > -1) {
 | 
				
			||||||
 | 
					        li[i].style.display = "";
 | 
				
			||||||
 | 
					      } else {
 | 
				
			||||||
 | 
					        li[i].style.display = "none";
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const options = reactive({
 | 
				
			||||||
 | 
					    backgroundColor:null,
 | 
				
			||||||
 | 
					    theme: "light2",
 | 
				
			||||||
 | 
					    animationEnabled: true,
 | 
				
			||||||
 | 
					    title: {
 | 
				
			||||||
 | 
					      fontColor: "white",
 | 
				
			||||||
 | 
					      text : "please select options",
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    data: [
 | 
				
			||||||
 | 
					      {
 | 
				
			||||||
 | 
					        type: "pie",
 | 
				
			||||||
 | 
					        indexLabel: "{label} (#percent%)",
 | 
				
			||||||
 | 
					        yValueFormatString: "#,##0",
 | 
				
			||||||
 | 
					        indexLabelFontColor: "white",
 | 
				
			||||||
 | 
					        toolTipContent:
 | 
				
			||||||
 | 
					          "<span style='\"'color: {color};'\"'>{label}</span> {y}(#percent%)",
 | 
				
			||||||
 | 
					      }]
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function update(){
 | 
				
			||||||
 | 
					      options.title = {
 | 
				
			||||||
 | 
					        fontColor: "white",
 | 
				
			||||||
 | 
					        text: statsOf.value + " By "+ statsBy.value,
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      if (statsOf.value === "views" && statsBy.value === "years") {
 | 
				
			||||||
 | 
					        options.data[0].dataPoints = jsonMockViewsByYears;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      options.title.text = statsOf.value + " By "+ statsBy.value;
 | 
				
			||||||
 | 
					      chart.render()
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<template>
 | 
				
			||||||
 | 
					  <div id="main">
 | 
				
			||||||
 | 
					    <div id="profilePicture">
 | 
				
			||||||
 | 
					      <img src="/Clyde.png" />
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					    <div id="researcherInfos">
 | 
				
			||||||
 | 
					      <div class="surrounded">John Doe</div>
 | 
				
			||||||
 | 
					      <div class="surrounded">Orcid : 12144-2144-12336-B</div>
 | 
				
			||||||
 | 
					      <div class="surrounded">Email : John.Doe@umons.ac.be</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      <div class="surrounded">
 | 
				
			||||||
 | 
					        site :
 | 
				
			||||||
 | 
					        <a href="http://localhost:5173" style="color: #007aff">here</a>
 | 
				
			||||||
 | 
					      </div>
 | 
				
			||||||
 | 
					      <div class="surrounded">Domain : physics, IT</div>
 | 
				
			||||||
 | 
					      <div id="coAuthorList" class="surrounded">Co-authors list : D</div>
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					    <div id="stats">
 | 
				
			||||||
 | 
					      <div class="surrounded">
 | 
				
			||||||
 | 
					        Stat type :
 | 
				
			||||||
 | 
					        <select @change="update()" id="stats-select" v-model="statsOf">
 | 
				
			||||||
 | 
					          <option value="views">Views</option>
 | 
				
			||||||
 | 
					          <option value="co-authors">Co-authors</option>
 | 
				
			||||||
 | 
					          <option value="articles">Articles</option>
 | 
				
			||||||
 | 
					          <option value="language">Languages</option>
 | 
				
			||||||
 | 
					        </select>
 | 
				
			||||||
 | 
					      </div>
 | 
				
			||||||
 | 
					      <div class="surrounded">
 | 
				
			||||||
 | 
					        Class by:
 | 
				
			||||||
 | 
					        <select @change="update()" id="classed-select" v-model="statsBy">
 | 
				
			||||||
 | 
					          <option selected="selected" value="years">Years</option>
 | 
				
			||||||
 | 
					          <option value="months">Months</option>
 | 
				
			||||||
 | 
					          <option value="topics">Topics</option>
 | 
				
			||||||
 | 
					        </select>
 | 
				
			||||||
 | 
					      </div>
 | 
				
			||||||
 | 
					      <div id="statsPie">
 | 
				
			||||||
 | 
							  <CanvasJSChart :options="options" id=chart @chart-ref="c => chart = c "/>
 | 
				
			||||||
 | 
					      </div>
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					    <div id="articles">
 | 
				
			||||||
 | 
					      <input
 | 
				
			||||||
 | 
					        type="text"
 | 
				
			||||||
 | 
					        id="search-input"
 | 
				
			||||||
 | 
					        @keyup="inputKeyUp()"
 | 
				
			||||||
 | 
					        placeholder="search articles"
 | 
				
			||||||
 | 
					        v-model="input"
 | 
				
			||||||
 | 
					      />
 | 
				
			||||||
 | 
					      <ul id="myUL">
 | 
				
			||||||
 | 
					        <li><a href="#">Adele</a></li>
 | 
				
			||||||
 | 
					        <li><a href="#">Agnes</a></li>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <li><a href="#">Billy</a></li>
 | 
				
			||||||
 | 
					        <li><a href="#">Bob</a></li>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <li><a href="#">Calvin</a></li>
 | 
				
			||||||
 | 
					        <li><a href="#">Christina</a></li>
 | 
				
			||||||
 | 
					        <li><a href="#">Cindy</a></li>
 | 
				
			||||||
 | 
					      </ul>
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					  </div>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<style scoped>
 | 
				
			||||||
 | 
					#main {
 | 
				
			||||||
 | 
					  display: grid;
 | 
				
			||||||
 | 
					  grid-template-columns: 22% auto;
 | 
				
			||||||
 | 
					  grid-template-rows: 26% auto;
 | 
				
			||||||
 | 
					  height: 100%;
 | 
				
			||||||
 | 
					  width: 100%;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#profilePicture {
 | 
				
			||||||
 | 
					  display: flex;
 | 
				
			||||||
 | 
					  justify-content: center;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#profilePicture img {
 | 
				
			||||||
 | 
					  align-self: center;
 | 
				
			||||||
 | 
					  justify-self: center;
 | 
				
			||||||
 | 
					  width: 60%;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#researcherInfos {
 | 
				
			||||||
 | 
					  display: grid;
 | 
				
			||||||
 | 
					  grid-template-columns: auto auto auto;
 | 
				
			||||||
 | 
					  column-gap: 5px;
 | 
				
			||||||
 | 
					  grid-template-rows: auto auto;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.surrounded {
 | 
				
			||||||
 | 
					  border: 2px solid black;
 | 
				
			||||||
 | 
					  color: white;
 | 
				
			||||||
 | 
					  font-size: x-large;
 | 
				
			||||||
 | 
					  align-self: center;
 | 
				
			||||||
 | 
					  text-align: center;
 | 
				
			||||||
 | 
					  background-color: rgba(255, 255, 255, 0.09);
 | 
				
			||||||
 | 
					  border-radius: 20px;
 | 
				
			||||||
 | 
					  margin-bottom: 10px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.surrounded select {
 | 
				
			||||||
 | 
					  margin-top: 2px;
 | 
				
			||||||
 | 
					  margin-bottom: 2px;
 | 
				
			||||||
 | 
					  border: 1px solid black;
 | 
				
			||||||
 | 
					  color: white;
 | 
				
			||||||
 | 
					  background-color: rgb(255, 255, 255, 0.1);
 | 
				
			||||||
 | 
					  font-size: large;
 | 
				
			||||||
 | 
					  align-self: center;
 | 
				
			||||||
 | 
					  text-align: center;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#statsPie {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#articles {
 | 
				
			||||||
 | 
					  background-color: orange;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#search-input {
 | 
				
			||||||
 | 
					  width: 60%;
 | 
				
			||||||
 | 
					  font-size: 16px;
 | 
				
			||||||
 | 
					  padding: 12px 20px 12px 40px;
 | 
				
			||||||
 | 
					  border: 1px solid #ddd;
 | 
				
			||||||
 | 
					  margin-bottom: 12px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#myUL {
 | 
				
			||||||
 | 
					  list-style-type: none;
 | 
				
			||||||
 | 
					  padding: 0;
 | 
				
			||||||
 | 
					  margin: 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#myUL li a {
 | 
				
			||||||
 | 
					  border: 1px solid #ddd;
 | 
				
			||||||
 | 
					  /* Add a border to all links */
 | 
				
			||||||
 | 
					  margin-top: -1px;
 | 
				
			||||||
 | 
					  /* Prevent double borders */
 | 
				
			||||||
 | 
					  background-color: #f6f6f6;
 | 
				
			||||||
 | 
					  /* Grey background color */
 | 
				
			||||||
 | 
					  padding: 12px;
 | 
				
			||||||
 | 
					  /* Add some padding */
 | 
				
			||||||
 | 
					  text-decoration: none;
 | 
				
			||||||
 | 
					  /* Remove default text underline */
 | 
				
			||||||
 | 
					  font-size: 18px;
 | 
				
			||||||
 | 
					  /* Increase the font-size */
 | 
				
			||||||
 | 
					  color: black;
 | 
				
			||||||
 | 
					  /* Add a black text color */
 | 
				
			||||||
 | 
					  display: block;
 | 
				
			||||||
 | 
					  /* Make it into a block element to fill the whole list */
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#myUL li a:hover:not(.header) {
 | 
				
			||||||
 | 
					  background-color: #eee;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#Chart{
 | 
				
			||||||
 | 
					    width: "100%";
 | 
				
			||||||
 | 
					    height: "100%";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					</style>
 | 
				
			||||||
@ -4,10 +4,9 @@
 | 
				
			|||||||
  import { getStudents } from '../rest/Users.js'
 | 
					  import { getStudents } from '../rest/Users.js'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const users = await getStudents();
 | 
					  const users = await getStudents();
 | 
				
			||||||
  console.log(users)
 | 
					 | 
				
			||||||
</script> 
 | 
					</script> 
 | 
				
			||||||
<template>
 | 
					<template style="margin-top:5%;">
 | 
				
			||||||
  <div v-for="item in users">
 | 
					  <div style="display:flex; justify-content:center; " v-for="item in users">
 | 
				
			||||||
    <div class="bodu">
 | 
					    <div class="bodu">
 | 
				
			||||||
      <div class="container">
 | 
					      <div class="container">
 | 
				
			||||||
        <div class="status"><a style="margin-left:30px">{{item.status}}</a></div>
 | 
					        <div class="status"><a style="margin-left:30px">{{item.status}}</a></div>
 | 
				
			||||||
@ -26,10 +25,9 @@
 | 
				
			|||||||
    height:100px;
 | 
					    height:100px;
 | 
				
			||||||
    font-size:30px;
 | 
					    font-size:30px;
 | 
				
			||||||
    display:grid;
 | 
					    display:grid;
 | 
				
			||||||
    grid-template-columns:250px 250px 250px 250px 150px;
 | 
					    grid-template-columns:21.7% 21.7% 21.7% 21.7% 13.1%;
 | 
				
			||||||
    grid-template-areas:
 | 
					    grid-template-areas:
 | 
				
			||||||
    "status option surname firstname infos"; 
 | 
					    "status option surname firstname infos"; 
 | 
				
			||||||
    column-gap:10px;
 | 
					 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
@ -43,21 +41,6 @@
 | 
				
			|||||||
    align-self:center;
 | 
					    align-self:center;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .refuse{
 | 
					 | 
				
			||||||
    grid-area:refuse;
 | 
					 | 
				
			||||||
    align-self:center;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  .titles {
 | 
					 | 
				
			||||||
    grid-area:titles;
 | 
					 | 
				
			||||||
    background-color:rgb(215,215,215);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  .id{
 | 
					 | 
				
			||||||
    grid-area:id;
 | 
					 | 
				
			||||||
    margin-left:40px;
 | 
					 | 
				
			||||||
    align-self:center;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  .status{
 | 
					  .status{
 | 
				
			||||||
    grid-area:status;
 | 
					    grid-area:status;
 | 
				
			||||||
    align-self:center;
 | 
					    align-self:center;
 | 
				
			||||||
@ -82,15 +65,15 @@
 | 
				
			|||||||
  button{
 | 
					  button{
 | 
				
			||||||
    font-size:15px;
 | 
					    font-size:15px;
 | 
				
			||||||
     height:50px;
 | 
					     height:50px;
 | 
				
			||||||
     width:100px;
 | 
					     width:75%;
 | 
				
			||||||
    border:none;
 | 
					    border:none;
 | 
				
			||||||
    border-radius:20px;
 | 
					    border-radius:20px;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .bodu {
 | 
					  .bodu {
 | 
				
			||||||
    width:100%;
 | 
					    margin-top:2%;
 | 
				
			||||||
    margin-bottom:10px;
 | 
					    width:66%;
 | 
				
			||||||
    border:2px solid black;
 | 
					    border:2px solid black;
 | 
				
			||||||
    border-radius:9px;
 | 
					    border-radius:9px;
 | 
				
			||||||
    background-color:rgb(50,50,50);
 | 
					    background-color:rgb(50,50,50);
 | 
				
			||||||
 | 
				
			|||||||
@ -6,10 +6,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  const users = await getAllUsers();
 | 
					  const users = await getAllUsers();
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  console.log(users);
 | 
					 | 
				
			||||||
</script> 
 | 
					</script> 
 | 
				
			||||||
<template>
 | 
					<template style="margin-top:5%;">
 | 
				
			||||||
  <div v-for="item in users">
 | 
					  <div style="display:flex; justify-content:center; min-width:1140px;" v-for="item in users">
 | 
				
			||||||
    <div class="bodu">
 | 
					    <div class="bodu">
 | 
				
			||||||
      <div class="container">
 | 
					      <div class="container">
 | 
				
			||||||
        <div class="role"><a style="margin-left:30px">{{i18n(item.role)}}</a></div>
 | 
					        <div class="role"><a style="margin-left:30px">{{i18n(item.role)}}</a></div>
 | 
				
			||||||
@ -23,23 +22,20 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
<style scoped>
 | 
					<style scoped>
 | 
				
			||||||
  .container{
 | 
					  .container{
 | 
				
			||||||
    justify-content:center;
 | 
					 | 
				
			||||||
    align-items:center;
 | 
					 | 
				
			||||||
    color:white;
 | 
					    color:white;
 | 
				
			||||||
    height:100px;
 | 
					    height:100px;
 | 
				
			||||||
    font-size:30px;
 | 
					    font-size:30px;
 | 
				
			||||||
    display:grid;
 | 
					    display:grid;
 | 
				
			||||||
    grid-template-columns:250px 250px 250px 150px;
 | 
					    grid-template-columns:27.7% 27.7% 27.7% 16.9%;
 | 
				
			||||||
    grid-template-areas:
 | 
					    grid-template-areas:
 | 
				
			||||||
    "role surname firstname infos"; 
 | 
					    "role surname firstname infos"; 
 | 
				
			||||||
    column-gap:10px;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  .infos {
 | 
					  .infos {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    grid-area:infos;
 | 
					    grid-area:infos;
 | 
				
			||||||
    align-items:center;
 | 
					    align-self:center;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .role {
 | 
					  .role {
 | 
				
			||||||
@ -68,20 +64,18 @@
 | 
				
			|||||||
  button{
 | 
					  button{
 | 
				
			||||||
    font-size:15px;
 | 
					    font-size:15px;
 | 
				
			||||||
     height:50px;
 | 
					     height:50px;
 | 
				
			||||||
     width:100px;
 | 
					     width:75%;
 | 
				
			||||||
    border:none;
 | 
					    border:none;
 | 
				
			||||||
    border-radius:20px;
 | 
					    border-radius:20px;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .bodu {
 | 
					  .bodu {
 | 
				
			||||||
    width:100%;
 | 
					    margin-top:2%;
 | 
				
			||||||
    margin-bottom:10px;
 | 
					    width:66%;
 | 
				
			||||||
    border:2px solid black;
 | 
					    border:2px solid black;
 | 
				
			||||||
    border-radius:9px;
 | 
					    border-radius:9px;
 | 
				
			||||||
    background-color:rgb(50,50,50);
 | 
					    background-color:rgb(50,50,50);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
</style>
 | 
					</style>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -1,4 +1,11 @@
 | 
				
			|||||||
body {
 | 
					body {
 | 
				
			||||||
   background-color: rgb(53, 25, 60);
 | 
					   background-color: rgb(53, 25, 60);
 | 
				
			||||||
   margin:0;
 | 
					   margin:0;
 | 
				
			||||||
 | 
					   width: 100vw;
 | 
				
			||||||
 | 
					   height: 100vh;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#app {
 | 
				
			||||||
 | 
					   width: 100%;
 | 
				
			||||||
 | 
					   height: 100%;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
@ -4,5 +4,8 @@ import 'https://kit.fontawesome.com/fb3bbd0a95.js'
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import { createApp } from 'vue'
 | 
					import { createApp } from 'vue'
 | 
				
			||||||
import App from './App.vue'
 | 
					import App from './App.vue'
 | 
				
			||||||
 | 
					import CanvasJSChart from '@canvasjs/vue-charts';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
createApp(App).mount('#app')
 | 
					const app = createApp(App);
 | 
				
			||||||
 | 
					app.use(CanvasJSChart);
 | 
				
			||||||
 | 
					app.mount('#app');
 | 
				
			||||||
 | 
				
			|||||||
@ -140,8 +140,9 @@ export async function getSelf(){
 | 
				
			|||||||
 * - Adress
 | 
					 * - Adress
 | 
				
			||||||
 * - Password
 | 
					 * - Password
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
export async function alterSelf(data){
 | 
					export async function alterSelf(id,data){
 | 
				
			||||||
	return restPatch("/user", data);
 | 
					  console.log(data)
 | 
				
			||||||
 | 
						return restPatch("/user/"+id, data);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -9,6 +9,7 @@ import Profil from "@/Apps/Profil.vue"
 | 
				
			|||||||
import Courses from "@/Apps/ManageCourses.vue"
 | 
					import Courses from "@/Apps/ManageCourses.vue"
 | 
				
			||||||
import Users from "@/Apps/UsersList.vue"
 | 
					import Users from "@/Apps/UsersList.vue"
 | 
				
			||||||
import Students from "@/Apps/StudentsList.vue"
 | 
					import Students from "@/Apps/StudentsList.vue"
 | 
				
			||||||
 | 
					import ResearcherProfile from "@/Apps/ScientificPublications/ResearcherProfile.vue";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const apps = {
 | 
					const apps = {
 | 
				
			||||||
		'/login': LoginPage,
 | 
							'/login': LoginPage,
 | 
				
			||||||
@ -17,6 +18,7 @@ const apps = {
 | 
				
			|||||||
		'/manage-courses' : Courses,
 | 
							'/manage-courses' : Courses,
 | 
				
			||||||
		'/users-list' : Users,
 | 
							'/users-list' : Users,
 | 
				
			||||||
		'/students-list' : Students,
 | 
							'/students-list' : Students,
 | 
				
			||||||
 | 
							'/researcher-profile' : ResearcherProfile,
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const appsList = {
 | 
					const appsList = {
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user