wow! avatars!!

This commit is contained in:
Lee
2024-04-06 05:45:50 +01:00
parent 50265b6228
commit 0819b228ba
10 changed files with 206 additions and 9 deletions

View File

@ -2,13 +2,15 @@ package cc.fascinated.api.controller;
import cc.fascinated.player.PlayerManagerService;
import cc.fascinated.player.impl.Player;
import cc.fascinated.player.impl.Skin;
import cc.fascinated.player.impl.SkinPart;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping(value = "/", produces = MediaType.APPLICATION_JSON_VALUE)
@RequestMapping(value = "/")
public class PlayerController {
private final PlayerManagerService playerManagerService;
@ -18,7 +20,7 @@ public class PlayerController {
this.playerManagerService = playerManagerService;
}
@GetMapping("/{id}") @ResponseBody
@GetMapping(value = "/{id}", produces = MediaType.APPLICATION_JSON_VALUE) @ResponseBody
public ResponseEntity<Player> getPlayer(@PathVariable String id) {
Player player = playerManagerService.getPlayer(id);
if (player == null) {
@ -26,4 +28,17 @@ public class PlayerController {
}
return ResponseEntity.ok(player);
}
@GetMapping(value = "/avatar/{id}")
public ResponseEntity<byte[]> getPlayerHead(@PathVariable String id) {
Player player = playerManagerService.getPlayer(id);
if (player == null) {
return null;
}
Skin skin = player.getSkin();
SkinPart head = skin.getHead();
return ResponseEntity.ok()
.contentType(MediaType.IMAGE_PNG)
.body(head.getPartData());
}
}