Implement base controller for shared functionality; update existing controllers to inherit from BaseController and adjust user ID handling. Add JWT authentication support and modify item retrieval methods in GameDataController.
This commit is contained in:
parent
6d81ff1564
commit
b84599b370
4
.gitignore
vendored
4
.gitignore
vendored
@ -6,4 +6,6 @@ appsettings.Development.json
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
*.csproj.user
|
||||
*.csproj.user
|
||||
|
||||
game-data
|
13
Controllers/BaseController.cs
Normal file
13
Controllers/BaseController.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace PetCompanion.Controllers
|
||||
{
|
||||
[Authorize]
|
||||
[ApiController]
|
||||
[Route("api/v1/[controller]")]
|
||||
public class BaseController : Controller
|
||||
{
|
||||
protected string userId => User.Claims.FirstOrDefault(c => c.Type == "user_id").Value;
|
||||
}
|
||||
}
|
@ -3,13 +3,10 @@ using PetCompanion.Repositories;
|
||||
|
||||
namespace PetCompanion.Controllers
|
||||
{
|
||||
[ApiController]
|
||||
[Route("api/v1/[controller]")]
|
||||
public class GameDataController : Controller
|
||||
public class GameDataController : BaseController
|
||||
{
|
||||
private readonly GameItemsRepository gameItemsRepository;
|
||||
private readonly ILogger<InventoryController> logger;
|
||||
private readonly Guid userId = Guid.Parse("f5f4b3b3-3b7b-4b7b-8b7b-7b7b7b7b7b7b");
|
||||
|
||||
public GameDataController(
|
||||
ILogger<InventoryController> logger,
|
||||
@ -19,7 +16,20 @@ namespace PetCompanion.Controllers
|
||||
this.gameItemsRepository = gameItemsRepository;
|
||||
}
|
||||
|
||||
[HttpGet("item/icon/{itemId}")]
|
||||
[HttpGet("item/{itemId}")]
|
||||
public IActionResult GetItemInfo(int itemId)
|
||||
{
|
||||
try
|
||||
{
|
||||
return Ok(gameItemsRepository.GetById(itemId));
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return BadRequest(ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
[HttpGet("item/{itemId}/icon")]
|
||||
public IActionResult GetItemIcon(int itemId)
|
||||
{
|
||||
try
|
||||
|
@ -1,16 +1,14 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using PetCompanion.Models;
|
||||
using PetCompanion.Services;
|
||||
|
||||
namespace PetCompanion.Controllers
|
||||
{
|
||||
[ApiController]
|
||||
[Route("api/v1/[controller]")]
|
||||
public class InventoryController : ControllerBase
|
||||
public class InventoryController : BaseController
|
||||
{
|
||||
private readonly PetInventoryService inventoryService;
|
||||
private readonly ILogger<InventoryController> logger;
|
||||
private readonly Guid userId = Guid.Parse("f5f4b3b3-3b7b-4b7b-8b7b-7b7b7b7b7b7b");
|
||||
|
||||
public InventoryController(
|
||||
ILogger<InventoryController> logger,
|
||||
|
@ -4,14 +4,11 @@ using PetCompanion.Services;
|
||||
|
||||
namespace PetCompanion.Controllers
|
||||
{
|
||||
[ApiController]
|
||||
[Route("api/v1/[controller]")]
|
||||
public class PetController : ControllerBase
|
||||
public class PetController : BaseController
|
||||
{
|
||||
private readonly PetService petService;
|
||||
private readonly PetClassService petClassService;
|
||||
private readonly ILogger<PetController> logger;
|
||||
private Guid userId = Guid.Parse("f5f4b3b3-3b7b-4b7b-8b7b-7b7b7b7b7b7b");
|
||||
|
||||
public PetController(
|
||||
ILogger<PetController> logger,
|
||||
|
@ -3,14 +3,11 @@ using PetCompanion.Services;
|
||||
|
||||
namespace PetCompanion.Controllers
|
||||
{
|
||||
[ApiController]
|
||||
[Route("api/v1/[controller]")]
|
||||
public class SkillController : ControllerBase
|
||||
public class SkillController : BaseController
|
||||
{
|
||||
private readonly SkillService _skillService;
|
||||
private readonly PetSkillService _petSkillService;
|
||||
private readonly ILogger<SkillController> _logger;
|
||||
private Guid userId = Guid.Parse("f5f4b3b3-3b7b-4b7b-8b7b-7b7b7b7b7b7b");
|
||||
|
||||
public SkillController(
|
||||
ILogger<SkillController> logger,
|
||||
@ -34,7 +31,7 @@ namespace PetCompanion.Controllers
|
||||
{
|
||||
try
|
||||
{
|
||||
var skills = _petSkillService.GetPetSkills(petId, userId.ToString());
|
||||
var skills = _petSkillService.GetPetSkills(petId, userId);
|
||||
return Ok(skills);
|
||||
}
|
||||
catch (Exception ex)
|
||||
@ -48,7 +45,7 @@ namespace PetCompanion.Controllers
|
||||
{
|
||||
try
|
||||
{
|
||||
var result = _petSkillService.UpgradeSkill(petId, userId.ToString(), skillId);
|
||||
var result = _petSkillService.UpgradeSkill(petId, userId, skillId);
|
||||
return Ok(result);
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
23
Program.cs
23
Program.cs
@ -1,4 +1,6 @@
|
||||
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.IdentityModel.Tokens;
|
||||
using PetCompanion.Data;
|
||||
using PetCompanion.Repositories;
|
||||
using PetCompanion.Services;
|
||||
@ -12,6 +14,10 @@ namespace PetCompanion
|
||||
{
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Read Firebase configuration from environment variables
|
||||
var firebaseAppId = Environment.GetEnvironmentVariable("FIREBASE_APP_ID") ??
|
||||
throw new InvalidOperationException("FIREBASE_APP_ID environment variable is not set");
|
||||
|
||||
// Add services to the container.
|
||||
builder.Services.AddControllers()
|
||||
.AddJsonOptions(options =>
|
||||
@ -57,6 +63,21 @@ namespace PetCompanion
|
||||
});
|
||||
});
|
||||
|
||||
builder.Services
|
||||
.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
|
||||
.AddJwtBearer(options =>
|
||||
{
|
||||
options.Authority = $"https://securetoken.google.com/{firebaseAppId}";
|
||||
options.TokenValidationParameters = new TokenValidationParameters
|
||||
{
|
||||
ValidateIssuer = true,
|
||||
ValidIssuer = $"https://securetoken.google.com/{firebaseAppId}",
|
||||
ValidateAudience = true,
|
||||
ValidAudience = firebaseAppId,
|
||||
ValidateLifetime = true
|
||||
};
|
||||
});
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
@ -67,6 +88,8 @@ namespace PetCompanion
|
||||
}
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
|
||||
app.UseAuthentication();
|
||||
app.UseAuthorization();
|
||||
|
||||
// After app builder is created
|
||||
|
@ -64,11 +64,11 @@ namespace PetCompanion.Services
|
||||
|
||||
var gathered = new List<ActionGathered>();
|
||||
|
||||
var baseRate = timeElapsed + pet.Level * 10; // Base rate per hour
|
||||
var baseRate = (timeElapsed + pet.Level) / 10; // Base rate per hour
|
||||
gathered.Add(new ActionGathered
|
||||
{
|
||||
Resource = "Junk",
|
||||
Amount = (int)(baseRate * 2)
|
||||
Amount = (int)(baseRate * 0.2)
|
||||
});
|
||||
|
||||
var random = new Random();
|
||||
@ -79,28 +79,28 @@ namespace PetCompanion.Services
|
||||
gathered.Add(new ActionGathered
|
||||
{
|
||||
Resource = "Wisdom",
|
||||
Amount = (int)(baseRate * (pet.Stats.Intelligence * 2))
|
||||
Amount = (int)(baseRate * (pet.Stats.Intelligence * 0.5))
|
||||
});
|
||||
break;
|
||||
case PetActionGather.GATHERING_GOLD:
|
||||
gathered.Add(new ActionGathered
|
||||
{
|
||||
Resource = "Gold",
|
||||
Amount = (int)(baseRate * (pet.Stats.Charisma * 2))
|
||||
Amount = (int)(baseRate * (pet.Stats.Charisma * 0.5))
|
||||
});
|
||||
break;
|
||||
case PetActionGather.GATHERING_FOOD:
|
||||
gathered.Add(new ActionGathered
|
||||
{
|
||||
Resource = "Food",
|
||||
Amount = (int)(baseRate * (pet.Stats.Strength * 1.5))
|
||||
Amount = (int)(baseRate * (pet.Stats.Strength * 0.5))
|
||||
});
|
||||
break;
|
||||
case PetActionGather.EXPLORE:
|
||||
gathered.Add(new ActionGathered
|
||||
{
|
||||
Resource = "Wisdom",
|
||||
Amount = (int)(baseRate * (pet.Stats.Strength * 3))
|
||||
Amount = (int)(baseRate * (pet.Stats.Strength * 0.25))
|
||||
});
|
||||
|
||||
if (random.Next(0, 100) < 5)
|
||||
@ -122,7 +122,7 @@ namespace PetCompanion.Services
|
||||
gathered.Add(new ActionGathered
|
||||
{
|
||||
Resource = "Gold",
|
||||
Amount = (int)(baseRate * (pet.Stats.Strength * 3))
|
||||
Amount = (int)(baseRate * (pet.Stats.Strength * 0.25))
|
||||
});
|
||||
|
||||
if (random.Next(0, 100) < 10)
|
||||
@ -130,7 +130,7 @@ namespace PetCompanion.Services
|
||||
pet.Health -= random.Next(5, 10);
|
||||
}
|
||||
|
||||
if (random.Next(0, 100) < 500)
|
||||
if (random.Next(0, 100) < 10)
|
||||
{
|
||||
gathered.Add(new ActionGathered
|
||||
{
|
||||
|
@ -29,18 +29,18 @@ namespace PetCompanion.Services
|
||||
this.petActionService = petActionService;
|
||||
}
|
||||
|
||||
public IEnumerable<Pet> GetAllPets(Guid userId)
|
||||
public IEnumerable<Pet> GetAllPets(string userId)
|
||||
{
|
||||
return petRepository.GetPetsByUserId(userId.ToString());
|
||||
return petRepository.GetPetsByUserId(userId);
|
||||
}
|
||||
|
||||
public Pet CreatePet(Guid userId, PetCreationRequest petRequest)
|
||||
public Pet CreatePet(string userId, PetCreationRequest petRequest)
|
||||
{
|
||||
var petId = Guid.NewGuid().ToString();
|
||||
var pet = new Pet
|
||||
{
|
||||
Id = petId,
|
||||
UserId = userId.ToString(),
|
||||
UserId = userId,
|
||||
Name = petRequest.Name,
|
||||
Class = petRequest.Class,
|
||||
Health = 100,
|
||||
|
@ -12,6 +12,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="CsvHelper" Version="33.0.1" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.13" />
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.1" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.1">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
|
Loading…
x
Reference in New Issue
Block a user