// download - the download interface // Copyright (C) 2024 Ian Cowburn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using Npgsql; using System.Net; namespace download; public class ApiController : Controller { public IActionResult Get(string? key) { FileObject? file = GetDownload(key); if (file == null) { return StatusCode((int)HttpStatusCode.NotFound, String.Empty); } string ip_address = String.Format ("IP Address: {0}", Request?.HttpContext?.Connection?.RemoteIpAddress?.ToString() ?? "unknown"); string user_agent = String.Format ("User Agent: {0}", Request?.Headers?.UserAgent.ToString() ?? "unknown"); RecordDownload(key, new string[] {ip_address, user_agent}, DateTime.UtcNow); return File(file.Data, file.MimeType, file.FileName); } private FileObject? GetDownload(string key) { FileObject? ret = null; try { using var conn = new NpgsqlConnection(Config.Settings["ConnectionStrings:download"]); conn.Open(); using var cmd = new NpgsqlCommand("SELECT mime_type, file_name, data FROM file_object WHERE key = @key", conn); cmd.Parameters.AddWithValue("key", NpgsqlTypes.NpgsqlDbType.Varchar, key); using var reader = cmd.ExecuteReader(); if(reader.Read()) { ret = new FileObject(key, (string)reader["mime_type"], (string)reader["file_name"], (byte[])reader["data"]); } } catch(Exception e) { System.Diagnostics.Debug.WriteLine("GetDownload: Caught exception {0} - {1}", e.GetType().ToString(), e.Message); } return ret; } private void RecordDownload(string key, string[] info, DateTime time) { try { using var conn = new NpgsqlConnection(Config.Settings["ConnectionStrings:download"]); conn.Open(); using var cmd = new NpgsqlCommand("INSERT INTO download (key, info, time) VALUES (@key, @info, @time)", conn); cmd.Parameters.AddWithValue("key", NpgsqlTypes.NpgsqlDbType.Varchar, key); cmd.Parameters.AddWithValue("info", NpgsqlTypes.NpgsqlDbType.Array|NpgsqlTypes.NpgsqlDbType.Text, info); cmd.Parameters.AddWithValue("time", NpgsqlTypes.NpgsqlDbType.TimestampTz, time); cmd.ExecuteNonQuery(); } catch(Exception e) { System.Diagnostics.Debug.WriteLine("RecordDownload: Caught exception {0} - {1}", e.GetType().ToString(), e.Message); } } }