mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-11 04:37:03 -06:00
143 lines
5.4 KiB
C#
143 lines
5.4 KiB
C#
using CarCareTracker.External.Interfaces;
|
|
using CarCareTracker.Models;
|
|
using Npgsql;
|
|
|
|
namespace CarCareTracker.External.Implementations
|
|
{
|
|
public class PGTokenRecordDataAccess : ITokenRecordDataAccess
|
|
{
|
|
private NpgsqlDataSource pgDataSource;
|
|
private readonly ILogger<PGTokenRecordDataAccess> _logger;
|
|
private static string tableName = "tokenrecords";
|
|
public PGTokenRecordDataAccess(IConfiguration config, ILogger<PGTokenRecordDataAccess> logger)
|
|
{
|
|
pgDataSource = NpgsqlDataSource.Create(config["POSTGRES_CONNECTION"]);
|
|
_logger = logger;
|
|
try
|
|
{
|
|
//create table if not exist.
|
|
string initCMD = $"CREATE TABLE IF NOT EXISTS app.{tableName} (id INT GENERATED BY DEFAULT AS IDENTITY primary key, body TEXT not null, emailaddress TEXT not null)";
|
|
using (var ctext = pgDataSource.CreateCommand(initCMD))
|
|
{
|
|
ctext.ExecuteNonQuery();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex.Message);
|
|
}
|
|
}
|
|
public List<Token> GetTokens()
|
|
{
|
|
try
|
|
{
|
|
string cmd = $"SELECT id, emailaddress, body FROM app.{tableName}";
|
|
var results = new List<Token>();
|
|
using (var ctext = pgDataSource.CreateCommand(cmd))
|
|
{
|
|
using (NpgsqlDataReader reader = ctext.ExecuteReader())
|
|
while (reader.Read())
|
|
{
|
|
Token result = new Token();
|
|
result.Id = int.Parse(reader["id"].ToString());
|
|
result.EmailAddress = reader["emailaddress"].ToString();
|
|
result.Body = reader["body"].ToString();
|
|
results.Add(result);
|
|
}
|
|
}
|
|
return results;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex.Message);
|
|
return new List<Token>();
|
|
}
|
|
}
|
|
public Token GetTokenRecordByBody(string tokenBody)
|
|
{
|
|
try
|
|
{
|
|
string cmd = $"SELECT id, emailaddress, body FROM app.{tableName} WHERE body = @body";
|
|
var result = new Token();
|
|
using (var ctext = pgDataSource.CreateCommand(cmd))
|
|
{
|
|
ctext.Parameters.AddWithValue("body", tokenBody);
|
|
using (NpgsqlDataReader reader = ctext.ExecuteReader())
|
|
while (reader.Read())
|
|
{
|
|
result.Id = int.Parse(reader["id"].ToString());
|
|
result.EmailAddress = reader["emailaddress"].ToString();
|
|
result.Body = reader["body"].ToString();
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex.Message);
|
|
return new Token();
|
|
}
|
|
}
|
|
public Token GetTokenRecordByEmailAddress(string emailAddress)
|
|
{
|
|
try
|
|
{
|
|
string cmd = $"SELECT id, emailaddress, body FROM app.{tableName} WHERE emailaddress = @emailaddress";
|
|
var result = new Token();
|
|
using (var ctext = pgDataSource.CreateCommand(cmd))
|
|
{
|
|
ctext.Parameters.AddWithValue("emailaddress", emailAddress);
|
|
using (NpgsqlDataReader reader = ctext.ExecuteReader())
|
|
while (reader.Read())
|
|
{
|
|
result.Id = int.Parse(reader["id"].ToString());
|
|
result.EmailAddress = reader["emailaddress"].ToString();
|
|
result.Body = reader["body"].ToString();
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex.Message);
|
|
return new Token();
|
|
}
|
|
}
|
|
public bool CreateNewToken(Token token)
|
|
{
|
|
try
|
|
{
|
|
string cmd = $"INSERT INTO app.{tableName} (emailaddress, body) VALUES(@emailaddress, @body) RETURNING id";
|
|
using (var ctext = pgDataSource.CreateCommand(cmd))
|
|
{
|
|
ctext.Parameters.AddWithValue("emailaddress", token.EmailAddress);
|
|
ctext.Parameters.AddWithValue("body", token.Body);
|
|
token.Id = Convert.ToInt32(ctext.ExecuteScalar());
|
|
return token.Id != default;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex.Message);
|
|
return false;
|
|
}
|
|
}
|
|
public bool DeleteToken(int tokenId)
|
|
{
|
|
try
|
|
{
|
|
string cmd = $"DELETE FROM app.{tableName} WHERE id = @id";
|
|
using (var ctext = pgDataSource.CreateCommand(cmd))
|
|
{
|
|
ctext.Parameters.AddWithValue("id", tokenId);
|
|
return ctext.ExecuteNonQuery() > 0;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex.Message);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
} |