ExtensionDsLab/src/LogicalHacking.ExtensionDsLab/SqlConnector.fs

66 lines
3.8 KiB
Forth
Raw Normal View History

(*
* This file is part of the ExtensionDsLab project.
* Copyright (c) 2017 LogicalHacking.com
*
* 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, version 3.
*
* 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 <https://www.gnu.org/licenses/>.
*)
namespace LogicalHacking.ExtensionDsLab.Archive
open FSharp.Data.Sql
open System.IO
module SqlConnector =
let [<Literal>] DevelopmentDB = "aa-ac.sqlite"
let [<Literal>] FullDB = "full.sqlite"
let [<Literal>] DatabaseDir = "archive/db"
// static (compile time) ConnectionString
2017-08-11 20:57:50 +00:00
let [<Literal>] ConnectionString = @"Data Source="
+ __SOURCE_DIRECTORY__
+ @"/../resources/extensions-schema.sqlite"
+ @";Version=3"
// create a type alias with the connection string and database vendor settings
2017-08-12 19:39:29 +00:00
type ExtensionDbProvider = SqlDataProvider<
ConnectionString = ConnectionString,
DatabaseVendor = Common.DatabaseProviderTypes.SQLITE,
// ResolutionPath = ResolutionPath,
IndividualsAmount = 500,
UseOptionTypes = true >
2017-08-12 19:39:29 +00:00
type ExtensionDbType = ExtensionDbProvider.dataContext
2017-08-12 19:26:47 +00:00
2017-08-12 19:39:29 +00:00
type Db = Dev | Prod | Auto | Custom of string
let rec getCtx dir = let archiveDir = function
| None -> __SOURCE_DIRECTORY__ + @"/../.."
| Some s -> s
function
2017-08-12 19:39:29 +00:00
| Dev -> ExtensionDbProvider.GetDataContext(sprintf "Data Source=%s/%s/%s;Version=3"
(archiveDir dir) DatabaseDir DevelopmentDB)
| Prod -> ExtensionDbProvider.GetDataContext(sprintf "Data Source=%s/%s/%s;Version=3"
(archiveDir dir) DatabaseDir FullDB)
| Custom db -> ExtensionDbProvider.GetDataContext(sprintf "Data Source=%s/%s/%s;Version=3"
(archiveDir dir) DatabaseDir db)
| Auto -> if File.Exists(sprintf "%s/%s/%s" (archiveDir dir) DatabaseDir FullDB) then
getCtx dir Prod
else
getCtx dir Dev
2017-08-12 19:26:47 +00:00
2017-08-12 19:39:29 +00:00
let getDownloads (ctx:ExtensionDbType) extid =
query {
2017-08-12 19:26:47 +00:00
for order in ctx.Main.Extension do
where (order.Extid = Some extid)
select (order.Date, order.Downloads)
} |> Seq.filter (fun (date, download) -> date.IsSome && download.IsSome)
|> Seq.map (fun (date, download) -> (System.DateTime.Parse(date.Value),
download.Value))
|> Seq.toArray