Blame view

src/main/java/etunicorn/LoginController.java 1.69 KB
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
1
2
  package etunicorn;
  
5596f9d9   Geoffrey PREUD'HOMME   Début de l'implém...
3
  import etunicorn.generated.model.UpdateLoginRequest;
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
4
5
6
7
  import org.springframework.beans.factory.annotation.Autowired;
  import org.springframework.http.HttpStatus;
  import org.springframework.http.ResponseEntity;
  import org.springframework.web.bind.annotation.PathVariable;
5596f9d9   Geoffrey PREUD'HOMME   Début de l'implém...
8
  import org.springframework.web.bind.annotation.RequestBody;
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
9
10
11
  import org.springframework.web.bind.annotation.RequestParam;
  import org.springframework.web.bind.annotation.RestController;
  
5596f9d9   Geoffrey PREUD'HOMME   Début de l'implém...
12
13
  import javax.validation.Valid;
  
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
14
  /**
3064f583   Geoffrey PREUD'HOMME   Copyright
15
16
17
   * etunicorn-server
   * Copyright © 2017 Le Club Info Polytech Lille
   * Tous droits réservés
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
18
19
20
21
   */
  @RestController
  public class LoginController implements etunicorn.generated.LoginController {
      @Autowired
8f35fffd   Geoffrey PREUD'HOMME   Ajout de la sécurité
22
23
24
25
      private PersonneRepository personneRepository;
  
      @Autowired
      private SessionService sessionService;
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
26
27
  
      @Override
8f35fffd   Geoffrey PREUD'HOMME   Ajout de la sécurité
28
      @RestrictedTo(authentifie = false)
5596f9d9   Geoffrey PREUD'HOMME   Début de l'implém...
29
30
31
      public ResponseEntity<?> updateLogin(@Valid @RequestBody UpdateLoginRequest updateLoginRequest) {
          return null;
      }
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
32
      public ResponseEntity<?> updateLogin(@RequestParam String login, @RequestParam String password) {
8f35fffd   Geoffrey PREUD'HOMME   Ajout de la sécurité
33
34
35
          Personne personne = personneRepository.findByLogin(login);
          if (personne == null) {
              return new ResponseEntity<Object>(HttpStatus.UNAUTHORIZED);
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
36
          }
8f35fffd   Geoffrey PREUD'HOMME   Ajout de la sécurité
37
38
39
40
41
42
43
44
45
  
          // TODO Vraie vérification du mot de passe
          if (!password.equals("test")) {
              return new ResponseEntity<Object>(HttpStatus.UNAUTHORIZED);
          }
  
          Session session = sessionService.createSession(personne);
  
          return new ResponseEntity<Object>(session, HttpStatus.OK);
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
46
47
      }
  
5596f9d9   Geoffrey PREUD'HOMME   Début de l'implém...
48
  
bae3c9f4   Geoffrey PREUD'HOMME   /login pour debug
49
50
51
52
53
      @Override
      public ResponseEntity<?> deleteLoginByToken(@PathVariable String token) {
          return null;
      }
  }