fixed some issue for the token authorization #87
No reviewers
Labels
No Label
Bug
Done
Pas urgent
Proposition
Question
TODO
Tests
URGENT BORDEL DE Q
Waiting for review
back
front
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: PGL/Clyde#87
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "Max/Backend/GetUser"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
wtf bro je sais même plus ou j'ai commencé mais je pense que .... ouai....
@ -0,0 +9,4 @@
import ovh.herisson.Clyde.Tables.Token;
@RestController
@CrossOrigin(origins = "http://localhost:5173")
Dans le dernier pr j'ai fait un petit changement au cross origin. Pour l'instant c'est bon mais c'est juste pour attirer l'attention sur ça !
@ -0,0 +20,4 @@
}
@GetMapping("/tokens")
C'est pour le debug ? Faudrait mettre un TODO pour mettre ça que pour les admins
@ -27,3 +26,1 @@
User user = authServ.getUserFromToken(token);
if (user == null) {
return new UnauthorizedResponse<>(null);
public ResponseEntity<User> getUser(@RequestHeader("Cookie") String cookie){
Pourquoi le passage à Coookie ?
@ -9,4 +9,5 @@ public interface TokenRepository extends CrudRepository<Token,Long> {
Token getByToken(String token);
Iterable<Token> getByUser(User user);
t'es sur ?
@ -28,1 +32,4 @@
bytes[i] = (byte) (((bytes[i]+256)%256 %95+ 32));
while ((char)bytes[i] == ';'){
bytes[i] = new SecureRandom().generateSeed(1)[0];
}
FAIT DU MD5
New commits pushed, approval review dismissed automatically according to repository settings