Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1e6d984d95 | |||
| 9af41447b7 | |||
| f8b5902aa1 | |||
| 5f425adc1d | |||
| b0bf2cb083 | |||
| a5727a84fc | |||
| 817d7876db | |||
| 00034c0a26 | |||
| 907d759a23 | |||
| 7421f9c788 | |||
| dc31b65be8 | |||
| fa281124bb | |||
| 9491359b52 | |||
| 0ec4fd017f | |||
| 3df5c71d81 | |||
| c697001736 | |||
|
|
6c28cfc1ec | ||
| 8702723e01 | |||
| d621ede7bb | |||
| a826275510 | |||
| 2a86e41fe3 | |||
| babc77bbd0 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -254,3 +254,7 @@ paket-files/
|
|||||||
|
|
||||||
# Ionide VSCode extension
|
# Ionide VSCode extension
|
||||||
.ionide
|
.ionide
|
||||||
|
|
||||||
|
# in-progress: PHP version
|
||||||
|
src/app/vendor
|
||||||
|
**/.env
|
||||||
|
|||||||
@@ -6,6 +6,11 @@ Journaling has a long history; it helps people remember what happened, and the a
|
|||||||
|
|
||||||
myPrayerJournal was borne of out of a personal desire [Daniel](https://github.com/danieljsummers) had to have something that would help him with his prayer life. When it's time to pray, it's not really time to use an app, so the design goal here is to keep it simple and unobtrusive. It will also help eliminate some of the downsides to a paper prayer journal, like not remembering whether you've prayed for a request, or running out of room to write another update on one.
|
myPrayerJournal was borne of out of a personal desire [Daniel](https://github.com/danieljsummers) had to have something that would help him with his prayer life. When it's time to pray, it's not really time to use an app, so the design goal here is to keep it simple and unobtrusive. It will also help eliminate some of the downsides to a paper prayer journal, like not remembering whether you've prayed for a request, or running out of room to write another update on one.
|
||||||
|
|
||||||
## Futher Reading
|
## Further Reading
|
||||||
|
|
||||||
The documentation for the site is at <https://bit-badger.github.io/myPrayerJournal/>.
|
The documentation for the site is at <https://bit-badger.github.io/myPrayerJournal/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
_Thanks to [JetBrains](https://jb.gg/OpenSource) for licensing their awesome toolset to this project._
|
||||||
|
|
||||||
|
[<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.png" alt="JetBrains Logo (Main) logo" width="100" height="100">](https://jb.gg/OpenSource)
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
#!/snap/bin/pwsh
|
#!/snap/bin/pwsh
|
||||||
Set-Location src/MyPrayerJournal
|
Set-Location src/MyPrayerJournal
|
||||||
dotnet publish -c Release -r linux-x64 -p:PublishSingleFile=true --self-contained false
|
dotnet publish -c Release -r linux-x64 -p:PublishSingleFile=true --self-contained false --nologo
|
||||||
@@ -9,12 +9,6 @@
|
|||||||
<Compile Include="Program.fs" />
|
<Compile Include="Program.fs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="FSharp.Data" Version="4.2.3" />
|
|
||||||
<PackageReference Include="LiteDB" Version="5.0.11" />
|
|
||||||
<PackageReference Include="NodaTime" Version="3.0.9" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\MyPrayerJournal\MyPrayerJournal.fsproj" />
|
<ProjectReference Include="..\MyPrayerJournal\MyPrayerJournal.fsproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
114
src/MyPrayerJournal.ConvertRecurrence/Program.fs
Normal file
114
src/MyPrayerJournal.ConvertRecurrence/Program.fs
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
open MyPrayerJournal.Domain
|
||||||
|
open NodaTime
|
||||||
|
|
||||||
|
/// The old definition of the history entry
|
||||||
|
[<CLIMutable; NoComparison; NoEquality>]
|
||||||
|
type OldHistory =
|
||||||
|
{ /// The time when this history entry was made
|
||||||
|
asOf : int64
|
||||||
|
/// The status for this history entry
|
||||||
|
status : RequestAction
|
||||||
|
/// The text of the update, if applicable
|
||||||
|
text : string option
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The old definition of of the note entry
|
||||||
|
[<CLIMutable; NoComparison; NoEquality>]
|
||||||
|
type OldNote =
|
||||||
|
{ /// The time when this note was made
|
||||||
|
asOf : int64
|
||||||
|
|
||||||
|
/// The text of the notes
|
||||||
|
notes : string
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Request is the identifying record for a prayer request
|
||||||
|
[<CLIMutable; NoComparison; NoEquality>]
|
||||||
|
type OldRequest =
|
||||||
|
{ /// The ID of the request
|
||||||
|
id : RequestId
|
||||||
|
|
||||||
|
/// The time this request was initially entered
|
||||||
|
enteredOn : int64
|
||||||
|
|
||||||
|
/// The ID of the user to whom this request belongs ("sub" from the JWT)
|
||||||
|
userId : UserId
|
||||||
|
|
||||||
|
/// The time at which this request should reappear in the user's journal by manual user choice
|
||||||
|
snoozedUntil : int64
|
||||||
|
|
||||||
|
/// The time at which this request should reappear in the user's journal by recurrence
|
||||||
|
showAfter : int64
|
||||||
|
|
||||||
|
/// The type of recurrence for this request
|
||||||
|
recurType : string
|
||||||
|
|
||||||
|
/// How many of the recurrence intervals should occur between appearances in the journal
|
||||||
|
recurCount : int16
|
||||||
|
|
||||||
|
/// The history entries for this request
|
||||||
|
history : OldHistory[]
|
||||||
|
|
||||||
|
/// The notes for this request
|
||||||
|
notes : OldNote[]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
open LiteDB
|
||||||
|
open MyPrayerJournal.Data
|
||||||
|
|
||||||
|
let db = new LiteDatabase ("Filename=./mpj.db")
|
||||||
|
Startup.ensureDb db
|
||||||
|
|
||||||
|
/// Map the old recurrence to the new style
|
||||||
|
let mapRecurrence old =
|
||||||
|
match old.recurType with
|
||||||
|
| "Days" -> Days old.recurCount
|
||||||
|
| "Hours" -> Hours old.recurCount
|
||||||
|
| "Weeks" -> Weeks old.recurCount
|
||||||
|
| _ -> Immediate
|
||||||
|
|
||||||
|
/// Convert an old history entry to the new form
|
||||||
|
let convertHistory (old : OldHistory) =
|
||||||
|
{ AsOf = Instant.FromUnixTimeMilliseconds old.asOf
|
||||||
|
Status = old.status
|
||||||
|
Text = old.text
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Convert an old note to the new form
|
||||||
|
let convertNote (old : OldNote) =
|
||||||
|
{ AsOf = Instant.FromUnixTimeMilliseconds old.asOf
|
||||||
|
Notes = old.notes
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Convert items that may be Instant.MinValue or Instant(0) to None
|
||||||
|
let noneIfOld ms =
|
||||||
|
match Instant.FromUnixTimeMilliseconds ms with
|
||||||
|
| instant when instant > Instant.FromUnixTimeMilliseconds 0 -> Some instant
|
||||||
|
| _ -> None
|
||||||
|
|
||||||
|
/// Map the old request to the new request
|
||||||
|
let convert old =
|
||||||
|
{ Id = old.id
|
||||||
|
EnteredOn = Instant.FromUnixTimeMilliseconds old.enteredOn
|
||||||
|
UserId = old.userId
|
||||||
|
SnoozedUntil = noneIfOld old.snoozedUntil
|
||||||
|
ShowAfter = noneIfOld old.showAfter
|
||||||
|
Recurrence = mapRecurrence old
|
||||||
|
History = old.history |> Array.map convertHistory |> List.ofArray
|
||||||
|
Notes = old.notes |> Array.map convertNote |> List.ofArray
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Remove the old request, add the converted one (removes recurType / recurCount fields)
|
||||||
|
let replace (req : Request) =
|
||||||
|
db.Requests.Delete (Mapping.RequestId.toBson req.Id) |> ignore
|
||||||
|
db.Requests.Insert req |> ignore
|
||||||
|
db.Checkpoint ()
|
||||||
|
|
||||||
|
db.GetCollection<OldRequest>("request").FindAll ()
|
||||||
|
|> Seq.map convert
|
||||||
|
|> List.ofSeq
|
||||||
|
|> List.iter replace
|
||||||
|
|
||||||
|
// For more information see https://aka.ms/fsharp-console-apps
|
||||||
|
printfn "Done"
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
open FSharp.Data
|
|
||||||
open FSharp.Data.CsvExtensions
|
|
||||||
open LiteDB
|
|
||||||
open MyPrayerJournal.Domain
|
|
||||||
open NodaTime
|
|
||||||
|
|
||||||
module Subdocs =
|
|
||||||
|
|
||||||
open FSharp.Data.JsonExtensions
|
|
||||||
|
|
||||||
let history json =
|
|
||||||
match JsonValue.Parse json with
|
|
||||||
| JsonValue.Array hist ->
|
|
||||||
hist
|
|
||||||
|> Array.map (fun h ->
|
|
||||||
{ asOf = (h?asOf.AsInteger64 >> Instant.FromUnixTimeMilliseconds) ()
|
|
||||||
status = h?status.AsString () |> RequestAction.ofString
|
|
||||||
text = match h?text.AsString () with "" -> None | txt -> Some txt
|
|
||||||
})
|
|
||||||
|> List.ofArray
|
|
||||||
| _ -> []
|
|
||||||
|
|
||||||
let notes json =
|
|
||||||
match JsonValue.Parse json with
|
|
||||||
| JsonValue.Array notes ->
|
|
||||||
notes
|
|
||||||
|> Array.map (fun n ->
|
|
||||||
{ asOf = (n?asOf.AsInteger64 >> Instant.FromUnixTimeMilliseconds) ()
|
|
||||||
notes = n?notes.AsString ()
|
|
||||||
})
|
|
||||||
|> List.ofArray
|
|
||||||
| _ -> []
|
|
||||||
|
|
||||||
let oldData = CsvFile.Load("data.csv")
|
|
||||||
|
|
||||||
let db = new LiteDatabase("Filename=./mpj.db")
|
|
||||||
|
|
||||||
MyPrayerJournal.Data.Startup.ensureDb db
|
|
||||||
|
|
||||||
let migrated =
|
|
||||||
oldData.Rows
|
|
||||||
|> Seq.map (fun r ->
|
|
||||||
{ id = r["@id"].Replace ("Requests/", "") |> RequestId.ofString
|
|
||||||
enteredOn = (r?enteredOn.AsInteger64 >> Instant.FromUnixTimeMilliseconds) ()
|
|
||||||
userId = UserId r?userId
|
|
||||||
snoozedUntil = (r?snoozedUntil.AsInteger64 >> Instant.FromUnixTimeMilliseconds) ()
|
|
||||||
showAfter = (r?showAfter.AsInteger64 >> Instant.FromUnixTimeMilliseconds) ()
|
|
||||||
recurType = r?recurType |> Recurrence.ofString
|
|
||||||
recurCount = (r?recurCount.AsInteger >> int16) ()
|
|
||||||
history = Subdocs.history r?history
|
|
||||||
notes = Subdocs.notes r?notes
|
|
||||||
})
|
|
||||||
|> db.GetCollection<Request>("request").Insert
|
|
||||||
|
|
||||||
db.Checkpoint ()
|
|
||||||
|
|
||||||
printfn $"Migrated {migrated} requests"
|
|
||||||
28
src/MyPrayerJournal.sln
Normal file
28
src/MyPrayerJournal.sln
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 16
|
||||||
|
VisualStudioVersion = 16.0.30114.105
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "MyPrayerJournal", "MyPrayerJournal\MyPrayerJournal.fsproj", "{6BD5A3C8-F859-42A0-ACD7-A5819385E828}"
|
||||||
|
EndProject
|
||||||
|
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "MyPrayerJournal.ConvertRecurrence", "MyPrayerJournal.ConvertRecurrence\MyPrayerJournal.ConvertRecurrence.fsproj", "{72B57736-8721-4636-A309-49FA4222416E}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{6BD5A3C8-F859-42A0-ACD7-A5819385E828}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{6BD5A3C8-F859-42A0-ACD7-A5819385E828}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{6BD5A3C8-F859-42A0-ACD7-A5819385E828}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{6BD5A3C8-F859-42A0-ACD7-A5819385E828}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{72B57736-8721-4636-A309-49FA4222416E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{72B57736-8721-4636-A309-49FA4222416E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{72B57736-8721-4636-A309-49FA4222416E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{72B57736-8721-4636-A309-49FA4222416E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
@@ -1,25 +1,23 @@
|
|||||||
module MyPrayerJournal.Data
|
module MyPrayerJournal.Data
|
||||||
|
|
||||||
open LiteDB
|
open LiteDB
|
||||||
open NodaTime
|
open MyPrayerJournal
|
||||||
open System
|
|
||||||
open System.Threading.Tasks
|
open System.Threading.Tasks
|
||||||
|
|
||||||
// fsharplint:disable MemberNames
|
|
||||||
|
|
||||||
/// LiteDB extensions
|
/// LiteDB extensions
|
||||||
[<AutoOpen>]
|
[<AutoOpen>]
|
||||||
module Extensions =
|
module Extensions =
|
||||||
|
|
||||||
/// Extensions on the LiteDatabase class
|
/// Extensions on the LiteDatabase class
|
||||||
type LiteDatabase with
|
type LiteDatabase with
|
||||||
/// The Request collection
|
|
||||||
member this.requests
|
/// The Request collection
|
||||||
with get () = this.GetCollection<Request> "request"
|
member this.Requests = this.GetCollection<Request> "request"
|
||||||
/// Async version of the checkpoint command (flushes log)
|
|
||||||
member this.saveChanges () =
|
/// Async version of the checkpoint command (flushes log)
|
||||||
this.Checkpoint ()
|
member this.SaveChanges () =
|
||||||
Task.CompletedTask
|
this.Checkpoint ()
|
||||||
|
Task.CompletedTask
|
||||||
|
|
||||||
|
|
||||||
/// Map domain to LiteDB
|
/// Map domain to LiteDB
|
||||||
@@ -27,183 +25,175 @@ module Extensions =
|
|||||||
[<RequireQualifiedAccess>]
|
[<RequireQualifiedAccess>]
|
||||||
module Mapping =
|
module Mapping =
|
||||||
|
|
||||||
/// Map a history entry to BSON
|
open NodaTime
|
||||||
let historyToBson (hist : History) : BsonValue =
|
open NodaTime.Text
|
||||||
let doc = BsonDocument ()
|
|
||||||
doc["asOf"] <- hist.asOf.ToUnixTimeMilliseconds ()
|
|
||||||
doc["status"] <- RequestAction.toString hist.status
|
|
||||||
doc["text"] <- match hist.text with Some t -> t | None -> ""
|
|
||||||
upcast doc
|
|
||||||
|
|
||||||
/// Map a BSON document to a history entry
|
/// A NodaTime instant pattern to use for parsing instants from the database
|
||||||
let historyFromBson (doc : BsonValue) =
|
let instantPattern = InstantPattern.CreateWithInvariantCulture "g"
|
||||||
{ asOf = Instant.FromUnixTimeMilliseconds doc["asOf"].AsInt64
|
|
||||||
status = RequestAction.ofString doc["status"].AsString
|
|
||||||
text = match doc["text"].AsString with "" -> None | txt -> Some txt
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Map a note entry to BSON
|
/// Mapping for NodaTime's Instant type
|
||||||
let noteToBson (note : Note) : BsonValue =
|
module Instant =
|
||||||
let doc = BsonDocument ()
|
let fromBson (value : BsonValue) = (instantPattern.Parse value.AsString).Value
|
||||||
doc["asOf"] <- note.asOf.ToUnixTimeMilliseconds ()
|
let toBson (value : Instant) : BsonValue = value.ToString ("g", null)
|
||||||
doc["notes"] <- note.notes
|
|
||||||
upcast doc
|
|
||||||
|
|
||||||
/// Map a BSON document to a note entry
|
/// Mapping for option types
|
||||||
let noteFromBson (doc : BsonValue) =
|
module Option =
|
||||||
{ asOf = Instant.FromUnixTimeMilliseconds doc["asOf"].AsInt64
|
let instantFromBson (value : BsonValue) = if value.IsNull then None else Some (Instant.fromBson value)
|
||||||
notes = doc["notes"].AsString
|
let instantToBson (value : Instant option) = match value with Some it -> Instant.toBson it | None -> null
|
||||||
}
|
|
||||||
|
|
||||||
/// Map a request to its BSON representation
|
let stringFromBson (value : BsonValue) = match value.AsString with "" -> None | x -> Some x
|
||||||
let requestToBson req : BsonValue =
|
let stringToBson (value : string option) : BsonValue = match value with Some txt -> txt | None -> ""
|
||||||
let doc = BsonDocument ()
|
|
||||||
doc["_id"] <- RequestId.toString req.id
|
|
||||||
doc["enteredOn"] <- req.enteredOn.ToUnixTimeMilliseconds ()
|
|
||||||
doc["userId"] <- UserId.toString req.userId
|
|
||||||
doc["snoozedUntil"] <- req.snoozedUntil.ToUnixTimeMilliseconds ()
|
|
||||||
doc["showAfter"] <- req.showAfter.ToUnixTimeMilliseconds ()
|
|
||||||
doc["recurType"] <- Recurrence.toString req.recurType
|
|
||||||
doc["recurCount"] <- BsonValue req.recurCount
|
|
||||||
doc["history"] <- BsonArray (req.history |> List.map historyToBson |> Seq.ofList)
|
|
||||||
doc["notes"] <- BsonArray (req.notes |> List.map noteToBson |> Seq.ofList)
|
|
||||||
upcast doc
|
|
||||||
|
|
||||||
/// Map a BSON document to a request
|
/// Mapping for Recurrence
|
||||||
let requestFromBson (doc : BsonValue) =
|
module Recurrence =
|
||||||
{ id = RequestId.ofString doc["_id"].AsString
|
let fromBson (value : BsonValue) = Recurrence.ofString value
|
||||||
enteredOn = Instant.FromUnixTimeMilliseconds doc["enteredOn"].AsInt64
|
let toBson (value : Recurrence) : BsonValue = Recurrence.toString value
|
||||||
userId = UserId doc["userId"].AsString
|
|
||||||
snoozedUntil = Instant.FromUnixTimeMilliseconds doc["snoozedUntil"].AsInt64
|
|
||||||
showAfter = Instant.FromUnixTimeMilliseconds doc["showAfter"].AsInt64
|
|
||||||
recurType = Recurrence.ofString doc["recurType"].AsString
|
|
||||||
recurCount = int16 doc["recurCount"].AsInt32
|
|
||||||
history = doc["history"].AsArray |> Seq.map historyFromBson |> List.ofSeq
|
|
||||||
notes = doc["notes"].AsArray |> Seq.map noteFromBson |> List.ofSeq
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Set up the mapping
|
/// Mapping for RequestAction
|
||||||
let register () =
|
module RequestAction =
|
||||||
BsonMapper.Global.RegisterType<Request>(
|
let fromBson (value : BsonValue) = RequestAction.ofString value.AsString
|
||||||
Func<Request, BsonValue> requestToBson, Func<BsonValue, Request> requestFromBson)
|
let toBson (value : RequestAction) : BsonValue = RequestAction.toString value
|
||||||
|
|
||||||
|
/// Mapping for RequestId
|
||||||
|
module RequestId =
|
||||||
|
let fromBson (value : BsonValue) = RequestId.ofString value.AsString
|
||||||
|
let toBson (value : RequestId) : BsonValue = RequestId.toString value
|
||||||
|
|
||||||
|
/// Mapping for UserId
|
||||||
|
module UserId =
|
||||||
|
let fromBson (value : BsonValue) = UserId value.AsString
|
||||||
|
let toBson (value : UserId) : BsonValue = UserId.toString value
|
||||||
|
|
||||||
|
/// Set up the mapping
|
||||||
|
let register () =
|
||||||
|
BsonMapper.Global.RegisterType<Instant>(Instant.toBson, Instant.fromBson)
|
||||||
|
BsonMapper.Global.RegisterType<Instant option>(Option.instantToBson, Option.instantFromBson)
|
||||||
|
BsonMapper.Global.RegisterType<Recurrence>(Recurrence.toBson, Recurrence.fromBson)
|
||||||
|
BsonMapper.Global.RegisterType<RequestAction>(RequestAction.toBson, RequestAction.fromBson)
|
||||||
|
BsonMapper.Global.RegisterType<RequestId>(RequestId.toBson, RequestId.fromBson)
|
||||||
|
BsonMapper.Global.RegisterType<string option>(Option.stringToBson, Option.stringFromBson)
|
||||||
|
BsonMapper.Global.RegisterType<UserId>(UserId.toBson, UserId.fromBson)
|
||||||
|
|
||||||
/// Code to be run at startup
|
/// Code to be run at startup
|
||||||
module Startup =
|
module Startup =
|
||||||
|
|
||||||
/// Ensure the database is set up
|
/// Ensure the database is set up
|
||||||
let ensureDb (db : LiteDatabase) =
|
let ensureDb (db : LiteDatabase) =
|
||||||
db.requests.EnsureIndex (fun it -> it.userId) |> ignore
|
db.Requests.EnsureIndex (fun it -> it.UserId) |> ignore
|
||||||
Mapping.register ()
|
Mapping.register ()
|
||||||
|
|
||||||
|
|
||||||
/// Async wrappers for LiteDB, and request -> journal mappings
|
/// Async wrappers for LiteDB, and request -> journal mappings
|
||||||
[<AutoOpen>]
|
[<AutoOpen>]
|
||||||
module private Helpers =
|
module private Helpers =
|
||||||
|
|
||||||
open System.Linq
|
open System.Linq
|
||||||
|
|
||||||
/// Convert a sequence to a list asynchronously (used for LiteDB IO)
|
/// Convert a sequence to a list asynchronously (used for LiteDB IO)
|
||||||
let toListAsync<'T> (q : 'T seq) =
|
let toListAsync<'T> (q : 'T seq) =
|
||||||
(q.ToList >> Task.FromResult) ()
|
(q.ToList >> Task.FromResult) ()
|
||||||
|
|
||||||
/// Convert a sequence to a list asynchronously (used for LiteDB IO)
|
/// Convert a sequence to a list asynchronously (used for LiteDB IO)
|
||||||
let firstAsync<'T> (q : 'T seq) =
|
let firstAsync<'T> (q : 'T seq) =
|
||||||
q.FirstOrDefault () |> Task.FromResult
|
q.FirstOrDefault () |> Task.FromResult
|
||||||
|
|
||||||
/// Async wrapper around a request update
|
/// Async wrapper around a request update
|
||||||
let doUpdate (db : LiteDatabase) (req : Request) =
|
let doUpdate (db : LiteDatabase) (req : Request) =
|
||||||
db.requests.Update req |> ignore
|
db.Requests.Update req |> ignore
|
||||||
Task.CompletedTask
|
Task.CompletedTask
|
||||||
|
|
||||||
|
|
||||||
/// Retrieve a request, including its history and notes, by its ID and user ID
|
/// Retrieve a request, including its history and notes, by its ID and user ID
|
||||||
let tryFullRequestById reqId userId (db : LiteDatabase) = backgroundTask {
|
let tryFullRequestById reqId userId (db : LiteDatabase) = backgroundTask {
|
||||||
let! req = db.requests.Find (Query.EQ ("_id", RequestId.toString reqId)) |> firstAsync
|
let! req = db.Requests.Find (Query.EQ ("_id", RequestId.toString reqId)) |> firstAsync
|
||||||
return match box req with null -> None | _ when req.userId = userId -> Some req | _ -> None
|
return match box req with null -> None | _ when req.UserId = userId -> Some req | _ -> None
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add a history entry
|
/// Add a history entry
|
||||||
let addHistory reqId userId hist db = backgroundTask {
|
let addHistory reqId userId hist db = backgroundTask {
|
||||||
match! tryFullRequestById reqId userId db with
|
match! tryFullRequestById reqId userId db with
|
||||||
| Some req -> do! doUpdate db { req with history = hist :: req.history }
|
| Some req -> do! doUpdate db { req with History = Array.append [| hist |] req.History }
|
||||||
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add a note
|
/// Add a note
|
||||||
let addNote reqId userId note db = backgroundTask {
|
let addNote reqId userId note db = backgroundTask {
|
||||||
match! tryFullRequestById reqId userId db with
|
match! tryFullRequestById reqId userId db with
|
||||||
| Some req -> do! doUpdate db { req with notes = note :: req.notes }
|
| Some req -> do! doUpdate db { req with Notes = Array.append [| note |] req.Notes }
|
||||||
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add a request
|
/// Add a request
|
||||||
let addRequest (req : Request) (db : LiteDatabase) =
|
let addRequest (req : Request) (db : LiteDatabase) =
|
||||||
db.requests.Insert req |> ignore
|
db.Requests.Insert req |> ignore
|
||||||
|
|
||||||
// FIXME: make a common function here
|
/// Find all requests for the given user
|
||||||
|
let private getRequestsForUser (userId : UserId) (db : LiteDatabase) = backgroundTask {
|
||||||
|
return! db.Requests.Find (Query.EQ (nameof Request.empty.UserId, Mapping.UserId.toBson userId)) |> toListAsync
|
||||||
|
}
|
||||||
|
|
||||||
/// Retrieve all answered requests for the given user
|
/// Retrieve all answered requests for the given user
|
||||||
let answeredRequests userId (db : LiteDatabase) = backgroundTask {
|
let answeredRequests userId db = backgroundTask {
|
||||||
let! reqs = db.requests.Find (Query.EQ ("userId", UserId.toString userId)) |> toListAsync
|
let! reqs = getRequestsForUser userId db
|
||||||
return
|
return
|
||||||
reqs
|
reqs
|
||||||
|> Seq.map JournalRequest.ofRequestFull
|
|> Seq.map JournalRequest.ofRequestFull
|
||||||
|> Seq.filter (fun it -> it.lastStatus = Answered)
|
|> Seq.filter (fun it -> it.LastStatus = Answered)
|
||||||
|> Seq.sortByDescending (fun it -> it.asOf)
|
|> Seq.sortByDescending (fun it -> it.AsOf)
|
||||||
|> List.ofSeq
|
|> List.ofSeq
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Retrieve the user's current journal
|
/// Retrieve the user's current journal
|
||||||
let journalByUserId userId (db : LiteDatabase) = backgroundTask {
|
let journalByUserId userId db = backgroundTask {
|
||||||
let! jrnl = db.requests.Find (Query.EQ ("userId", UserId.toString userId)) |> toListAsync
|
let! reqs = getRequestsForUser userId db
|
||||||
return
|
return
|
||||||
jrnl
|
reqs
|
||||||
|> Seq.map JournalRequest.ofRequestLite
|
|> Seq.map JournalRequest.ofRequestLite
|
||||||
|> Seq.filter (fun it -> it.lastStatus <> Answered)
|
|> Seq.filter (fun it -> it.LastStatus <> Answered)
|
||||||
|> Seq.sortBy (fun it -> it.asOf)
|
|> Seq.sortBy (fun it -> it.AsOf)
|
||||||
|> List.ofSeq
|
|> List.ofSeq
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Does the user have any snoozed requests?
|
/// Does the user have any snoozed requests?
|
||||||
let hasSnoozed userId now (db : LiteDatabase) = backgroundTask {
|
let hasSnoozed userId now (db : LiteDatabase) = backgroundTask {
|
||||||
let! jrnl = journalByUserId userId db
|
let! jrnl = journalByUserId userId db
|
||||||
return jrnl |> List.exists (fun r -> r.snoozedUntil > now)
|
return jrnl |> List.exists (fun r -> defaultArg (r.SnoozedUntil |> Option.map (fun it -> it > now)) false)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Retrieve a request by its ID and user ID (without notes and history)
|
/// Retrieve a request by its ID and user ID (without notes and history)
|
||||||
let tryRequestById reqId userId db = backgroundTask {
|
let tryRequestById reqId userId db = backgroundTask {
|
||||||
let! req = tryFullRequestById reqId userId db
|
let! req = tryFullRequestById reqId userId db
|
||||||
return req |> Option.map (fun r -> { r with history = []; notes = [] })
|
return req |> Option.map (fun r -> { r with History = [||]; Notes = [||] })
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Retrieve notes for a request by its ID and user ID
|
/// Retrieve notes for a request by its ID and user ID
|
||||||
let notesById reqId userId (db : LiteDatabase) = backgroundTask {
|
let notesById reqId userId (db : LiteDatabase) = backgroundTask {
|
||||||
match! tryFullRequestById reqId userId db with | Some req -> return req.notes | None -> return []
|
match! tryFullRequestById reqId userId db with | Some req -> return req.Notes | None -> return [||]
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Retrieve a journal request by its ID and user ID
|
/// Retrieve a journal request by its ID and user ID
|
||||||
let tryJournalById reqId userId (db : LiteDatabase) = backgroundTask {
|
let tryJournalById reqId userId (db : LiteDatabase) = backgroundTask {
|
||||||
let! req = tryFullRequestById reqId userId db
|
let! req = tryFullRequestById reqId userId db
|
||||||
return req |> Option.map JournalRequest.ofRequestLite
|
return req |> Option.map JournalRequest.ofRequestLite
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Update the recurrence for a request
|
/// Update the recurrence for a request
|
||||||
let updateRecurrence reqId userId recurType recurCount db = backgroundTask {
|
let updateRecurrence reqId userId recurType db = backgroundTask {
|
||||||
match! tryFullRequestById reqId userId db with
|
match! tryFullRequestById reqId userId db with
|
||||||
| Some req -> do! doUpdate db { req with recurType = recurType; recurCount = recurCount }
|
| Some req -> do! doUpdate db { req with Recurrence = recurType }
|
||||||
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Update a snoozed request
|
/// Update a snoozed request
|
||||||
let updateSnoozed reqId userId until db = backgroundTask {
|
let updateSnoozed reqId userId until db = backgroundTask {
|
||||||
match! tryFullRequestById reqId userId db with
|
match! tryFullRequestById reqId userId db with
|
||||||
| Some req -> do! doUpdate db { req with snoozedUntil = until; showAfter = until }
|
| Some req -> do! doUpdate db { req with SnoozedUntil = until; ShowAfter = until }
|
||||||
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Update the "show after" timestamp for a request
|
/// Update the "show after" timestamp for a request
|
||||||
let updateShowAfter reqId userId showAfter db = backgroundTask {
|
let updateShowAfter reqId userId showAfter db = backgroundTask {
|
||||||
match! tryFullRequestById reqId userId db with
|
match! tryFullRequestById reqId userId db with
|
||||||
| Some req -> do! doUpdate db { req with showAfter = showAfter }
|
| Some req -> do! doUpdate db { req with ShowAfter = showAfter }
|
||||||
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
| None -> invalidOp $"{RequestId.toString reqId} not found"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,39 +5,39 @@ module MyPrayerJournal.Dates
|
|||||||
open NodaTime
|
open NodaTime
|
||||||
|
|
||||||
type internal FormatDistanceToken =
|
type internal FormatDistanceToken =
|
||||||
| LessThanXMinutes
|
| LessThanXMinutes
|
||||||
| XMinutes
|
| XMinutes
|
||||||
| AboutXHours
|
| AboutXHours
|
||||||
| XHours
|
| XHours
|
||||||
| XDays
|
| XDays
|
||||||
| AboutXWeeks
|
| AboutXWeeks
|
||||||
| XWeeks
|
| XWeeks
|
||||||
| AboutXMonths
|
| AboutXMonths
|
||||||
| XMonths
|
| XMonths
|
||||||
| AboutXYears
|
| AboutXYears
|
||||||
| XYears
|
| XYears
|
||||||
| OverXYears
|
| OverXYears
|
||||||
| AlmostXYears
|
| AlmostXYears
|
||||||
|
|
||||||
let internal locales =
|
let internal locales =
|
||||||
let format = PrintfFormat<int -> string, unit, string, string>
|
let format = PrintfFormat<int -> string, unit, string, string>
|
||||||
Map.ofList [
|
Map.ofList [
|
||||||
"en-US", Map.ofList [
|
"en-US", Map.ofList [
|
||||||
LessThanXMinutes, ("less than a minute", format "less than %i minutes")
|
LessThanXMinutes, ("less than a minute", format "less than %i minutes")
|
||||||
XMinutes, ("a minute", format "%i minutes")
|
XMinutes, ("a minute", format "%i minutes")
|
||||||
AboutXHours, ("about an hour", format "about %i hours")
|
AboutXHours, ("about an hour", format "about %i hours")
|
||||||
XHours, ("an hour", format "%i hours")
|
XHours, ("an hour", format "%i hours")
|
||||||
XDays, ("a day", format "%i days")
|
XDays, ("a day", format "%i days")
|
||||||
AboutXWeeks, ("about a week", format "about %i weeks")
|
AboutXWeeks, ("about a week", format "about %i weeks")
|
||||||
XWeeks, ("a week", format "%i weeks")
|
XWeeks, ("a week", format "%i weeks")
|
||||||
AboutXMonths, ("about a month", format "about %i months")
|
AboutXMonths, ("about a month", format "about %i months")
|
||||||
XMonths, ("a month", format "%i months")
|
XMonths, ("a month", format "%i months")
|
||||||
AboutXYears, ("about a year", format "about %i years")
|
AboutXYears, ("about a year", format "about %i years")
|
||||||
XYears, ("a year", format "%i years")
|
XYears, ("a year", format "%i years")
|
||||||
OverXYears, ("over a year", format "over %i years")
|
OverXYears, ("over a year", format "over %i years")
|
||||||
AlmostXYears, ("almost a year", format "almost %i years")
|
AlmostXYears, ("almost a year", format "almost %i years")
|
||||||
|
]
|
||||||
]
|
]
|
||||||
]
|
|
||||||
|
|
||||||
let aDay = 1_440.
|
let aDay = 1_440.
|
||||||
let almost2Days = 2_520.
|
let almost2Days = 2_520.
|
||||||
@@ -46,33 +46,31 @@ let twoMonths = 86_400.
|
|||||||
|
|
||||||
open System
|
open System
|
||||||
|
|
||||||
/// Convert from a JavaScript "ticks" value to a date/time
|
/// Format the distance between two instants in approximate English terms
|
||||||
let fromJs ticks = DateTime.UnixEpoch + TimeSpan.FromTicks (ticks * 10_000L)
|
let formatDistance (startOn : Instant) (endOn : Instant) =
|
||||||
|
let format (token, number) locale =
|
||||||
|
let labels = locales |> Map.find locale
|
||||||
|
match number with 1 -> fst labels[token] | _ -> sprintf (snd labels[token]) number
|
||||||
|
let round (it : float) = Math.Round it |> int
|
||||||
|
|
||||||
let formatDistance (startDate : Instant) (endDate : Instant) =
|
let diff = startOn - endOn
|
||||||
let format (token, number) locale =
|
let minutes = Math.Abs diff.TotalMinutes
|
||||||
let labels = locales |> Map.find locale
|
let formatToken =
|
||||||
match number with 1 -> fst labels[token] | _ -> sprintf (snd labels[token]) number
|
let months = minutes / aMonth |> round
|
||||||
let round (it : float) = Math.Round it |> int
|
let years = months / 12
|
||||||
|
match true with
|
||||||
|
| _ when minutes < 1. -> LessThanXMinutes, 1
|
||||||
|
| _ when minutes < 45. -> XMinutes, round minutes
|
||||||
|
| _ when minutes < 90. -> AboutXHours, 1
|
||||||
|
| _ when minutes < aDay -> AboutXHours, round (minutes / 60.)
|
||||||
|
| _ when minutes < almost2Days -> XDays, 1
|
||||||
|
| _ when minutes < aMonth -> XDays, round (minutes / aDay)
|
||||||
|
| _ when minutes < twoMonths -> AboutXMonths, round (minutes / aMonth)
|
||||||
|
| _ when months < 12 -> XMonths, round (minutes / aMonth)
|
||||||
|
| _ when months % 12 < 3 -> AboutXYears, years
|
||||||
|
| _ when months % 12 < 9 -> OverXYears, years
|
||||||
|
| _ -> AlmostXYears, years + 1
|
||||||
|
|
||||||
let diff = startDate - endDate
|
format formatToken "en-US"
|
||||||
let minutes = Math.Abs diff.TotalMinutes
|
|> match startOn > endOn with true -> sprintf "%s ago" | false -> sprintf "in %s"
|
||||||
let formatToken =
|
|
||||||
let months = minutes / aMonth |> round
|
|
||||||
let years = months / 12
|
|
||||||
match true with
|
|
||||||
| _ when minutes < 1. -> LessThanXMinutes, 1
|
|
||||||
| _ when minutes < 45. -> XMinutes, round minutes
|
|
||||||
| _ when minutes < 90. -> AboutXHours, 1
|
|
||||||
| _ when minutes < aDay -> AboutXHours, round (minutes / 60.)
|
|
||||||
| _ when minutes < almost2Days -> XDays, 1
|
|
||||||
| _ when minutes < aMonth -> XDays, round (minutes / aDay)
|
|
||||||
| _ when minutes < twoMonths -> AboutXMonths, round (minutes / aMonth)
|
|
||||||
| _ when months < 12 -> XMonths, round (minutes / aMonth)
|
|
||||||
| _ when months % 12 < 3 -> AboutXYears, years
|
|
||||||
| _ when months % 12 < 9 -> OverXYears, years
|
|
||||||
| _ -> AlmostXYears, years + 1
|
|
||||||
|
|
||||||
format formatToken "en-US"
|
|
||||||
|> match startDate > endDate with true -> sprintf "%s ago" | false -> sprintf "in %s"
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,213 +1,280 @@
|
|||||||
[<AutoOpen>]
|
/// The data model for myPrayerJournal
|
||||||
/// The data model for myPrayerJournal
|
[<AutoOpen>]
|
||||||
module MyPrayerJournal.Domain
|
module MyPrayerJournal.Domain
|
||||||
|
|
||||||
// fsharplint:disable RecordFieldNames
|
open System
|
||||||
|
|
||||||
open Cuid
|
open Cuid
|
||||||
open NodaTime
|
open NodaTime
|
||||||
|
|
||||||
/// An identifier for a request
|
/// An identifier for a request
|
||||||
type RequestId =
|
type RequestId = RequestId of Cuid
|
||||||
| RequestId of Cuid
|
|
||||||
|
|
||||||
/// Functions to manipulate request IDs
|
/// Functions to manipulate request IDs
|
||||||
module RequestId =
|
module RequestId =
|
||||||
/// The string representation of the request ID
|
|
||||||
let toString = function RequestId x -> Cuid.toString x
|
/// The string representation of the request ID
|
||||||
/// Create a request ID from a string representation
|
let toString = function RequestId x -> Cuid.toString x
|
||||||
let ofString = Cuid >> RequestId
|
|
||||||
|
/// Create a request ID from a string representation
|
||||||
|
let ofString = Cuid >> RequestId
|
||||||
|
|
||||||
|
|
||||||
/// The identifier of a user (the "sub" part of the JWT)
|
/// The identifier of a user (the "sub" part of the JWT)
|
||||||
type UserId =
|
type UserId = UserId of string
|
||||||
| UserId of string
|
|
||||||
|
|
||||||
/// Functions to manipulate user IDs
|
/// Functions to manipulate user IDs
|
||||||
module UserId =
|
module UserId =
|
||||||
/// The string representation of the user ID
|
|
||||||
let toString = function UserId x -> x
|
/// The string representation of the user ID
|
||||||
|
let toString = function UserId x -> x
|
||||||
|
|
||||||
|
|
||||||
/// How frequently a request should reappear after it is marked "Prayed"
|
/// How frequently a request should reappear after it is marked "Prayed"
|
||||||
type Recurrence =
|
type Recurrence =
|
||||||
| Immediate
|
|
||||||
| Hours
|
/// A request should reappear immediately at the bottom of the list
|
||||||
| Days
|
| Immediate
|
||||||
| Weeks
|
|
||||||
|
/// A request should reappear in the given number of hours
|
||||||
|
| Hours of int16
|
||||||
|
|
||||||
|
/// A request should reappear in the given number of days
|
||||||
|
| Days of int16
|
||||||
|
|
||||||
|
/// A request should reappear in the given number of weeks (7-day increments)
|
||||||
|
| Weeks of int16
|
||||||
|
|
||||||
/// Functions to manipulate recurrences
|
/// Functions to manipulate recurrences
|
||||||
module Recurrence =
|
module Recurrence =
|
||||||
/// Create a string representation of a recurrence
|
|
||||||
let toString =
|
/// Create a string representation of a recurrence
|
||||||
function
|
let toString =
|
||||||
| Immediate -> "Immediate"
|
function
|
||||||
| Hours -> "Hours"
|
| Immediate -> "Immediate"
|
||||||
| Days -> "Days"
|
| Hours h -> $"{h} Hours"
|
||||||
| Weeks -> "Weeks"
|
| Days d -> $"{d} Days"
|
||||||
/// Create a recurrence value from a string
|
| Weeks w -> $"{w} Weeks"
|
||||||
let ofString =
|
|
||||||
function
|
/// Create a recurrence value from a string
|
||||||
| "Immediate" -> Immediate
|
let ofString =
|
||||||
| "Hours" -> Hours
|
function
|
||||||
| "Days" -> Days
|
| "Immediate" -> Immediate
|
||||||
| "Weeks" -> Weeks
|
| it when it.Contains " " ->
|
||||||
| it -> invalidOp $"{it} is not a valid recurrence"
|
let parts = it.Split " "
|
||||||
/// An hour's worth of seconds
|
let length = Convert.ToInt16 parts[0]
|
||||||
let private oneHour = 3_600L
|
match parts[1] with
|
||||||
/// The duration of the recurrence (in milliseconds)
|
| "Hours" -> Hours length
|
||||||
let duration x =
|
| "Days" -> Days length
|
||||||
(match x with
|
| "Weeks" -> Weeks length
|
||||||
| Immediate -> 0L
|
| _ -> invalidOp $"{parts[1]} is not a valid recurrence"
|
||||||
| Hours -> oneHour
|
| it -> invalidOp $"{it} is not a valid recurrence"
|
||||||
| Days -> oneHour * 24L
|
|
||||||
| Weeks -> oneHour * 24L * 7L)
|
/// An hour's worth of seconds
|
||||||
|
let private oneHour = 3_600L
|
||||||
|
|
||||||
|
/// The duration of the recurrence (in milliseconds)
|
||||||
|
let duration =
|
||||||
|
function
|
||||||
|
| Immediate -> 0L
|
||||||
|
| Hours h -> int64 h * oneHour
|
||||||
|
| Days d -> int64 d * oneHour * 24L
|
||||||
|
| Weeks w -> int64 w * oneHour * 24L * 7L
|
||||||
|
|
||||||
|
|
||||||
/// The action taken on a request as part of a history entry
|
/// The action taken on a request as part of a history entry
|
||||||
type RequestAction =
|
type RequestAction =
|
||||||
| Created
|
| Created
|
||||||
| Prayed
|
| Prayed
|
||||||
| Updated
|
| Updated
|
||||||
| Answered
|
| Answered
|
||||||
|
|
||||||
|
/// Functions to manipulate request actions
|
||||||
|
module RequestAction =
|
||||||
|
|
||||||
|
/// Create a string representation of an action
|
||||||
|
let toString =
|
||||||
|
function
|
||||||
|
| Created -> "Created"
|
||||||
|
| Prayed -> "Prayed"
|
||||||
|
| Updated -> "Updated"
|
||||||
|
| Answered -> "Answered"
|
||||||
|
|
||||||
|
/// Create a RequestAction from a string
|
||||||
|
let ofString =
|
||||||
|
function
|
||||||
|
| "Created" -> Created
|
||||||
|
| "Prayed" -> Prayed
|
||||||
|
| "Updated" -> Updated
|
||||||
|
| "Answered" -> Answered
|
||||||
|
| it -> invalidOp $"Bad request action {it}"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// History is a record of action taken on a prayer request, including updates to its text
|
/// History is a record of action taken on a prayer request, including updates to its text
|
||||||
[<CLIMutable; NoComparison; NoEquality>]
|
[<CLIMutable; NoComparison; NoEquality>]
|
||||||
type History = {
|
type History =
|
||||||
/// The time when this history entry was made
|
{ /// The time when this history entry was made
|
||||||
asOf : Instant
|
AsOf : Instant
|
||||||
/// The status for this history entry
|
|
||||||
status : RequestAction
|
/// The status for this history entry
|
||||||
/// The text of the update, if applicable
|
Status : RequestAction
|
||||||
text : string option
|
|
||||||
}
|
/// The text of the update, if applicable
|
||||||
|
Text : string option
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Functions to manipulate history entries
|
||||||
|
module History =
|
||||||
|
|
||||||
|
/// Determine if a history's status is `Created`
|
||||||
|
let isCreated hist = hist.Status = Created
|
||||||
|
|
||||||
|
/// Determine if a history's status is `Prayed`
|
||||||
|
let isPrayed hist = hist.Status = Prayed
|
||||||
|
|
||||||
|
/// Determine if a history's status is `Answered`
|
||||||
|
let isAnswered hist = hist.Status = Answered
|
||||||
|
|
||||||
|
|
||||||
/// Note is a note regarding a prayer request that does not result in an update to its text
|
/// Note is a note regarding a prayer request that does not result in an update to its text
|
||||||
[<CLIMutable; NoComparison; NoEquality>]
|
[<CLIMutable; NoComparison; NoEquality>]
|
||||||
type Note = {
|
type Note =
|
||||||
/// The time when this note was made
|
{ /// The time when this note was made
|
||||||
asOf : Instant
|
AsOf : Instant
|
||||||
/// The text of the notes
|
|
||||||
notes : string
|
/// The text of the notes
|
||||||
}
|
Notes : string
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Request is the identifying record for a prayer request
|
/// Request is the identifying record for a prayer request
|
||||||
[<CLIMutable; NoComparison; NoEquality>]
|
[<CLIMutable; NoComparison; NoEquality>]
|
||||||
type Request = {
|
type Request =
|
||||||
/// The ID of the request
|
{ /// The ID of the request
|
||||||
id : RequestId
|
Id : RequestId
|
||||||
/// The time this request was initially entered
|
|
||||||
enteredOn : Instant
|
/// The time this request was initially entered
|
||||||
/// The ID of the user to whom this request belongs ("sub" from the JWT)
|
EnteredOn : Instant
|
||||||
userId : UserId
|
|
||||||
/// The time at which this request should reappear in the user's journal by manual user choice
|
/// The ID of the user to whom this request belongs ("sub" from the JWT)
|
||||||
snoozedUntil : Instant
|
UserId : UserId
|
||||||
/// The time at which this request should reappear in the user's journal by recurrence
|
|
||||||
showAfter : Instant
|
/// The time at which this request should reappear in the user's journal by manual user choice
|
||||||
/// The type of recurrence for this request
|
SnoozedUntil : Instant option
|
||||||
recurType : Recurrence
|
|
||||||
/// How many of the recurrence intervals should occur between appearances in the journal
|
/// The time at which this request should reappear in the user's journal by recurrence
|
||||||
recurCount : int16
|
ShowAfter : Instant option
|
||||||
/// The history entries for this request
|
|
||||||
history : History list
|
/// The recurrence for this request
|
||||||
/// The notes for this request
|
Recurrence : Recurrence
|
||||||
notes : Note list
|
|
||||||
}
|
/// The history entries for this request
|
||||||
with
|
History : History[]
|
||||||
/// An empty request
|
|
||||||
static member empty =
|
/// The notes for this request
|
||||||
{ id = Cuid.generate () |> RequestId
|
Notes : Note[]
|
||||||
enteredOn = Instant.MinValue
|
}
|
||||||
userId = UserId ""
|
|
||||||
snoozedUntil = Instant.MinValue
|
/// Functions to support requests
|
||||||
showAfter = Instant.MinValue
|
module Request =
|
||||||
recurType = Immediate
|
|
||||||
recurCount = 0s
|
/// An empty request
|
||||||
history = []
|
let empty =
|
||||||
notes = []
|
{ Id = Cuid.generate () |> RequestId
|
||||||
}
|
EnteredOn = Instant.MinValue
|
||||||
|
UserId = UserId ""
|
||||||
|
SnoozedUntil = None
|
||||||
|
ShowAfter = None
|
||||||
|
Recurrence = Immediate
|
||||||
|
History = [||]
|
||||||
|
Notes = [||]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// JournalRequest is the form of a prayer request returned for the request journal display. It also contains
|
/// JournalRequest is the form of a prayer request returned for the request journal display. It also contains
|
||||||
/// properties that may be filled for history and notes.
|
/// properties that may be filled for history and notes.
|
||||||
[<NoComparison; NoEquality>]
|
[<NoComparison; NoEquality>]
|
||||||
type JournalRequest = {
|
type JournalRequest =
|
||||||
/// The ID of the request (just the CUID part)
|
{ /// The ID of the request (just the CUID part)
|
||||||
requestId : RequestId
|
RequestId : RequestId
|
||||||
/// The ID of the user to whom the request belongs
|
|
||||||
userId : UserId
|
/// The ID of the user to whom the request belongs
|
||||||
/// The current text of the request
|
UserId : UserId
|
||||||
text : string
|
|
||||||
/// The last time action was taken on the request
|
/// The current text of the request
|
||||||
asOf : Instant
|
Text : string
|
||||||
/// The last status for the request
|
|
||||||
lastStatus : RequestAction
|
/// The last time action was taken on the request
|
||||||
/// The time that this request should reappear in the user's journal
|
AsOf : Instant
|
||||||
snoozedUntil : Instant
|
|
||||||
/// The time after which this request should reappear in the user's journal by configured recurrence
|
/// The last time a request was marked as prayed
|
||||||
showAfter : Instant
|
LastPrayed : Instant option
|
||||||
/// The type of recurrence for this request
|
|
||||||
recurType : Recurrence
|
/// The last status for the request
|
||||||
/// How many of the recurrence intervals should occur between appearances in the journal
|
LastStatus : RequestAction
|
||||||
recurCount : int16
|
|
||||||
/// History entries for the request
|
/// The time that this request should reappear in the user's journal
|
||||||
history : History list
|
SnoozedUntil : Instant option
|
||||||
/// Note entries for the request
|
|
||||||
notes : Note list
|
/// The time after which this request should reappear in the user's journal by configured recurrence
|
||||||
}
|
ShowAfter : Instant option
|
||||||
|
|
||||||
|
/// The recurrence for this request
|
||||||
|
Recurrence : Recurrence
|
||||||
|
|
||||||
|
/// History entries for the request
|
||||||
|
History : History list
|
||||||
|
|
||||||
|
/// Note entries for the request
|
||||||
|
Notes : Note list
|
||||||
|
}
|
||||||
|
|
||||||
/// Functions to manipulate journal requests
|
/// Functions to manipulate journal requests
|
||||||
module JournalRequest =
|
module JournalRequest =
|
||||||
|
|
||||||
/// Convert a request to the form used for the journal (precomputed values, no notes or history)
|
/// Convert a request to the form used for the journal (precomputed values, no notes or history)
|
||||||
let ofRequestLite (req : Request) =
|
let ofRequestLite (req : Request) =
|
||||||
let hist = req.history |> List.sortByDescending (fun it -> it.asOf) |> List.tryHead
|
let lastHistory = req.History |> Array.sortByDescending (fun it -> it.AsOf) |> Array.tryHead
|
||||||
{ requestId = req.id
|
// Requests are sorted by the "as of" field in this record; for sorting to work properly, we will put the
|
||||||
userId = req.userId
|
// largest of the last prayed date, the "snoozed until". or the "show after" date; if none of those are filled,
|
||||||
text = req.history
|
// we will use the last activity date. This will mean that:
|
||||||
|> List.filter (fun it -> Option.isSome it.text)
|
// - Immediately shown requests will be at the top of the list, in order from least recently prayed to most.
|
||||||
|> List.sortByDescending (fun it -> it.asOf)
|
// - Non-immediate requests will enter the list as if they were marked as prayed at that time; this will put
|
||||||
|> List.tryHead
|
// them at the bottom of the list.
|
||||||
|> Option.map (fun h -> Option.get h.text)
|
// - Snoozed requests will reappear at the bottom of the list when they return.
|
||||||
|> Option.defaultValue ""
|
// - New requests will go to the bottom of the list, but will rise as others are marked as prayed.
|
||||||
asOf = match hist with Some h -> h.asOf | None -> Instant.MinValue
|
let lastActivity = lastHistory |> Option.map (fun it -> it.AsOf) |> Option.defaultValue Instant.MinValue
|
||||||
lastStatus = match hist with Some h -> h.status | None -> Created
|
let showAfter = defaultArg req.ShowAfter Instant.MinValue
|
||||||
snoozedUntil = req.snoozedUntil
|
let snoozedUntil = defaultArg req.SnoozedUntil Instant.MinValue
|
||||||
showAfter = req.showAfter
|
let lastPrayed =
|
||||||
recurType = req.recurType
|
req.History
|
||||||
recurCount = req.recurCount
|
|> Array.sortByDescending (fun it -> it.AsOf)
|
||||||
history = []
|
|> Array.filter History.isPrayed
|
||||||
notes = []
|
|> Array.tryHead
|
||||||
}
|
|> Option.map (fun it -> it.AsOf)
|
||||||
|
|> Option.defaultValue Instant.MinValue
|
||||||
|
let asOf = List.max [ lastPrayed; showAfter; snoozedUntil ]
|
||||||
|
{ RequestId = req.Id
|
||||||
|
UserId = req.UserId
|
||||||
|
Text = req.History
|
||||||
|
|> Array.filter (fun it -> Option.isSome it.Text)
|
||||||
|
|> Array.sortByDescending (fun it -> it.AsOf)
|
||||||
|
|> Array.tryHead
|
||||||
|
|> Option.map (fun h -> Option.get h.Text)
|
||||||
|
|> Option.defaultValue ""
|
||||||
|
AsOf = if asOf > Instant.MinValue then asOf else lastActivity
|
||||||
|
LastPrayed = if lastPrayed = Instant.MinValue then None else Some lastPrayed
|
||||||
|
LastStatus = match lastHistory with Some h -> h.Status | None -> Created
|
||||||
|
SnoozedUntil = req.SnoozedUntil
|
||||||
|
ShowAfter = req.ShowAfter
|
||||||
|
Recurrence = req.Recurrence
|
||||||
|
History = []
|
||||||
|
Notes = []
|
||||||
|
}
|
||||||
|
|
||||||
/// Same as `ofRequestLite`, but with notes and history
|
/// Same as `ofRequestLite`, but with notes and history
|
||||||
let ofRequestFull req =
|
let ofRequestFull req =
|
||||||
{ ofRequestLite req with
|
{ ofRequestLite req with
|
||||||
history = req.history
|
History = List.ofArray req.History
|
||||||
notes = req.notes
|
Notes = List.ofArray req.Notes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Functions to manipulate request actions
|
|
||||||
module RequestAction =
|
|
||||||
/// Create a string representation of an action
|
|
||||||
let toString =
|
|
||||||
function
|
|
||||||
| Created -> "Created"
|
|
||||||
| Prayed -> "Prayed"
|
|
||||||
| Updated -> "Updated"
|
|
||||||
| Answered -> "Answered"
|
|
||||||
/// Create a RequestAction from a string
|
|
||||||
let ofString =
|
|
||||||
function
|
|
||||||
| "Created" -> Created
|
|
||||||
| "Prayed" -> Prayed
|
|
||||||
| "Updated" -> Updated
|
|
||||||
| "Answered" -> Answered
|
|
||||||
| it -> invalidOp $"Bad request action {it}"
|
|
||||||
/// Determine if a history's status is `Created`
|
|
||||||
let isCreated hist = hist.status = Created
|
|
||||||
/// Determine if a history's status is `Prayed`
|
|
||||||
let isPrayed hist = hist.status = Prayed
|
|
||||||
/// Determine if a history's status is `Answered`
|
|
||||||
let isAnswered hist = hist.status = Answered
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,10 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
<Version>3.0.0.0</Version>
|
<Version>3.2</Version>
|
||||||
|
<DebugType>embedded</DebugType>
|
||||||
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
||||||
|
<NoWarn>3391</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Domain.fs" />
|
<Compile Include="Domain.fs" />
|
||||||
@@ -16,16 +19,15 @@
|
|||||||
<Compile Include="Program.fs" />
|
<Compile Include="Program.fs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="FSharp.SystemTextJson" Version="0.17.4" />
|
<PackageReference Include="FSharp.SystemTextJson" Version="1.1.23" />
|
||||||
<PackageReference Include="FunctionalCuid" Version="1.0.0" />
|
<PackageReference Include="FunctionalCuid" Version="1.0.0" />
|
||||||
<PackageReference Include="Giraffe" Version="5.0.0" />
|
<PackageReference Include="Giraffe" Version="6.0.0" />
|
||||||
<PackageReference Include="LiteDB" Version="5.0.11" />
|
<PackageReference Include="Giraffe.Htmx" Version="1.9.2" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="5.0.10" />
|
<PackageReference Include="Giraffe.ViewEngine.Htmx" Version="1.9.2" />
|
||||||
<PackageReference Include="NodaTime" Version="3.0.9" />
|
<PackageReference Include="LiteDB" Version="5.0.16" />
|
||||||
</ItemGroup>
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.5" />
|
||||||
<ItemGroup>
|
<PackageReference Include="NodaTime" Version="3.1.2" />
|
||||||
<ProjectReference Include="../../../Giraffe.Htmx/src/Htmx/Giraffe.Htmx.fsproj" />
|
<PackageReference Update="FSharp.Core" Version="7.0.300" />
|
||||||
<ProjectReference Include="../../../Giraffe.Htmx/src/ViewEngine.Htmx/Giraffe.ViewEngine.Htmx.fsproj" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="wwwroot\" />
|
<Folder Include="wwwroot\" />
|
||||||
|
|||||||
@@ -7,175 +7,163 @@ open System.IO
|
|||||||
/// Configuration functions for the application
|
/// Configuration functions for the application
|
||||||
module Configure =
|
module Configure =
|
||||||
|
|
||||||
/// Configure the content root
|
/// Configure the content root
|
||||||
let contentRoot root =
|
let contentRoot root =
|
||||||
WebApplicationOptions (ContentRootPath = root) |> WebApplication.CreateBuilder
|
WebApplicationOptions (ContentRootPath = root) |> WebApplication.CreateBuilder
|
||||||
|
|
||||||
|
|
||||||
open Microsoft.Extensions.Configuration
|
open Microsoft.Extensions.Configuration
|
||||||
|
|
||||||
/// Configure the application configuration
|
/// Configure the application configuration
|
||||||
let appConfiguration (bldr : WebApplicationBuilder) =
|
let appConfiguration (bldr : WebApplicationBuilder) =
|
||||||
bldr.Configuration
|
bldr.Configuration
|
||||||
.SetBasePath(bldr.Environment.ContentRootPath)
|
.SetBasePath(bldr.Environment.ContentRootPath)
|
||||||
.AddJsonFile("appsettings.json", optional = false, reloadOnChange = true)
|
.AddJsonFile("appsettings.json", optional = false, reloadOnChange = true)
|
||||||
.AddJsonFile($"appsettings.{bldr.Environment.EnvironmentName}.json", optional = true, reloadOnChange = true)
|
.AddJsonFile($"appsettings.{bldr.Environment.EnvironmentName}.json", optional = true, reloadOnChange = true)
|
||||||
.AddEnvironmentVariables ()
|
.AddEnvironmentVariables ()
|
||||||
|> ignore
|
|> ignore
|
||||||
bldr
|
bldr
|
||||||
|
|
||||||
|
|
||||||
open Microsoft.AspNetCore.Server.Kestrel.Core
|
open Microsoft.AspNetCore.Server.Kestrel.Core
|
||||||
|
|
||||||
/// Configure Kestrel from appsettings.json
|
/// Configure Kestrel from appsettings.json
|
||||||
let kestrel (bldr : WebApplicationBuilder) =
|
let kestrel (bldr : WebApplicationBuilder) =
|
||||||
let kestrelOpts (ctx : WebHostBuilderContext) (opts : KestrelServerOptions) =
|
let kestrelOpts (ctx : WebHostBuilderContext) (opts : KestrelServerOptions) =
|
||||||
(ctx.Configuration.GetSection >> opts.Configure >> ignore) "Kestrel"
|
(ctx.Configuration.GetSection >> opts.Configure >> ignore) "Kestrel"
|
||||||
bldr.WebHost.UseKestrel().ConfigureKestrel kestrelOpts |> ignore
|
bldr.WebHost.UseKestrel().ConfigureKestrel kestrelOpts |> ignore
|
||||||
bldr
|
bldr
|
||||||
|
|
||||||
|
|
||||||
/// Configure the web root directory
|
/// Configure the web root directory
|
||||||
let webRoot pathSegments (bldr : WebApplicationBuilder) =
|
let webRoot pathSegments (bldr : WebApplicationBuilder) =
|
||||||
Array.concat [ [| bldr.Environment.ContentRootPath |]; pathSegments ]
|
Array.concat [ [| bldr.Environment.ContentRootPath |]; pathSegments ]
|
||||||
|> (Path.Combine >> bldr.WebHost.UseWebRoot >> ignore)
|
|> (Path.Combine >> bldr.WebHost.UseWebRoot >> ignore)
|
||||||
bldr
|
bldr
|
||||||
|
|
||||||
|
|
||||||
open Microsoft.Extensions.Logging
|
open Microsoft.Extensions.Logging
|
||||||
open Microsoft.Extensions.Hosting
|
open Microsoft.Extensions.Hosting
|
||||||
|
|
||||||
/// Configure logging
|
/// Configure logging
|
||||||
let logging (bldr : WebApplicationBuilder) =
|
let logging (bldr : WebApplicationBuilder) =
|
||||||
match bldr.Environment.IsDevelopment () with
|
if bldr.Environment.IsDevelopment () then bldr.Logging.AddFilter (fun l -> l > LogLevel.Information) |> ignore
|
||||||
| true -> ()
|
bldr.Logging.AddConsole().AddDebug() |> ignore
|
||||||
| false -> bldr.Logging.AddFilter (fun l -> l > LogLevel.Information) |> ignore
|
bldr
|
||||||
bldr.Logging.AddConsole().AddDebug() |> ignore
|
|
||||||
bldr
|
|
||||||
|
|
||||||
|
|
||||||
open Giraffe
|
open Giraffe
|
||||||
open LiteDB
|
open LiteDB
|
||||||
open Microsoft.AspNetCore.Authentication.Cookies
|
open Microsoft.AspNetCore.Authentication.Cookies
|
||||||
open Microsoft.AspNetCore.Authentication.OpenIdConnect
|
open Microsoft.AspNetCore.Authentication.OpenIdConnect
|
||||||
open Microsoft.AspNetCore.Http
|
open Microsoft.AspNetCore.Http
|
||||||
open Microsoft.Extensions.DependencyInjection
|
open Microsoft.Extensions.DependencyInjection
|
||||||
open Microsoft.IdentityModel.Protocols.OpenIdConnect
|
open Microsoft.IdentityModel.Protocols.OpenIdConnect
|
||||||
open NodaTime
|
open NodaTime
|
||||||
open System
|
open System
|
||||||
open System.Text.Json
|
open System.Text.Json
|
||||||
open System.Text.Json.Serialization
|
open System.Text.Json.Serialization
|
||||||
open System.Threading.Tasks
|
open System.Threading.Tasks
|
||||||
|
|
||||||
/// Configure dependency injection
|
/// Configure dependency injection
|
||||||
let services (bldr : WebApplicationBuilder) =
|
let services (bldr : WebApplicationBuilder) =
|
||||||
let sameSite (opts : CookieOptions) =
|
let sameSite (opts : CookieOptions) =
|
||||||
match opts.SameSite, opts.Secure with
|
match opts.SameSite, opts.Secure with
|
||||||
| SameSiteMode.None, false -> opts.SameSite <- SameSiteMode.Unspecified
|
| SameSiteMode.None, false -> opts.SameSite <- SameSiteMode.Unspecified
|
||||||
| _, _ -> ()
|
| _, _ -> ()
|
||||||
|
|
||||||
bldr.Services
|
let _ = bldr.Services.AddRouting ()
|
||||||
.AddRouting()
|
let _ = bldr.Services.AddGiraffe ()
|
||||||
.AddGiraffe()
|
let _ = bldr.Services.AddSingleton<IClock> SystemClock.Instance
|
||||||
.AddSingleton<IClock>(SystemClock.Instance)
|
let _ = bldr.Services.AddSingleton<IDateTimeZoneProvider> DateTimeZoneProviders.Tzdb
|
||||||
.Configure<CookiePolicyOptions>(
|
|
||||||
fun (opts : CookiePolicyOptions) ->
|
|
||||||
opts.MinimumSameSitePolicy <- SameSiteMode.Unspecified
|
|
||||||
opts.OnAppendCookie <- fun ctx -> sameSite ctx.CookieOptions
|
|
||||||
opts.OnDeleteCookie <- fun ctx -> sameSite ctx.CookieOptions)
|
|
||||||
.AddAuthentication(
|
|
||||||
/// Use HTTP "Bearer" authentication with JWTs
|
|
||||||
fun opts ->
|
|
||||||
opts.DefaultAuthenticateScheme <- CookieAuthenticationDefaults.AuthenticationScheme
|
|
||||||
opts.DefaultSignInScheme <- CookieAuthenticationDefaults.AuthenticationScheme
|
|
||||||
opts.DefaultChallengeScheme <- CookieAuthenticationDefaults.AuthenticationScheme)
|
|
||||||
.AddCookie()
|
|
||||||
.AddOpenIdConnect("Auth0",
|
|
||||||
/// Configure OIDC with Auth0 options from configuration
|
|
||||||
fun opts ->
|
|
||||||
let cfg = bldr.Configuration.GetSection "Auth0"
|
|
||||||
opts.Authority <- sprintf "https://%s/" cfg["Domain"]
|
|
||||||
opts.ClientId <- cfg["Id"]
|
|
||||||
opts.ClientSecret <- cfg["Secret"]
|
|
||||||
opts.ResponseType <- OpenIdConnectResponseType.Code
|
|
||||||
|
|
||||||
opts.Scope.Clear ()
|
let _ =
|
||||||
opts.Scope.Add "openid"
|
bldr.Services.Configure<CookiePolicyOptions>(fun (opts : CookiePolicyOptions) ->
|
||||||
opts.Scope.Add "profile"
|
opts.MinimumSameSitePolicy <- SameSiteMode.Unspecified
|
||||||
|
opts.OnAppendCookie <- fun ctx -> sameSite ctx.CookieOptions
|
||||||
|
opts.OnDeleteCookie <- fun ctx -> sameSite ctx.CookieOptions)
|
||||||
|
let _ =
|
||||||
|
bldr.Services.AddAuthentication(fun opts ->
|
||||||
|
opts.DefaultAuthenticateScheme <- CookieAuthenticationDefaults.AuthenticationScheme
|
||||||
|
opts.DefaultSignInScheme <- CookieAuthenticationDefaults.AuthenticationScheme
|
||||||
|
opts.DefaultChallengeScheme <- CookieAuthenticationDefaults.AuthenticationScheme)
|
||||||
|
.AddCookie()
|
||||||
|
.AddOpenIdConnect("Auth0", fun opts ->
|
||||||
|
// Configure OIDC with Auth0 options from configuration
|
||||||
|
let cfg = bldr.Configuration.GetSection "Auth0"
|
||||||
|
opts.Authority <- $"""https://{cfg["Domain"]}/"""
|
||||||
|
opts.ClientId <- cfg["Id"]
|
||||||
|
opts.ClientSecret <- cfg["Secret"]
|
||||||
|
opts.ResponseType <- OpenIdConnectResponseType.Code
|
||||||
|
|
||||||
opts.CallbackPath <- PathString "/user/log-on/success"
|
opts.Scope.Clear ()
|
||||||
opts.ClaimsIssuer <- "Auth0"
|
opts.Scope.Add "openid"
|
||||||
opts.SaveTokens <- true
|
opts.Scope.Add "profile"
|
||||||
|
|
||||||
opts.Events <- OpenIdConnectEvents ()
|
opts.CallbackPath <- PathString "/user/log-on/success"
|
||||||
opts.Events.OnRedirectToIdentityProviderForSignOut <- fun ctx ->
|
opts.ClaimsIssuer <- "Auth0"
|
||||||
let returnTo =
|
opts.SaveTokens <- true
|
||||||
match ctx.Properties.RedirectUri with
|
|
||||||
| it when isNull it || it = "" -> ""
|
|
||||||
| redirUri ->
|
|
||||||
let finalRedirUri =
|
|
||||||
match redirUri.StartsWith "/" with
|
|
||||||
| true ->
|
|
||||||
// transform to absolute
|
|
||||||
let request = ctx.Request
|
|
||||||
sprintf "%s://%s%s%s" request.Scheme request.Host.Value request.PathBase.Value redirUri
|
|
||||||
| false -> redirUri
|
|
||||||
Uri.EscapeDataString finalRedirUri |> sprintf "&returnTo=%s"
|
|
||||||
sprintf "https://%s/v2/logout?client_id=%s%s" cfg["Domain"] cfg["Id"] returnTo
|
|
||||||
|> ctx.Response.Redirect
|
|
||||||
ctx.HandleResponse ()
|
|
||||||
|
|
||||||
Task.CompletedTask
|
opts.Events <- OpenIdConnectEvents ()
|
||||||
opts.Events.OnRedirectToIdentityProvider <- fun ctx ->
|
opts.Events.OnRedirectToIdentityProviderForSignOut <- fun ctx ->
|
||||||
let bldr = UriBuilder ctx.ProtocolMessage.RedirectUri
|
let returnTo =
|
||||||
bldr.Scheme <- cfg["Scheme"]
|
match ctx.Properties.RedirectUri with
|
||||||
bldr.Port <- int cfg["Port"]
|
| it when isNull it || it = "" -> ""
|
||||||
ctx.ProtocolMessage.RedirectUri <- string bldr
|
| redirUri ->
|
||||||
Task.CompletedTask
|
let finalRedirUri =
|
||||||
)
|
match redirUri.StartsWith "/" with
|
||||||
|> ignore
|
| true ->
|
||||||
let jsonOptions = JsonSerializerOptions ()
|
// transform to absolute
|
||||||
jsonOptions.Converters.Add (JsonFSharpConverter ())
|
let request = ctx.Request
|
||||||
let db = new LiteDatabase (bldr.Configuration.GetConnectionString "db")
|
$"{request.Scheme}://{request.Host.Value}{request.PathBase.Value}{redirUri}"
|
||||||
Data.Startup.ensureDb db
|
| false -> redirUri
|
||||||
bldr.Services.AddSingleton(jsonOptions)
|
Uri.EscapeDataString $"&returnTo={finalRedirUri}"
|
||||||
.AddSingleton<Json.ISerializer, SystemTextJson.Serializer>()
|
ctx.Response.Redirect $"""https://{cfg["Domain"]}/v2/logout?client_id={cfg["Id"]}{returnTo}"""
|
||||||
.AddSingleton<LiteDatabase> db
|
ctx.HandleResponse ()
|
||||||
|> ignore
|
Task.CompletedTask
|
||||||
bldr.Build ()
|
opts.Events.OnRedirectToIdentityProvider <- fun ctx ->
|
||||||
|
let bldr = UriBuilder ctx.ProtocolMessage.RedirectUri
|
||||||
|
bldr.Scheme <- cfg["Scheme"]
|
||||||
|
bldr.Port <- int cfg["Port"]
|
||||||
|
ctx.ProtocolMessage.RedirectUri <- string bldr
|
||||||
|
Task.CompletedTask)
|
||||||
|
|
||||||
|
let jsonOptions = JsonSerializerOptions ()
|
||||||
|
jsonOptions.Converters.Add (JsonFSharpConverter ())
|
||||||
|
let db = new LiteDatabase (bldr.Configuration.GetConnectionString "db")
|
||||||
|
Data.Startup.ensureDb db
|
||||||
|
let _ = bldr.Services.AddSingleton jsonOptions
|
||||||
|
let _ = bldr.Services.AddSingleton<Json.ISerializer, SystemTextJson.Serializer> ()
|
||||||
|
let _ = bldr.Services.AddSingleton<LiteDatabase> db
|
||||||
|
|
||||||
|
bldr.Build ()
|
||||||
|
|
||||||
|
|
||||||
open Giraffe.EndpointRouting
|
open Giraffe.EndpointRouting
|
||||||
|
|
||||||
/// Configure the web application
|
/// Configure the web application
|
||||||
let application (app : WebApplication) =
|
let application (app : WebApplication) =
|
||||||
// match app.Environment.IsDevelopment () with
|
let _ = app.UseStaticFiles ()
|
||||||
// | true -> app.UseDeveloperExceptionPage ()
|
let _ = app.UseCookiePolicy ()
|
||||||
// | false -> app.UseGiraffeErrorHandler Handlers.Error.error
|
let _ = app.UseRouting ()
|
||||||
// |> ignore
|
let _ = app.UseAuthentication ()
|
||||||
app
|
let _ = app.UseGiraffeErrorHandler Handlers.Error.error
|
||||||
.UseStaticFiles()
|
let _ = app.UseEndpoints (fun e -> e.MapGiraffeEndpoints Handlers.routes)
|
||||||
.UseCookiePolicy()
|
app
|
||||||
.UseRouting()
|
|
||||||
.UseAuthentication()
|
|
||||||
.UseGiraffeErrorHandler(Handlers.Error.error)
|
|
||||||
.UseEndpoints (fun e -> e.MapGiraffeEndpoints Handlers.routes |> ignore)
|
|
||||||
|> ignore
|
|
||||||
app
|
|
||||||
|
|
||||||
/// Compose all the configurations into one
|
/// Compose all the configurations into one
|
||||||
let webHost pathSegments =
|
let webHost pathSegments =
|
||||||
contentRoot
|
contentRoot
|
||||||
>> appConfiguration
|
>> appConfiguration
|
||||||
>> kestrel
|
>> kestrel
|
||||||
>> webRoot pathSegments
|
>> webRoot pathSegments
|
||||||
>> logging
|
>> logging
|
||||||
>> services
|
>> services
|
||||||
>> application
|
>> application
|
||||||
|
|
||||||
|
|
||||||
[<EntryPoint>]
|
[<EntryPoint>]
|
||||||
let main _ =
|
let main _ =
|
||||||
use host = Configure.webHost [| "wwwroot" |] (Directory.GetCurrentDirectory ())
|
use host = Configure.webHost [| "wwwroot" |] (Directory.GetCurrentDirectory ())
|
||||||
host.Run ()
|
host.Run ()
|
||||||
0
|
0
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
[<AutoOpen>]
|
[<AutoOpen>]
|
||||||
module private MyPrayerJournal.Views.Helpers
|
module private MyPrayerJournal.Views.Helpers
|
||||||
|
|
||||||
|
open Giraffe.Htmx
|
||||||
open Giraffe.ViewEngine
|
open Giraffe.ViewEngine
|
||||||
open Giraffe.ViewEngine.Htmx
|
open Giraffe.ViewEngine.Htmx
|
||||||
open MyPrayerJournal
|
open MyPrayerJournal
|
||||||
@@ -9,23 +10,33 @@ open NodaTime
|
|||||||
|
|
||||||
/// Create a link that targets the `#top` element and pushes a URL to history
|
/// Create a link that targets the `#top` element and pushes a URL to history
|
||||||
let pageLink href attrs =
|
let pageLink href attrs =
|
||||||
attrs
|
attrs
|
||||||
|> List.append [ _href href; _hxBoost; _hxTarget "#top"; _hxSwap HxSwap.InnerHtml; _hxPushUrl ]
|
|> List.append [ _href href; _hxBoost; _hxTarget "#top"; _hxSwap HxSwap.InnerHtml; _hxPushUrl "true" ]
|
||||||
|> a
|
|> a
|
||||||
|
|
||||||
/// Create a Material icon
|
/// Create a Material icon
|
||||||
let icon name = span [ _class "material-icons" ] [ str name ]
|
let icon name = span [ _class "material-icons" ] [ str name ]
|
||||||
|
|
||||||
/// Create a card when there are no results found
|
/// Create a card when there are no results found
|
||||||
let noResults heading link buttonText text =
|
let noResults heading link buttonText text =
|
||||||
div [ _class "card" ] [
|
div [ _class "card" ] [
|
||||||
h5 [ _class "card-header"] [ str heading ]
|
h5 [ _class "card-header"] [ str heading ]
|
||||||
div [ _class "card-body text-center" ] [
|
div [ _class "card-body text-center" ] [
|
||||||
p [ _class "card-text" ] text
|
p [ _class "card-text" ] text
|
||||||
pageLink link [ _class "btn btn-primary" ] [ str buttonText ]
|
pageLink link [ _class "btn btn-primary" ] [ str buttonText ]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
||||||
/// Create a date with a span tag, displaying the relative date with the full date/time in the tooltip
|
/// Create a date with a span tag, displaying the relative date with the full date/time in the tooltip
|
||||||
let relativeDate (date : Instant) now =
|
let relativeDate (date : Instant) now (tz : DateTimeZone) =
|
||||||
span [ _title (date.ToDateTimeOffset().ToString ("f", null)) ] [ Dates.formatDistance now date |> str ]
|
span [ _title (date.InZone(tz).ToDateTimeOffset().ToString ("f", null)) ] [ Dates.formatDistance now date |> str ]
|
||||||
|
|
||||||
|
/// The version of myPrayerJournal
|
||||||
|
let version =
|
||||||
|
let v = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version
|
||||||
|
seq {
|
||||||
|
string v.Major
|
||||||
|
if v.Minor > 0 then
|
||||||
|
$".{v.Minor}"
|
||||||
|
if v.Revision > 0 then $".{v.Revision}"
|
||||||
|
} |> Seq.reduce (+)
|
||||||
|
|||||||
@@ -1,177 +1,180 @@
|
|||||||
/// Views for journal pages and components
|
/// Views for journal pages and components
|
||||||
module MyPrayerJournal.Views.Journal
|
module MyPrayerJournal.Views.Journal
|
||||||
|
|
||||||
|
open Giraffe.Htmx
|
||||||
open Giraffe.ViewEngine
|
open Giraffe.ViewEngine
|
||||||
open Giraffe.ViewEngine.Accessibility
|
open Giraffe.ViewEngine.Accessibility
|
||||||
open Giraffe.ViewEngine.Htmx
|
open Giraffe.ViewEngine.Htmx
|
||||||
open MyPrayerJournal
|
open MyPrayerJournal
|
||||||
|
|
||||||
/// Display a card for this prayer request
|
/// Display a card for this prayer request
|
||||||
let journalCard now req =
|
let journalCard now tz req =
|
||||||
let reqId = RequestId.toString req.requestId
|
let reqId = RequestId.toString req.RequestId
|
||||||
let spacer = span [] [ rawText " " ]
|
let spacer = span [] [ rawText " " ]
|
||||||
div [ _class "col" ] [
|
div [ _class "col" ] [
|
||||||
div [ _class "card h-100" ] [
|
div [ _class "card h-100" ] [
|
||||||
div [ _class "card-header p-0 d-flex"; _roleToolBar ] [
|
div [ _class "card-header p-0 d-flex"; _roleToolBar ] [
|
||||||
pageLink $"/request/{reqId}/edit" [ _class "btn btn-secondary"; _title "Edit Request" ] [ icon "edit" ]
|
pageLink $"/request/{reqId}/edit" [ _class "btn btn-secondary"; _title "Edit Request" ] [ icon "edit" ]
|
||||||
spacer
|
spacer
|
||||||
button [
|
button [ _type "button"
|
||||||
_type "button"
|
_class "btn btn-secondary"
|
||||||
_class "btn btn-secondary"
|
_title "Add Notes"
|
||||||
_title "Add Notes"
|
_data "bs-toggle" "modal"
|
||||||
_data "bs-toggle" "modal"
|
_data "bs-target" "#notesModal"
|
||||||
_data "bs-target" "#notesModal"
|
_hxGet $"/components/request/{reqId}/add-notes"
|
||||||
_hxGet $"/components/request/{reqId}/add-notes"
|
_hxTarget "#notesBody"
|
||||||
_hxTarget "#notesBody"
|
_hxSwap HxSwap.InnerHtml ] [
|
||||||
_hxSwap HxSwap.InnerHtml
|
icon "comment"
|
||||||
] [ icon "comment" ]
|
]
|
||||||
spacer
|
spacer
|
||||||
button [
|
button [ _type "button"
|
||||||
_type "button"
|
_class "btn btn-secondary"
|
||||||
_class "btn btn-secondary"
|
_title "Snooze Request"
|
||||||
_title "Snooze Request"
|
_data "bs-toggle" "modal"
|
||||||
_data "bs-toggle" "modal"
|
_data "bs-target" "#snoozeModal"
|
||||||
_data "bs-target" "#snoozeModal"
|
_hxGet $"/components/request/{reqId}/snooze"
|
||||||
_hxGet $"/components/request/{reqId}/snooze"
|
_hxTarget "#snoozeBody"
|
||||||
_hxTarget "#snoozeBody"
|
_hxSwap HxSwap.InnerHtml ] [
|
||||||
_hxSwap HxSwap.InnerHtml
|
icon "schedule"
|
||||||
] [ icon "schedule" ]
|
]
|
||||||
div [ _class "flex-grow-1" ] []
|
div [ _class "flex-grow-1" ] []
|
||||||
button [
|
button [ _type "button"
|
||||||
_type "button"
|
_class "btn btn-success w-25"
|
||||||
_class "btn btn-success w-25"
|
_hxPatch $"/request/{reqId}/prayed"
|
||||||
_hxPatch $"/request/{reqId}/prayed"
|
_title "Mark as Prayed" ] [
|
||||||
_title "Mark as Prayed"
|
icon "done"
|
||||||
] [ icon "done" ]
|
]
|
||||||
|
]
|
||||||
|
div [ _class "card-body" ] [
|
||||||
|
p [ _class "request-text" ] [ str req.Text ]
|
||||||
|
]
|
||||||
|
div [ _class "card-footer text-end text-muted px-1 py-0" ] [
|
||||||
|
em [] [
|
||||||
|
match req.LastPrayed with
|
||||||
|
| Some dt -> str "last prayed "; relativeDate dt now tz
|
||||||
|
| None -> str "last activity "; relativeDate req.AsOf now tz
|
||||||
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
div [ _class "card-body" ] [
|
|
||||||
p [ _class "request-text" ] [ str req.text ]
|
|
||||||
]
|
|
||||||
div [ _class "card-footer text-end text-muted px-1 py-0" ] [
|
|
||||||
em [] [ str "last activity "; relativeDate req.asOf now ]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
|
||||||
/// The journal loading page
|
/// The journal loading page
|
||||||
let journal user = article [ _class "container-fluid mt-3" ] [
|
let journal user =
|
||||||
h2 [ _class "pb-3" ] [
|
article [ _class "container-fluid mt-3" ] [
|
||||||
str user
|
h2 [ _class "pb-3" ] [
|
||||||
match user with "Your" -> () | _ -> rawText "’s"
|
str user
|
||||||
str " Prayer Journal"
|
match user with "Your" -> () | _ -> rawText "’s"
|
||||||
]
|
str " Prayer Journal"
|
||||||
p [ _class "pb-3 text-center" ] [
|
|
||||||
pageLink "/request/new/edit" [ _class "btn btn-primary "] [ icon "add_box"; str " Add a Prayer Request" ]
|
|
||||||
]
|
|
||||||
p [ _hxGet "/components/journal-items"; _hxSwap HxSwap.OuterHtml; _hxTrigger HxTrigger.Load ] [
|
|
||||||
rawText "Loading your prayer journal…"
|
|
||||||
]
|
|
||||||
div [
|
|
||||||
_id "notesModal"
|
|
||||||
_class "modal fade"
|
|
||||||
_tabindex "-1"
|
|
||||||
_ariaLabelledBy "nodesModalLabel"
|
|
||||||
_ariaHidden "true"
|
|
||||||
] [
|
|
||||||
div [ _class "modal-dialog modal-dialog-scrollable" ] [
|
|
||||||
div [ _class "modal-content" ] [
|
|
||||||
div [ _class "modal-header" ] [
|
|
||||||
h5 [ _class "modal-title"; _id "nodesModalLabel" ] [ str "Add Notes to Prayer Request" ]
|
|
||||||
button [ _type "button"; _class "btn-close"; _data "bs-dismiss" "modal"; _ariaLabel "Close" ] []
|
|
||||||
]
|
|
||||||
div [ _class "modal-body"; _id "notesBody" ] [ ]
|
|
||||||
div [ _class "modal-footer" ] [
|
|
||||||
button [ _type "button"; _id "notesDismiss"; _class "btn btn-secondary"; _data "bs-dismiss" "modal" ] [
|
|
||||||
str "Close"
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
]
|
p [ _class "pb-3 text-center" ] [
|
||||||
]
|
pageLink "/request/new/edit" [ _class "btn btn-primary "] [ icon "add_box"; str " Add a Prayer Request" ]
|
||||||
div [
|
]
|
||||||
_id "snoozeModal"
|
p [ _hxGet "/components/journal-items"; _hxSwap HxSwap.OuterHtml; _hxTrigger HxTrigger.Load ] [
|
||||||
_class "modal fade"
|
rawText "Loading your prayer journal…"
|
||||||
_tabindex "-1"
|
]
|
||||||
_ariaLabelledBy "snoozeModalLabel"
|
div [ _id "notesModal"
|
||||||
_ariaHidden "true"
|
_class "modal fade"
|
||||||
] [
|
_tabindex "-1"
|
||||||
div [ _class "modal-dialog modal-sm" ] [
|
_ariaLabelledBy "nodesModalLabel"
|
||||||
div [ _class "modal-content" ] [
|
_ariaHidden "true" ] [
|
||||||
div [ _class "modal-header" ] [
|
div [ _class "modal-dialog modal-dialog-scrollable" ] [
|
||||||
h5 [ _class "modal-title"; _id "snoozeModalLabel" ] [ str "Snooze Prayer Request" ]
|
div [ _class "modal-content" ] [
|
||||||
button [ _type "button"; _class "btn-close"; _data "bs-dismiss" "modal"; _ariaLabel "Close" ] []
|
div [ _class "modal-header" ] [
|
||||||
]
|
h5 [ _class "modal-title"; _id "nodesModalLabel" ] [ str "Add Notes to Prayer Request" ]
|
||||||
div [ _class "modal-body"; _id "snoozeBody" ] [ ]
|
button [ _type "button"; _class "btn-close"; _data "bs-dismiss" "modal"; _ariaLabel "Close" ] []
|
||||||
div [ _class "modal-footer" ] [
|
]
|
||||||
button [ _type "button"; _id "snoozeDismiss"; _class "btn btn-secondary"; _data "bs-dismiss" "modal" ] [
|
div [ _class "modal-body"; _id "notesBody" ] [ ]
|
||||||
str "Close"
|
div [ _class "modal-footer" ] [
|
||||||
]
|
button [ _type "button"
|
||||||
]
|
_id "notesDismiss"
|
||||||
|
_class "btn btn-secondary"
|
||||||
|
_data "bs-dismiss" "modal" ] [
|
||||||
|
str "Close"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _id "snoozeModal"
|
||||||
|
_class "modal fade"
|
||||||
|
_tabindex "-1"
|
||||||
|
_ariaLabelledBy "snoozeModalLabel"
|
||||||
|
_ariaHidden "true" ] [
|
||||||
|
div [ _class "modal-dialog modal-sm" ] [
|
||||||
|
div [ _class "modal-content" ] [
|
||||||
|
div [ _class "modal-header" ] [
|
||||||
|
h5 [ _class "modal-title"; _id "snoozeModalLabel" ] [ str "Snooze Prayer Request" ]
|
||||||
|
button [ _type "button"; _class "btn-close"; _data "bs-dismiss" "modal"; _ariaLabel "Close" ] []
|
||||||
|
]
|
||||||
|
div [ _class "modal-body"; _id "snoozeBody" ] [ ]
|
||||||
|
div [ _class "modal-footer" ] [
|
||||||
|
button [ _type "button"
|
||||||
|
_id "snoozeDismiss"
|
||||||
|
_class "btn btn-secondary"
|
||||||
|
_data "bs-dismiss" "modal" ] [
|
||||||
|
str "Close"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
]
|
|
||||||
]
|
]
|
||||||
]
|
|
||||||
|
|
||||||
/// The journal items
|
/// The journal items
|
||||||
let journalItems now items =
|
let journalItems now tz items =
|
||||||
match items |> List.isEmpty with
|
match items |> List.isEmpty with
|
||||||
| true ->
|
| true ->
|
||||||
noResults "No Active Requests" "/request/new/edit" "Add a Request" [
|
noResults "No Active Requests" "/request/new/edit" "Add a Request" [
|
||||||
rawText "You have no requests to be shown; see the “Active” link above for snoozed or deferred "
|
rawText "You have no requests to be shown; see the “Active” link above for snoozed or deferred "
|
||||||
rawText "requests, and the “Answered” link for answered requests"
|
rawText "requests, and the “Answered” link for answered requests"
|
||||||
]
|
]
|
||||||
| false ->
|
| false ->
|
||||||
items
|
items
|
||||||
|> List.map (journalCard now)
|
|> List.map (journalCard now tz)
|
||||||
|> section [
|
|> section [ _id "journalItems"
|
||||||
_id "journalItems"
|
_class "row row-cols-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-4 g-3"
|
||||||
_class "row row-cols-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-4 g-3"
|
_hxTarget "this"
|
||||||
_hxTarget "this"
|
_hxSwap HxSwap.OuterHtml
|
||||||
_hxSwap HxSwap.OuterHtml
|
_ariaLabel "Prayer Requests" ]
|
||||||
]
|
|
||||||
|
|
||||||
/// The notes edit modal body
|
/// The notes edit modal body
|
||||||
let notesEdit requestId =
|
let notesEdit requestId =
|
||||||
let reqId = RequestId.toString requestId
|
let reqId = RequestId.toString requestId
|
||||||
[ form [ _hxPost $"/request/{reqId}/note" ] [
|
[ form [ _hxPost $"/request/{reqId}/note" ] [
|
||||||
div [ _class "form-floating pb-3" ] [
|
div [ _class "form-floating pb-3" ] [
|
||||||
textarea [
|
textarea [ _id "notes"
|
||||||
_id "notes"
|
_name "notes"
|
||||||
_name "notes"
|
_class "form-control"
|
||||||
_class "form-control"
|
_style "min-height: 8rem;"
|
||||||
_style "min-height: 8rem;"
|
_placeholder "Notes"
|
||||||
_placeholder "Notes"
|
_autofocus; _required ] [ ]
|
||||||
_autofocus; _required
|
label [ _for "notes" ] [ str "Notes" ]
|
||||||
] [ ]
|
]
|
||||||
label [ _for "notes" ] [ str "Notes" ]
|
p [ _class "text-end" ] [ button [ _type "submit"; _class "btn btn-primary" ] [ str "Add Notes" ] ]
|
||||||
]
|
]
|
||||||
p [ _class "text-end" ] [ button [ _type "submit"; _class "btn btn-primary" ] [ str "Add Notes" ] ]
|
hr [ _style "margin: .5rem -1rem" ]
|
||||||
]
|
div [ _id "priorNotes" ] [
|
||||||
hr [ _style "margin: .5rem -1rem" ]
|
p [ _class "text-center pt-3" ] [
|
||||||
div [ _id "priorNotes" ] [
|
button [ _type "button"
|
||||||
p [ _class "text-center pt-3" ] [
|
_class "btn btn-secondary"
|
||||||
button [
|
_hxGet $"/components/request/{reqId}/notes"
|
||||||
_type "button"
|
_hxSwap HxSwap.OuterHtml
|
||||||
_class "btn btn-secondary"
|
_hxTarget "#priorNotes" ] [
|
||||||
_hxGet $"/components/request/{reqId}/notes"
|
str "Load Prior Notes"
|
||||||
_hxSwap HxSwap.OuterHtml
|
]
|
||||||
_hxTarget "#priorNotes"
|
]
|
||||||
] [str "Load Prior Notes" ]
|
|
||||||
]
|
]
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
|
||||||
/// The snooze edit form
|
/// The snooze edit form
|
||||||
let snooze requestId =
|
let snooze requestId =
|
||||||
let today = System.DateTime.Today.ToString "yyyy-MM-dd"
|
let today = System.DateTime.Today.ToString "yyyy-MM-dd"
|
||||||
form [
|
form [ _hxPatch $"/request/{RequestId.toString requestId}/snooze"
|
||||||
_hxPatch $"/request/{RequestId.toString requestId}/snooze"
|
_hxTarget "#journalItems"
|
||||||
_hxTarget "#journalItems"
|
_hxSwap HxSwap.OuterHtml ] [
|
||||||
_hxSwap HxSwap.OuterHtml
|
div [ _class "form-floating pb-3" ] [
|
||||||
] [
|
input [ _type "date"; _id "until"; _name "until"; _class "form-control"; _min today; _required ]
|
||||||
div [ _class "form-floating pb-3" ] [
|
label [ _for "until" ] [ str "Until" ]
|
||||||
input [ _type "date"; _id "until"; _name "until"; _class "form-control"; _min today; _required ]
|
]
|
||||||
label [ _for "until" ] [ str "Until" ]
|
p [ _class "text-end mb-0" ] [ button [ _type "submit"; _class "btn btn-primary" ] [ str "Snooze" ] ]
|
||||||
]
|
|
||||||
p [ _class "text-end mb-0" ] [ button [ _type "submit"; _class "btn btn-primary" ] [ str "Snooze" ] ]
|
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,151 +1,148 @@
|
|||||||
/// Layout / home views
|
/// Layout / home views
|
||||||
module MyPrayerJournal.Views.Layout
|
module MyPrayerJournal.Views.Layout
|
||||||
|
|
||||||
// fsharplint:disable RecordFieldNames
|
|
||||||
|
|
||||||
open Giraffe.ViewEngine
|
open Giraffe.ViewEngine
|
||||||
open Giraffe.ViewEngine.Accessibility
|
open Giraffe.ViewEngine.Accessibility
|
||||||
|
|
||||||
/// The data needed to render a page-level view
|
/// The data needed to render a page-level view
|
||||||
type PageRenderContext = {
|
type PageRenderContext =
|
||||||
/// Whether the user is authenticated
|
{ /// Whether the user is authenticated
|
||||||
isAuthenticated : bool
|
IsAuthenticated : bool
|
||||||
/// Whether the user has snoozed requests
|
|
||||||
hasSnoozed : bool
|
/// Whether the user has snoozed requests
|
||||||
/// The current URL
|
HasSnoozed : bool
|
||||||
currentUrl : string
|
|
||||||
/// The title for the page to be rendered
|
/// The current URL
|
||||||
pageTitle : string
|
CurrentUrl : string
|
||||||
/// The content of the page
|
|
||||||
content : XmlNode
|
/// The title for the page to be rendered
|
||||||
}
|
PageTitle : string
|
||||||
|
|
||||||
|
/// The content of the page
|
||||||
|
Content : XmlNode
|
||||||
|
}
|
||||||
|
|
||||||
/// The home page
|
/// The home page
|
||||||
let home = article [ _class "container mt-3" ] [
|
let home =
|
||||||
p [] [ rawText " " ]
|
article [ _class "container mt-3" ] [
|
||||||
p [] [
|
p [] [ rawText " " ]
|
||||||
str "myPrayerJournal is a place where individuals can record their prayer requests, record that they prayed for "
|
p [] [
|
||||||
str "them, update them as God moves in the situation, and record a final answer received on that request. It also "
|
str "myPrayerJournal is a place where individuals can record their prayer requests, record that they "
|
||||||
str "allows individuals to review their answered prayers."
|
str "prayed for them, update them as God moves in the situation, and record a final answer received on "
|
||||||
|
str "that request. It also allows individuals to review their answered prayers."
|
||||||
|
]
|
||||||
|
p [] [
|
||||||
|
str "This site is open and available to the general public. To get started, simply click the "
|
||||||
|
rawText "“Log On” link above, and log on with either a Microsoft or Google account. You can "
|
||||||
|
rawText "also learn more about the site at the “Docs” link, also above."
|
||||||
|
]
|
||||||
]
|
]
|
||||||
p [] [
|
|
||||||
str "This site is open and available to the general public. To get started, simply click the "
|
|
||||||
rawText "“Log On” link above, and log on with either a Microsoft or Google account. You can also "
|
|
||||||
rawText "learn more about the site at the “Docs” link, also above."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
||||||
/// The default navigation bar, which will load the items on page load, and whenever a refresh event occurs
|
/// The default navigation bar, which will load the items on page load, and whenever a refresh event occurs
|
||||||
let private navBar ctx =
|
let private navBar ctx =
|
||||||
nav [ _class "navbar navbar-dark"; _roleNavigation ] [
|
nav [ _class "navbar navbar-dark"; _roleNavigation ] [
|
||||||
div [ _class "container-fluid" ] [
|
div [ _class "container-fluid" ] [
|
||||||
pageLink "/" [ _class "navbar-brand" ] [
|
pageLink "/" [ _class "navbar-brand" ] [
|
||||||
span [ _class "m" ] [ str "my" ]
|
span [ _class "m" ] [ str "my" ]
|
||||||
span [ _class "p" ] [ str "Prayer" ]
|
span [ _class "p" ] [ str "Prayer" ]
|
||||||
span [ _class "j" ] [ str "Journal" ]
|
span [ _class "j" ] [ str "Journal" ]
|
||||||
]
|
]
|
||||||
seq {
|
seq {
|
||||||
let navLink (matchUrl : string) =
|
let navLink (matchUrl : string) =
|
||||||
match ctx.currentUrl.StartsWith matchUrl with true -> [ _class "is-active-route" ] | false -> []
|
match ctx.CurrentUrl.StartsWith matchUrl with true -> [ _class "is-active-route" ] | false -> []
|
||||||
|> pageLink matchUrl
|
|> pageLink matchUrl
|
||||||
match ctx.isAuthenticated with
|
if ctx.IsAuthenticated then
|
||||||
| true ->
|
li [ _class "nav-item" ] [ navLink "/journal" [ str "Journal" ] ]
|
||||||
li [ _class "nav-item" ] [ navLink "/journal" [ str "Journal" ] ]
|
li [ _class "nav-item" ] [ navLink "/requests/active" [ str "Active" ] ]
|
||||||
li [ _class "nav-item" ] [ navLink "/requests/active" [ str "Active" ] ]
|
if ctx.HasSnoozed then li [ _class "nav-item" ] [ navLink "/requests/snoozed" [ str "Snoozed" ] ]
|
||||||
if ctx.hasSnoozed then li [ _class "nav-item" ] [ navLink "/requests/snoozed" [ str "Snoozed" ] ]
|
li [ _class "nav-item" ] [ navLink "/requests/answered" [ str "Answered" ] ]
|
||||||
li [ _class "nav-item" ] [ navLink "/requests/answered" [ str "Answered" ] ]
|
li [ _class "nav-item" ] [ a [ _href "/user/log-off" ] [ str "Log Off" ] ]
|
||||||
li [ _class "nav-item" ] [ a [ _href "/user/log-off" ] [ str "Log Off" ] ]
|
else li [ _class "nav-item"] [ a [ _href "/user/log-on" ] [ str "Log On" ] ]
|
||||||
| false -> li [ _class "nav-item"] [ a [ _href "/user/log-on" ] [ str "Log On" ] ]
|
li [ _class "nav-item" ] [
|
||||||
li [ _class "nav-item" ] [
|
a [ _href "https://docs.prayerjournal.me"; _target "_blank"; _rel "noopener" ] [ str "Docs" ]
|
||||||
a [ _href "https://docs.prayerjournal.me"; _target "_blank"; _rel "noopener" ] [ str "Docs" ]
|
]
|
||||||
]
|
}
|
||||||
}
|
|> List.ofSeq
|
||||||
|> List.ofSeq
|
|> ul [ _class "navbar-nav me-auto d-flex flex-row" ]
|
||||||
|> ul [ _class "navbar-nav me-auto d-flex flex-row" ]
|
]
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
|
||||||
/// The title tag with the application name appended
|
/// The title tag with the application name appended
|
||||||
let titleTag ctx = title [] [ str ctx.pageTitle; rawText " « myPrayerJournal" ]
|
let titleTag ctx =
|
||||||
|
title [] [ str ctx.PageTitle; rawText " « myPrayerJournal" ]
|
||||||
|
|
||||||
/// The HTML `head` element
|
/// The HTML `head` element
|
||||||
let htmlHead ctx =
|
let htmlHead ctx =
|
||||||
head [ _lang "en" ] [
|
head [ _lang "en" ] [
|
||||||
meta [ _name "viewport"; _content "width=device-width, initial-scale=1" ]
|
meta [ _name "viewport"; _content "width=device-width, initial-scale=1" ]
|
||||||
meta [ _name "description"; _content "Online prayer journal - free w/Google or Microsoft account" ]
|
meta [ _name "description"; _content "Online prayer journal - free w/Google or Microsoft account" ]
|
||||||
titleTag ctx
|
titleTag ctx
|
||||||
link [
|
link [ _href "https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css"
|
||||||
_href "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
|
_rel "stylesheet"
|
||||||
_rel "stylesheet"
|
_integrity "sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
|
||||||
_integrity "sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
|
_crossorigin "anonymous" ]
|
||||||
_crossorigin "anonymous"
|
link [ _href "https://fonts.googleapis.com/icon?family=Material+Icons"; _rel "stylesheet" ]
|
||||||
]
|
link [ _href "/style/style.css"; _rel "stylesheet" ]
|
||||||
link [ _href "https://fonts.googleapis.com/icon?family=Material+Icons"; _rel "stylesheet" ]
|
|
||||||
link [ _href "/style/style.css"; _rel "stylesheet" ]
|
|
||||||
]
|
]
|
||||||
|
|
||||||
/// Element used to display toasts
|
/// Element used to display toasts
|
||||||
let toaster =
|
let toaster =
|
||||||
div [ _ariaLive "polite"; _ariaAtomic "true"; _id "toastHost" ] [
|
div [ _ariaLive "polite"; _ariaAtomic "true"; _id "toastHost" ] [
|
||||||
div [ _class "toast-container position-absolute p-3 bottom-0 end-0"; _id "toasts" ] []
|
div [ _class "toast-container position-absolute p-3 bottom-0 end-0"; _id "toasts" ] []
|
||||||
]
|
]
|
||||||
|
|
||||||
/// The page's `footer` element
|
/// The page's `footer` element
|
||||||
let htmlFoot =
|
let htmlFoot =
|
||||||
footer [ _class "container-fluid" ] [
|
footer [ _class "container-fluid" ] [
|
||||||
p [ _class "text-muted text-end" ] [
|
p [ _class "text-muted text-end" ] [
|
||||||
str "myPrayerJournal v3"
|
str $"myPrayerJournal {version}"
|
||||||
br []
|
br []
|
||||||
em [] [
|
em [] [
|
||||||
small [] [
|
small [] [
|
||||||
pageLink "/legal/privacy-policy" [] [ str "Privacy Policy" ]
|
pageLink "/legal/privacy-policy" [] [ str "Privacy Policy" ]
|
||||||
rawText " • "
|
rawText " • "
|
||||||
pageLink "/legal/terms-of-service" [] [ str "Terms of Service" ]
|
pageLink "/legal/terms-of-service" [] [ str "Terms of Service" ]
|
||||||
rawText " • "
|
rawText " • "
|
||||||
a [ _href "https://github.com/bit-badger/myprayerjournal"; _target "_blank"; _rel "noopener" ] [
|
a [ _href "https://github.com/bit-badger/myprayerjournal"; _target "_blank"; _rel "noopener" ] [
|
||||||
str "Developed"
|
str "Developed"
|
||||||
|
]
|
||||||
|
str " and hosted by "
|
||||||
|
a [ _href "https://bitbadger.solutions"; _target "_blank"; _rel "noopener" ] [
|
||||||
|
str "Bit Badger Solutions"
|
||||||
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
str " and hosted by "
|
|
||||||
a [ _href "https://bitbadger.solutions"; _target "_blank"; _rel "noopener" ] [ str "Bit Badger Solutions" ]
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
]
|
Htmx.Script.minified
|
||||||
script [
|
script [] [
|
||||||
_src "https://unpkg.com/htmx.org@1.5.0"
|
rawText "if (!htmx) document.write('<script src=\"/script/htmx.min.js\"><\/script>')"
|
||||||
_integrity "sha384-oGA+prIp5Vchu6we2YkI51UtVzN9Jpx2Z7PnR1I78PnZlN8LkrCT4lqqqmDkyrvI"
|
]
|
||||||
_crossorigin "anonymous"
|
script [ _async
|
||||||
] []
|
_src "https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
|
||||||
script [] [
|
_integrity "sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
|
||||||
rawText "if (!htmx) document.write('<script src=\"/script/htmx-1.5.0.min.js\"><\/script>')"
|
_crossorigin "anonymous" ] []
|
||||||
]
|
script [] [
|
||||||
script [
|
rawText "setTimeout(function () { "
|
||||||
_async
|
rawText "if (!bootstrap) document.write('<script src=\"/script/bootstrap.bundle.min.js\"><\/script>') "
|
||||||
_src "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
|
rawText "}, 2000)"
|
||||||
_integrity "sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
|
]
|
||||||
_crossorigin "anonymous"
|
script [ _src "/script/mpj.js" ] []
|
||||||
] []
|
|
||||||
script [] [
|
|
||||||
rawText "setTimeout(function () { "
|
|
||||||
rawText "if (!bootstrap) document.write('<script src=\"/script/bootstrap.bundle.min.js\"><\/script>') "
|
|
||||||
rawText "}, 2000)"
|
|
||||||
]
|
|
||||||
script [ _src "/script/mpj.js" ] []
|
|
||||||
]
|
]
|
||||||
|
|
||||||
/// Create the full view of the page
|
/// Create the full view of the page
|
||||||
let view ctx =
|
let view ctx =
|
||||||
html [ _lang "en" ] [
|
html [ _lang "en" ] [
|
||||||
htmlHead ctx
|
htmlHead ctx
|
||||||
body [] [
|
body [] [
|
||||||
section [ _id "top" ] [ navBar ctx; main [ _roleMain ] [ ctx.content ] ]
|
section [ _id "top"; _ariaLabel "Top navigation" ] [ navBar ctx; main [ _roleMain ] [ ctx.Content ] ]
|
||||||
toaster
|
toaster
|
||||||
htmlFoot
|
htmlFoot
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
||||||
/// Create a partial view
|
/// Create a partial view
|
||||||
let partial ctx =
|
let partial ctx =
|
||||||
html [ _lang "en" ] [
|
html [ _lang "en" ] [
|
||||||
head [] [ titleTag ctx ]
|
head [] [ titleTag ctx ]
|
||||||
body [] [ navBar ctx; main [ _roleMain ] [ ctx.content ] ]
|
body [] [ navBar ctx; main [ _roleMain ] [ ctx.Content ] ]
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -4,150 +4,159 @@ module MyPrayerJournal.Views.Legal
|
|||||||
open Giraffe.ViewEngine
|
open Giraffe.ViewEngine
|
||||||
|
|
||||||
/// View for the "Privacy Policy" page
|
/// View for the "Privacy Policy" page
|
||||||
let privacyPolicy = article [ _class "container mt-3" ] [
|
let privacyPolicy =
|
||||||
h2 [ _class "mb-2" ] [ str "Privacy Policy" ]
|
article [ _class "container mt-3" ] [
|
||||||
h6 [ _class "text-muted pb-3" ] [ str "as of May 21"; sup [] [ str "st"]; str ", 2018" ]
|
h2 [ _class "mb-2" ] [ str "Privacy Policy" ]
|
||||||
p [] [
|
h6 [ _class "text-muted pb-3" ] [ str "as of May 21"; sup [] [ str "st"]; str ", 2018" ]
|
||||||
str "The nature of the service is one where privacy is a must. The items below will help you understand the data "
|
p [] [
|
||||||
str "we collect, access, and store on your behalf as you use this service."
|
str "The nature of the service is one where privacy is a must. The items below will help you understand "
|
||||||
|
str "the data we collect, access, and store on your behalf as you use this service."
|
||||||
|
]
|
||||||
|
div [ _class "card" ] [
|
||||||
|
div [ _class "list-group list-group-flush" ] [
|
||||||
|
div [ _class "list-group-item"] [
|
||||||
|
h3 [] [ str "Third Party Services" ]
|
||||||
|
p [ _class "card-text" ] [
|
||||||
|
str "myPrayerJournal utilizes a third-party authentication and identity provider. You should "
|
||||||
|
str "familiarize yourself with the privacy policy for "
|
||||||
|
a [ _href "https://auth0.com/privacy"; _target "_blank" ] [ str "Auth0" ]
|
||||||
|
str ", as well as your chosen provider ("
|
||||||
|
a [ _href "https://privacy.microsoft.com/en-us/privacystatement"; _target "_blank" ] [
|
||||||
|
str "Microsoft"
|
||||||
|
]
|
||||||
|
str " or "
|
||||||
|
a [ _href "https://policies.google.com/privacy"; _target "_blank" ] [ str "Google" ]
|
||||||
|
str ")."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _class "list-group-item" ] [
|
||||||
|
h3 [] [ str "What We Collect" ]
|
||||||
|
h4 [] [ str "Identifying Data" ]
|
||||||
|
ul [] [
|
||||||
|
li [] [
|
||||||
|
str "The only identifying data myPrayerJournal stores is the subscriber "
|
||||||
|
rawText "(“sub”) field from the token we receive from Auth0, once you have "
|
||||||
|
str "signed in through their hosted service. All information is associated with you via "
|
||||||
|
str "this field."
|
||||||
|
]
|
||||||
|
li [] [
|
||||||
|
str "While you are signed in, within your browser, the service has access to your first "
|
||||||
|
str "and last names, along with a URL to the profile picture (provided by your selected "
|
||||||
|
str "identity provider). This information is not transmitted to the server, and is removed "
|
||||||
|
rawText "when “Log Off” is clicked."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
h4 [] [ str "User Provided Data" ]
|
||||||
|
ul [ _class "mb-0" ] [
|
||||||
|
li [] [
|
||||||
|
str "myPrayerJournal stores the information you provide, including the text of prayer "
|
||||||
|
str "requests, updates, and notes; and the date/time when certain actions are taken."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _class "list-group-item" ] [
|
||||||
|
h3 [] [ str "How Your Data Is Accessed / Secured" ]
|
||||||
|
ul [ _class "mb-0" ] [
|
||||||
|
li [] [
|
||||||
|
str "Your provided data is returned to you, as required, to display your journal or your "
|
||||||
|
str "answered requests. On the server, it is stored in a controlled-access database."
|
||||||
|
]
|
||||||
|
li [] [
|
||||||
|
str "Your data is backed up, along with other Bit Badger Solutions hosted systems, in a "
|
||||||
|
str "rolling manner; backups are preserved for the prior 7 days, and backups from the 1"
|
||||||
|
sup [] [ str "st" ]
|
||||||
|
str " and 15"
|
||||||
|
sup [] [ str "th" ]
|
||||||
|
str " are preserved for 3 months. These backups are stored in a private cloud data "
|
||||||
|
str "repository."
|
||||||
|
]
|
||||||
|
li [] [
|
||||||
|
str "The data collected and stored is the absolute minimum necessary for the functionality "
|
||||||
|
rawText "of the service. There are no plans to “monetize” this service, and "
|
||||||
|
str "storing the minimum amount of information means that the data we have is not "
|
||||||
|
str "interesting to purchasers (or those who may have more nefarious purposes)."
|
||||||
|
]
|
||||||
|
li [] [
|
||||||
|
str "Access to servers and backups is strictly controlled and monitored for unauthorized "
|
||||||
|
str "access attempts."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _class "list-group-item" ] [
|
||||||
|
h3 [] [ str "Removing Your Data" ]
|
||||||
|
p [ _class "card-text" ] [
|
||||||
|
str "At any time, you may choose to discontinue using this service. Both Microsoft and Google "
|
||||||
|
str "provide ways to revoke access from this application. However, if you want your data "
|
||||||
|
str "removed from the database, please contact daniel at bitbadger.solutions (via e-mail, "
|
||||||
|
str "replacing at with @) prior to doing so, to ensure we can determine which subscriber ID "
|
||||||
|
str "belongs to you."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
div [ _class "card" ] [
|
|
||||||
div [ _class "list-group list-group-flush" ] [
|
|
||||||
div [ _class "list-group-item"] [
|
|
||||||
h3 [] [ str "Third Party Services" ]
|
|
||||||
p [ _class "card-text" ] [
|
|
||||||
str "myPrayerJournal utilizes a third-party authentication and identity provider. You should familiarize "
|
|
||||||
str "yourself with the privacy policy for "
|
|
||||||
a [ _href "https://auth0.com/privacy"; _target "_blank" ] [ str "Auth0" ]
|
|
||||||
str ", as well as your chosen provider ("
|
|
||||||
a [ _href "https://privacy.microsoft.com/en-us/privacystatement"; _target "_blank" ] [ str "Microsoft"]
|
|
||||||
str " or "
|
|
||||||
a [ _href "https://policies.google.com/privacy"; _target "_blank" ] [ str "Google" ]
|
|
||||||
str ")."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
div [ _class "list-group-item" ] [
|
|
||||||
h3 [] [ str "What We Collect" ]
|
|
||||||
h4 [] [ str "Identifying Data" ]
|
|
||||||
ul [] [
|
|
||||||
li [] [
|
|
||||||
rawText "The only identifying data myPrayerJournal stores is the subscriber (“sub”) field from "
|
|
||||||
str "the token we receive from Auth0, once you have signed in through their hosted service. All "
|
|
||||||
str "information is associated with you via this field."
|
|
||||||
]
|
|
||||||
li [] [
|
|
||||||
str "While you are signed in, within your browser, the service has access to your first and last names, "
|
|
||||||
str "along with a URL to the profile picture (provided by your selected identity provider). This "
|
|
||||||
rawText "information is not transmitted to the server, and is removed when “Log Off” is "
|
|
||||||
str "clicked."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
h4 [] [ str "User Provided Data" ]
|
|
||||||
ul [ _class "mb-0" ] [
|
|
||||||
li [] [
|
|
||||||
str "myPrayerJournal stores the information you provide, including the text of prayer requests, updates, "
|
|
||||||
str "and notes; and the date/time when certain actions are taken."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
div [ _class "list-group-item" ] [
|
|
||||||
h3 [] [ str "How Your Data Is Accessed / Secured" ]
|
|
||||||
ul [ _class "mb-0" ] [
|
|
||||||
li [] [
|
|
||||||
str "Your provided data is returned to you, as required, to display your journal or your answered "
|
|
||||||
str "requests. On the server, it is stored in a controlled-access database."
|
|
||||||
]
|
|
||||||
li [] [
|
|
||||||
str "Your data is backed up, along with other Bit Badger Solutions hosted systems, in a rolling manner; "
|
|
||||||
str "backups are preserved for the prior 7 days, and backups from the 1"
|
|
||||||
sup [] [ str "st" ]
|
|
||||||
str " and 15"
|
|
||||||
sup [] [ str "th" ]
|
|
||||||
str " are preserved for 3 months. These backups are stored in a private cloud data repository."
|
|
||||||
]
|
|
||||||
li [] [
|
|
||||||
str "The data collected and stored is the absolute minimum necessary for the functionality of the service. "
|
|
||||||
rawText "There are no plans to “monetize” this service, and storing the minimum amount of "
|
|
||||||
str "information means that the data we have is not interesting to purchasers (or those who may have more "
|
|
||||||
str "nefarious purposes)."
|
|
||||||
]
|
|
||||||
li [] [
|
|
||||||
str "Access to servers and backups is strictly controlled and monitored for unauthorized access attempts."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
div [ _class "list-group-item" ] [
|
|
||||||
h3 [] [ str "Removing Your Data" ]
|
|
||||||
p [ _class "card-text" ] [
|
|
||||||
str "At any time, you may choose to discontinue using this service. Both Microsoft and Google provide ways "
|
|
||||||
str "to revoke access from this application. However, if you want your data removed from the database, "
|
|
||||||
str "please contact daniel at bitbadger.solutions (via e-mail, replacing at with @) prior to doing so, to "
|
|
||||||
str "ensure we can determine which subscriber ID belongs to you."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
||||||
/// View for the "Terms of Service" page
|
/// View for the "Terms of Service" page
|
||||||
let termsOfService = article [ _class "container mt-3" ] [
|
let termsOfService =
|
||||||
h2 [ _class "mb-2" ] [ str "Terms of Service" ]
|
article [ _class "container mt-3" ] [
|
||||||
h6 [ _class "text-muted pb-3"] [ str "as of May 21"; sup [] [ str "st" ]; str ", 2018" ]
|
h2 [ _class "mb-2" ] [ str "Terms of Service" ]
|
||||||
div [ _class "card" ] [
|
h6 [ _class "text-muted pb-3"] [ str "as of May 21"; sup [] [ str "st" ]; str ", 2018" ]
|
||||||
div [ _class "list-group list-group-flush" ] [
|
div [ _class "card" ] [
|
||||||
div [ _class "list-group-item" ] [
|
div [ _class "list-group list-group-flush" ] [
|
||||||
h3 [] [ str "1. Acceptance of Terms" ]
|
div [ _class "list-group-item" ] [
|
||||||
p [ _class "card-text" ] [
|
h3 [] [ str "1. Acceptance of Terms" ]
|
||||||
str "By accessing this web site, you are agreeing to be bound by these Terms and Conditions, and that you "
|
p [ _class "card-text" ] [
|
||||||
str "are responsible to ensure that your use of this site complies with all applicable laws. Your continued "
|
str "By accessing this web site, you are agreeing to be bound by these Terms and Conditions, "
|
||||||
str "use of this site implies your acceptance of these terms."
|
str "and that you are responsible to ensure that your use of this site complies with all "
|
||||||
]
|
str "applicable laws. Your continued use of this site implies your acceptance of these terms."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _class "list-group-item" ] [
|
||||||
|
h3 [] [ str "2. Description of Service and Registration" ]
|
||||||
|
p [ _class "card-text" ] [
|
||||||
|
str "myPrayerJournal is a service that allows individuals to enter and amend their prayer "
|
||||||
|
str "requests. It requires no registration by itself, but access is granted based on a "
|
||||||
|
str "successful login with an external identity provider. See "
|
||||||
|
pageLink "/legal/privacy-policy" [] [ str "our privacy policy" ]
|
||||||
|
str " for details on how that information is accessed and stored."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _class "list-group-item" ] [
|
||||||
|
h3 [] [ str "3. Third Party Services" ]
|
||||||
|
p [ _class "card-text" ] [
|
||||||
|
str "This service utilizes a third-party service provider for identity management. Review the "
|
||||||
|
str "terms of service for "
|
||||||
|
a [ _href "https://auth0.com/terms"; _target "_blank" ] [ str "Auth0"]
|
||||||
|
str ", as well as those for the selected authorization provider ("
|
||||||
|
a [ _href "https://www.microsoft.com/en-us/servicesagreement"; _target "_blank" ] [
|
||||||
|
str "Microsoft"
|
||||||
|
]
|
||||||
|
str " or "
|
||||||
|
a [ _href "https://policies.google.com/terms"; _target "_blank" ] [ str "Google" ]
|
||||||
|
str ")."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _class "list-group-item" ] [
|
||||||
|
h3 [] [ str "4. Liability" ]
|
||||||
|
p [ _class "card-text" ] [
|
||||||
|
rawText "This service is provided “as is”, and no warranty (express or implied) "
|
||||||
|
str "exists. The service and its developers may not be held liable for any damages that may "
|
||||||
|
str "arise through the use of this service."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _class "list-group-item" ] [
|
||||||
|
h3 [] [ str "5. Updates to Terms" ]
|
||||||
|
p [ _class "card-text" ] [
|
||||||
|
str "These terms and conditions may be updated at any time, and this service does not have the "
|
||||||
|
str "capability to notify users when these change. The date at the top of the page will be "
|
||||||
|
str "updated when any of the text of these terms is updated."
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
div [ _class "list-group-item" ] [
|
p [ _class "pt-3" ] [
|
||||||
h3 [] [ str "2. Description of Service and Registration" ]
|
str "You may also wish to review our "
|
||||||
p [ _class "card-text" ] [
|
pageLink "/legal/privacy-policy" [] [ str "privacy policy" ]
|
||||||
str "myPrayerJournal is a service that allows individuals to enter and amend their prayer requests. It "
|
str " to learn how we handle your data."
|
||||||
str "requires no registration by itself, but access is granted based on a successful login with an external "
|
|
||||||
str "identity provider. See "
|
|
||||||
pageLink "/legal/privacy-policy" [] [ str "our privacy policy" ]
|
|
||||||
str " for details on how that information is accessed and stored."
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
div [ _class "list-group-item" ] [
|
|
||||||
h3 [] [ str "3. Third Party Services" ]
|
|
||||||
p [ _class "card-text" ] [
|
|
||||||
str "This service utilizes a third-party service provider for identity management. Review the terms of "
|
|
||||||
str "service for "
|
|
||||||
a [ _href "https://auth0.com/terms"; _target "_blank" ] [ str "Auth0"]
|
|
||||||
str ", as well as those for the selected authorization provider ("
|
|
||||||
a [ _href "https://www.microsoft.com/en-us/servicesagreement"; _target "_blank" ] [ str "Microsoft"]
|
|
||||||
str " or "
|
|
||||||
a [ _href "https://policies.google.com/terms"; _target "_blank" ] [ str "Google" ]
|
|
||||||
str ")."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
div [ _class "list-group-item" ] [
|
|
||||||
h3 [] [ str "4. Liability" ]
|
|
||||||
p [ _class "card-text" ] [
|
|
||||||
rawText "This service is provided “as is”, and no warranty (express or implied) exists. The "
|
|
||||||
str "service and its developers may not be held liable for any damages that may arise through the use of "
|
|
||||||
str "this service."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
div [ _class "list-group-item" ] [
|
|
||||||
h3 [] [ str "5. Updates to Terms" ]
|
|
||||||
p [ _class "card-text" ] [
|
|
||||||
str "These terms and conditions may be updated at any time, and this service does not have the capability to "
|
|
||||||
str "notify users when these change. The date at the top of the page will be updated when any of the text of "
|
|
||||||
str "these terms is updated."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
p [ _class "pt-3" ] [
|
|
||||||
str "You may also wish to review our "
|
|
||||||
pageLink "/legal/privacy-policy" [] [ str "privacy policy" ]
|
|
||||||
str " to learn how we handle your data."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,268 +1,270 @@
|
|||||||
/// Views for request pages and components
|
/// Views for request pages and components
|
||||||
module MyPrayerJournal.Views.Request
|
module MyPrayerJournal.Views.Request
|
||||||
|
|
||||||
|
open Giraffe.Htmx
|
||||||
open Giraffe.ViewEngine
|
open Giraffe.ViewEngine
|
||||||
open Giraffe.ViewEngine.Htmx
|
open Giraffe.ViewEngine.Htmx
|
||||||
open MyPrayerJournal
|
open MyPrayerJournal
|
||||||
open NodaTime
|
open NodaTime
|
||||||
open System
|
|
||||||
|
|
||||||
/// Create a request within the list
|
/// Create a request within the list
|
||||||
let reqListItem now req =
|
let reqListItem now tz req =
|
||||||
let reqId = RequestId.toString req.requestId
|
let isFuture instant = defaultArg (instant |> Option.map (fun it -> it > now)) false
|
||||||
let isAnswered = req.lastStatus = Answered
|
let reqId = RequestId.toString req.RequestId
|
||||||
let isSnoozed = req.snoozedUntil > now
|
let isAnswered = req.LastStatus = Answered
|
||||||
let isPending = (not isSnoozed) && req.showAfter > now
|
let isSnoozed = isFuture req.SnoozedUntil
|
||||||
let btnClass = _class "btn btn-light mx-2"
|
let isPending = (not isSnoozed) && isFuture req.ShowAfter
|
||||||
let restoreBtn (link : string) title =
|
let btnClass = _class "btn btn-light mx-2"
|
||||||
button [ btnClass; _hxPatch $"/request/{reqId}/{link}"; _title title ] [ icon "restore" ]
|
let restoreBtn (link : string) title =
|
||||||
div [ _class "list-group-item px-0 d-flex flex-row align-items-start"; _hxTarget "this"; _hxSwap HxSwap.OuterHtml ] [
|
button [ btnClass; _hxPatch $"/request/{reqId}/{link}"; _title title ] [ icon "restore" ]
|
||||||
pageLink $"/request/{reqId}/full" [ btnClass; _title "View Full Request" ] [ icon "description" ]
|
div [ _class "list-group-item px-0 d-flex flex-row align-items-start"
|
||||||
match isAnswered with
|
_hxTarget "this"
|
||||||
| true -> ()
|
_hxSwap HxSwap.OuterHtml ] [
|
||||||
| false -> pageLink $"/request/{reqId}/edit" [ btnClass; _title "Edit Request" ] [ icon "edit" ]
|
pageLink $"/request/{reqId}/full" [ btnClass; _title "View Full Request" ] [ icon "description" ]
|
||||||
match true with
|
if not isAnswered then pageLink $"/request/{reqId}/edit" [ btnClass; _title "Edit Request" ] [ icon "edit" ]
|
||||||
| _ when isSnoozed -> restoreBtn "cancel-snooze" "Cancel Snooze"
|
if isSnoozed then restoreBtn "cancel-snooze" "Cancel Snooze"
|
||||||
| _ when isPending -> restoreBtn "show" "Show Now"
|
elif isPending then restoreBtn "show" "Show Now"
|
||||||
| _ -> ()
|
p [ _class "request-text mb-0" ] [
|
||||||
p [ _class "request-text mb-0" ] [
|
str req.Text
|
||||||
str req.text
|
if isSnoozed || isPending || isAnswered then
|
||||||
match isSnoozed || isPending || isAnswered with
|
br []
|
||||||
| true ->
|
small [ _class "text-muted" ] [
|
||||||
br []
|
if isSnoozed then [ str "Snooze expires "; relativeDate req.SnoozedUntil.Value now tz ]
|
||||||
small [ _class "text-muted" ] [
|
elif isPending then [ str "Request appears next "; relativeDate req.ShowAfter.Value now tz ]
|
||||||
match () with
|
else (* isAnswered *) [ str "Answered "; relativeDate req.AsOf now tz ]
|
||||||
| _ when isSnoozed -> [ str "Snooze expires "; relativeDate req.snoozedUntil now ]
|
|> em []
|
||||||
| _ when isPending -> [ str "Request appears next "; relativeDate req.showAfter now ]
|
]
|
||||||
| _ (* isAnswered *) -> [ str "Answered "; relativeDate req.asOf now ]
|
]
|
||||||
|> em []
|
|
||||||
]
|
|
||||||
| false -> ()
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
|
||||||
/// Create a list of requests
|
/// Create a list of requests
|
||||||
let reqList now reqs =
|
let reqList now tz reqs =
|
||||||
reqs
|
reqs
|
||||||
|> List.map (reqListItem now)
|
|> List.map (reqListItem now tz)
|
||||||
|> div [ _class "list-group" ]
|
|> div [ _class "list-group" ]
|
||||||
|
|
||||||
/// View for Active Requests page
|
/// View for Active Requests page
|
||||||
let active now reqs = article [ _class "container mt-3" ] [
|
let active now tz reqs =
|
||||||
h2 [ _class "pb-3" ] [ str "Active Requests" ]
|
article [ _class "container mt-3" ] [
|
||||||
match reqs |> List.isEmpty with
|
h2 [ _class "pb-3" ] [ str "Active Requests" ]
|
||||||
| true ->
|
if List.isEmpty reqs then
|
||||||
noResults "No Active Requests" "/journal" "Return to your journal"
|
noResults "No Active Requests" "/journal" "Return to your journal"
|
||||||
[ str "Your prayer journal has no active requests" ]
|
[ str "Your prayer journal has no active requests" ]
|
||||||
| false -> reqList now reqs
|
else reqList now tz reqs
|
||||||
]
|
]
|
||||||
|
|
||||||
/// View for Answered Requests page
|
/// View for Answered Requests page
|
||||||
let answered now reqs = article [ _class "container mt-3" ] [
|
let answered now tz reqs =
|
||||||
h2 [ _class "pb-3" ] [ str "Answered Requests" ]
|
article [ _class "container mt-3" ] [
|
||||||
match reqs |> List.isEmpty with
|
h2 [ _class "pb-3" ] [ str "Answered Requests" ]
|
||||||
| true ->
|
if List.isEmpty reqs then
|
||||||
noResults "No Active Requests" "/journal" "Return to your journal" [
|
noResults "No Answered Requests" "/journal" "Return to your journal" [
|
||||||
rawText "Your prayer journal has no answered requests; once you have marked one as “Answered”, "
|
str "Your prayer journal has no answered requests; once you have marked one as "
|
||||||
str "it will appear here"
|
rawText "“Answered”, it will appear here"
|
||||||
]
|
]
|
||||||
| false -> reqList now reqs
|
else reqList now tz reqs
|
||||||
]
|
]
|
||||||
|
|
||||||
/// View for Snoozed Requests page
|
/// View for Snoozed Requests page
|
||||||
let snoozed now reqs = article [ _class "container mt-3" ] [
|
let snoozed now tz reqs =
|
||||||
h2 [ _class "pb-3" ] [ str "Snoozed Requests" ]
|
article [ _class "container mt-3" ] [
|
||||||
reqList now reqs
|
h2 [ _class "pb-3" ] [ str "Snoozed Requests" ]
|
||||||
]
|
reqList now tz reqs
|
||||||
|
]
|
||||||
|
|
||||||
/// View for Full Request page
|
/// View for Full Request page
|
||||||
let full (clock : IClock) (req : Request) =
|
let full (clock : IClock) tz (req : Request) =
|
||||||
let now = clock.GetCurrentInstant ()
|
let now = clock.GetCurrentInstant ()
|
||||||
let answered =
|
let answered =
|
||||||
req.history
|
req.History
|
||||||
|> List.filter RequestAction.isAnswered
|
|> Array.filter History.isAnswered
|
||||||
|> List.tryHead
|
|> Array.tryHead
|
||||||
|> Option.map (fun x -> x.asOf)
|
|> Option.map (fun x -> x.AsOf)
|
||||||
let prayed = (req.history |> List.filter RequestAction.isPrayed |> List.length).ToString "N0"
|
let prayed = (req.History |> Array.filter History.isPrayed |> Array.length).ToString "N0"
|
||||||
let daysOpen =
|
let daysOpen =
|
||||||
let asOf = defaultArg answered now
|
let asOf = defaultArg answered now
|
||||||
((asOf - (req.history |> List.filter RequestAction.isCreated |> List.head).asOf).TotalDays |> int).ToString "N0"
|
((asOf - (req.History |> Array.filter History.isCreated |> Array.head).AsOf).TotalDays |> int).ToString "N0"
|
||||||
let lastText =
|
let lastText =
|
||||||
req.history
|
req.History
|
||||||
|> List.filter (fun h -> Option.isSome h.text)
|
|> Array.filter (fun h -> Option.isSome h.Text)
|
||||||
|> List.sortByDescending (fun h -> h.asOf)
|
|> Array.sortByDescending (fun h -> h.AsOf)
|
||||||
|> List.map (fun h -> Option.get h.text)
|
|> Array.map (fun h -> Option.get h.Text)
|
||||||
|> List.head
|
|> Array.head
|
||||||
// The history log including notes (and excluding the final entry for answered requests)
|
// The history log including notes (and excluding the final entry for answered requests)
|
||||||
let log =
|
let log =
|
||||||
let toDisp (h : History) = {| asOf = h.asOf; text = h.text; status = RequestAction.toString h.status |}
|
let toDisp (h : History) = {| asOf = h.AsOf; text = h.Text; status = RequestAction.toString h.Status |}
|
||||||
let all =
|
let all =
|
||||||
req.notes
|
req.Notes
|
||||||
|> List.map (fun n -> {| asOf = n.asOf; text = Some n.notes; status = "Notes" |})
|
|> Array.map (fun n -> {| asOf = n.AsOf; text = Some n.Notes; status = "Notes" |})
|
||||||
|> List.append (req.history |> List.map toDisp)
|
|> Array.append (req.History |> Array.map toDisp)
|
||||||
|> List.sortByDescending (fun it -> it.asOf)
|
|> Array.sortByDescending (fun it -> it.asOf)
|
||||||
// Skip the first entry for answered requests; that info is already displayed
|
|> List.ofArray
|
||||||
match answered with Some _ -> all |> List.skip 1 | None -> all
|
// Skip the first entry for answered requests; that info is already displayed
|
||||||
article [ _class "container mt-3" ] [
|
match answered with Some _ -> all.Tail | None -> all
|
||||||
div [_class "card" ] [
|
article [ _class "container mt-3" ] [
|
||||||
h5 [ _class "card-header" ] [ str "Full Prayer Request" ]
|
div [_class "card" ] [
|
||||||
div [ _class "card-body" ] [
|
h5 [ _class "card-header" ] [ str "Full Prayer Request" ]
|
||||||
h6 [ _class "card-subtitle text-muted mb-2"] [
|
div [ _class "card-body" ] [
|
||||||
match answered with
|
h6 [ _class "card-subtitle text-muted mb-2"] [
|
||||||
| Some date ->
|
match answered with
|
||||||
str "Answered "
|
| Some date ->
|
||||||
date.ToDateTimeOffset().ToString ("D", null) |> str
|
str "Answered "
|
||||||
str " ("
|
date.ToDateTimeOffset().ToString ("D", null) |> str
|
||||||
relativeDate date now
|
str " ("
|
||||||
rawText ") • "
|
relativeDate date now tz
|
||||||
| None -> ()
|
rawText ") • "
|
||||||
sprintf "Prayed %s times • Open %s days" prayed daysOpen |> rawText
|
| None -> ()
|
||||||
]
|
rawText $"Prayed %s{prayed} times • Open %s{daysOpen} days"
|
||||||
p [ _class "card-text" ] [ str lastText ]
|
]
|
||||||
|
p [ _class "card-text" ] [ str lastText ]
|
||||||
|
]
|
||||||
|
log
|
||||||
|
|> List.map (fun it ->
|
||||||
|
li [ _class "list-group-item" ] [
|
||||||
|
p [ _class "m-0" ] [
|
||||||
|
str it.status
|
||||||
|
rawText " "
|
||||||
|
small [] [ em [] [ it.asOf.ToDateTimeOffset().ToString ("D", null) |> str ] ]
|
||||||
|
]
|
||||||
|
match it.text with
|
||||||
|
| Some txt -> p [ _class "mt-2 mb-0" ] [ str txt ]
|
||||||
|
| None -> ()
|
||||||
|
])
|
||||||
|
|> ul [ _class "list-group list-group-flush" ]
|
||||||
]
|
]
|
||||||
log
|
|
||||||
|> List.map (fun it -> li [ _class "list-group-item" ] [
|
|
||||||
p [ _class "m-0" ] [
|
|
||||||
str it.status
|
|
||||||
rawText " "
|
|
||||||
small [] [ em [] [ it.asOf.ToDateTimeOffset().ToString ("D", null) |> str ] ]
|
|
||||||
]
|
|
||||||
match it.text with
|
|
||||||
| Some txt -> p [ _class "mt-2 mb-0" ] [ str txt ]
|
|
||||||
| None -> ()
|
|
||||||
])
|
|
||||||
|> ul [ _class "list-group list-group-flush" ]
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
|
||||||
/// View for the edit request component
|
/// View for the edit request component
|
||||||
let edit (req : JournalRequest) returnTo isNew =
|
let edit (req : JournalRequest) returnTo isNew =
|
||||||
let cancelLink =
|
let cancelLink =
|
||||||
match returnTo with
|
match returnTo with
|
||||||
| "active" -> "/requests/active"
|
| "active" -> "/requests/active"
|
||||||
| "snoozed" -> "/requests/snoozed"
|
| "snoozed" -> "/requests/snoozed"
|
||||||
| _ (* "journal" *) -> "/journal"
|
| _ (* "journal" *) -> "/journal"
|
||||||
article [ _class "container" ] [
|
let recurCount =
|
||||||
h2 [ _class "pb-3" ] [ (match isNew with true -> "Add" | false -> "Edit") |> strf "%s Prayer Request" ]
|
match req.Recurrence with
|
||||||
form [
|
| Immediate -> None
|
||||||
_hxBoost
|
| Hours h -> Some h
|
||||||
_hxTarget "#top"
|
| Days d -> Some d
|
||||||
_hxPushUrl
|
| Weeks w -> Some w
|
||||||
"/request" |> match isNew with true -> _hxPost | false -> _hxPatch
|
|> Option.map string
|
||||||
] [
|
|> Option.defaultValue ""
|
||||||
input [
|
article [ _class "container" ] [
|
||||||
_type "hidden"
|
h2 [ _class "pb-3" ] [ (match isNew with true -> "Add" | false -> "Edit") |> strf "%s Prayer Request" ]
|
||||||
_name "requestId"
|
form [ _hxBoost
|
||||||
_value (match isNew with true -> "new" | false -> RequestId.toString req.requestId)
|
_hxTarget "#top"
|
||||||
]
|
_hxPushUrl "true"
|
||||||
input [ _type "hidden"; _name "returnTo"; _value returnTo ]
|
"/request" |> match isNew with true -> _hxPost | false -> _hxPatch ] [
|
||||||
div [ _class "form-floating pb-3" ] [
|
input [ _type "hidden"
|
||||||
textarea [
|
_name "requestId"
|
||||||
_id "requestText"
|
_value (match isNew with true -> "new" | false -> RequestId.toString req.RequestId) ]
|
||||||
_name "requestText"
|
input [ _type "hidden"; _name "returnTo"; _value returnTo ]
|
||||||
_class "form-control"
|
div [ _class "form-floating pb-3" ] [
|
||||||
_style "min-height: 8rem;"
|
textarea [ _id "requestText"
|
||||||
_placeholder "Enter the text of the request"
|
_name "requestText"
|
||||||
_autofocus; _required
|
_class "form-control"
|
||||||
] [ str req.text ]
|
_style "min-height: 8rem;"
|
||||||
label [ _for "requestText" ] [ str "Prayer Request" ]
|
_placeholder "Enter the text of the request"
|
||||||
]
|
_autofocus; _required ] [ str req.Text ]
|
||||||
br []
|
label [ _for "requestText" ] [ str "Prayer Request" ]
|
||||||
match isNew with
|
]
|
||||||
| true -> ()
|
|
||||||
| false ->
|
|
||||||
div [ _class "pb-3" ] [
|
|
||||||
label [] [ str "Also Mark As" ]
|
|
||||||
br []
|
br []
|
||||||
div [ _class "form-check form-check-inline" ] [
|
if not isNew then
|
||||||
input [ _type "radio"; _class "form-check-input"; _id "sU"; _name "status"; _value "Updated"; _checked ]
|
div [ _class "pb-3" ] [
|
||||||
label [ _for "sU" ] [ str "Updated" ]
|
label [] [ str "Also Mark As" ]
|
||||||
]
|
br []
|
||||||
div [ _class "form-check form-check-inline" ] [
|
div [ _class "form-check form-check-inline" ] [
|
||||||
input [ _type "radio"; _class "form-check-input"; _id "sP"; _name "status"; _value "Prayed" ]
|
input [ _type "radio"
|
||||||
label [ _for "sP" ] [ str "Prayed" ]
|
_class "form-check-input"
|
||||||
]
|
_id "sU"
|
||||||
div [ _class "form-check form-check-inline" ] [
|
_name "status"
|
||||||
input [ _type "radio"; _class "form-check-input"; _id "sA"; _name "status"; _value "Answered" ]
|
_value "Updated"
|
||||||
label [ _for "sA" ] [ str "Answered" ]
|
_checked ]
|
||||||
]
|
label [ _for "sU" ] [ str "Updated" ]
|
||||||
|
]
|
||||||
|
div [ _class "form-check form-check-inline" ] [
|
||||||
|
input [ _type "radio"; _class "form-check-input"; _id "sP"; _name "status"; _value "Prayed" ]
|
||||||
|
label [ _for "sP" ] [ str "Prayed" ]
|
||||||
|
]
|
||||||
|
div [ _class "form-check form-check-inline" ] [
|
||||||
|
input [ _type "radio"; _class "form-check-input"; _id "sA"; _name "status"; _value "Answered" ]
|
||||||
|
label [ _for "sA" ] [ str "Answered" ]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
div [ _class "row" ] [
|
||||||
|
div [ _class "col-12 offset-md-2 col-md-8 offset-lg-3 col-lg-6" ] [
|
||||||
|
p [] [
|
||||||
|
strong [] [ rawText "Recurrence " ]
|
||||||
|
em [ _class "text-muted" ] [ rawText "After prayer, request reappears…" ]
|
||||||
|
]
|
||||||
|
div [ _class "d-flex flex-row flex-wrap justify-content-center align-items-center" ] [
|
||||||
|
div [ _class "form-check mx-2" ] [
|
||||||
|
input [ _type "radio"
|
||||||
|
_class "form-check-input"
|
||||||
|
_id "rI"
|
||||||
|
_name "recurType"
|
||||||
|
_value "Immediate"
|
||||||
|
_onclick "mpj.edit.toggleRecurrence(event)"
|
||||||
|
match req.Recurrence with Immediate -> _checked | _ -> () ]
|
||||||
|
label [ _for "rI" ] [ str "Immediately" ]
|
||||||
|
]
|
||||||
|
div [ _class "form-check mx-2"] [
|
||||||
|
input [ _type "radio"
|
||||||
|
_class "form-check-input"
|
||||||
|
_id "rO"
|
||||||
|
_name "recurType"
|
||||||
|
_value "Other"
|
||||||
|
_onclick "mpj.edit.toggleRecurrence(event)"
|
||||||
|
match req.Recurrence with Immediate -> () | _ -> _checked ]
|
||||||
|
label [ _for "rO" ] [ rawText "Every…" ]
|
||||||
|
]
|
||||||
|
div [ _class "form-floating mx-2"] [
|
||||||
|
input [ _type "number"
|
||||||
|
_class "form-control"
|
||||||
|
_id "recurCount"
|
||||||
|
_name "recurCount"
|
||||||
|
_placeholder "0"
|
||||||
|
_value recurCount
|
||||||
|
_style "width:6rem;"
|
||||||
|
_required
|
||||||
|
match req.Recurrence with Immediate -> _disabled | _ -> () ]
|
||||||
|
label [ _for "recurCount" ] [ str "Count" ]
|
||||||
|
]
|
||||||
|
div [ _class "form-floating mx-2" ] [
|
||||||
|
select [ _class "form-control"
|
||||||
|
_id "recurInterval"
|
||||||
|
_name "recurInterval"
|
||||||
|
_style "width:6rem;"
|
||||||
|
_required
|
||||||
|
match req.Recurrence with Immediate -> _disabled | _ -> () ] [
|
||||||
|
option [ _value "Hours"; match req.Recurrence with Hours _ -> _selected | _ -> () ] [
|
||||||
|
str "hours"
|
||||||
|
]
|
||||||
|
option [ _value "Days"; match req.Recurrence with Days _ -> _selected | _ -> () ] [
|
||||||
|
str "days"
|
||||||
|
]
|
||||||
|
option [ _value "Weeks"; match req.Recurrence with Weeks _ -> _selected | _ -> () ] [
|
||||||
|
str "weeks"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
label [ _form "recurInterval" ] [ str "Interval" ]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
div [ _class "row" ] [
|
div [ _class "text-end pt-3" ] [
|
||||||
div [ _class "col-12 offset-md-2 col-md-8 offset-lg-3 col-lg-6" ] [
|
button [ _class "btn btn-primary me-2"; _type "submit" ] [ icon "save"; str " Save" ]
|
||||||
p [] [
|
pageLink cancelLink [ _class "btn btn-secondary ms-2" ] [ icon "arrow_back"; str " Cancel" ]
|
||||||
strong [] [ rawText "Recurrence " ]
|
|
||||||
em [ _class "text-muted" ] [ rawText "After prayer, request reappears…" ]
|
|
||||||
]
|
]
|
||||||
div [ _class "d-flex flex-row flex-wrap justify-content-center align-items-center" ] [
|
|
||||||
div [ _class "form-check mx-2" ] [
|
|
||||||
input [
|
|
||||||
_type "radio"
|
|
||||||
_class "form-check-input"
|
|
||||||
_id "rI"
|
|
||||||
_name "recurType"
|
|
||||||
_value "Immediate"
|
|
||||||
_onclick "mpj.edit.toggleRecurrence(event)"
|
|
||||||
match req.recurType with Immediate -> _checked | _ -> ()
|
|
||||||
]
|
|
||||||
label [ _for "rI" ] [ str "Immediately" ]
|
|
||||||
]
|
|
||||||
div [ _class "form-check mx-2"] [
|
|
||||||
input [
|
|
||||||
_type "radio"
|
|
||||||
_class "form-check-input"
|
|
||||||
_id "rO"
|
|
||||||
_name "recurType"
|
|
||||||
_value "Other"
|
|
||||||
_onclick "mpj.edit.toggleRecurrence(event)"
|
|
||||||
match req.recurType with Immediate -> () | _ -> _checked
|
|
||||||
]
|
|
||||||
label [ _for "rO" ] [ rawText "Every…" ]
|
|
||||||
]
|
|
||||||
div [ _class "form-floating mx-2"] [
|
|
||||||
input [
|
|
||||||
_type "number"
|
|
||||||
_class "form-control"
|
|
||||||
_id "recurCount"
|
|
||||||
_name "recurCount"
|
|
||||||
_placeholder "0"
|
|
||||||
_value (string req.recurCount)
|
|
||||||
_style "width:6rem;"
|
|
||||||
_required
|
|
||||||
match req.recurType with Immediate -> _disabled | _ -> ()
|
|
||||||
]
|
|
||||||
label [ _for "recurCount" ] [ str "Count" ]
|
|
||||||
]
|
|
||||||
div [ _class "form-floating mx-2" ] [
|
|
||||||
select [
|
|
||||||
_class "form-control"
|
|
||||||
_id "recurInterval"
|
|
||||||
_name "recurInterval"
|
|
||||||
_style "width:6rem;"
|
|
||||||
_required
|
|
||||||
match req.recurType with Immediate -> _disabled | _ -> ()
|
|
||||||
] [
|
|
||||||
option [ _value "Hours"; match req.recurType with Hours -> _selected | _ -> () ] [ str "hours" ]
|
|
||||||
option [ _value "Days"; match req.recurType with Days -> _selected | _ -> () ] [ str "days" ]
|
|
||||||
option [ _value "Weeks"; match req.recurType with Weeks -> _selected | _ -> () ] [ str "weeks" ]
|
|
||||||
]
|
|
||||||
label [ _form "recurInterval" ] [ str "Interval" ]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
div [ _class "text-end pt-3" ] [
|
|
||||||
button [ _class "btn btn-primary me-2"; _type "submit" ] [ icon "save"; str " Save" ]
|
|
||||||
pageLink cancelLink [ _class "btn btn-secondary ms-2" ] [ icon "arrow_back"; str " Cancel" ]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
|
||||||
/// Display a list of notes for a request
|
/// Display a list of notes for a request
|
||||||
let notes now notes =
|
let notes now tz notes =
|
||||||
let toItem (note : Note) =
|
let toItem (note : Note) =
|
||||||
p [] [ small [ _class "text-muted" ] [ relativeDate note.asOf now ]; br []; str note.notes ]
|
p [] [ small [ _class "text-muted" ] [ relativeDate note.AsOf now tz ]; br []; str note.Notes ]
|
||||||
[ p [ _class "text-center" ] [ strong [] [ str "Prior Notes for This Request" ] ]
|
[ p [ _class "text-center" ] [ strong [] [ str "Prior Notes for This Request" ] ]
|
||||||
match notes with
|
match notes with
|
||||||
| [] -> p [ _class "text-center text-muted" ] [ str "There are no prior notes for this request" ]
|
| [] -> p [ _class "text-center text-muted" ] [ str "There are no prior notes for this request" ]
|
||||||
| _ -> yield! notes |> List.map toItem
|
| _ -> yield! notes |> List.map toItem
|
||||||
]
|
]
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
src/MyPrayerJournal/wwwroot/script/htmx.min.js
vendored
Normal file
1
src/MyPrayerJournal/wwwroot/script/htmx.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
|||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
/** myPrayerJournal script */
|
/** myPrayerJournal script */
|
||||||
const mpj = {
|
this.mpj = {
|
||||||
/**
|
/**
|
||||||
* Show a message via toast
|
* Show a message via toast
|
||||||
* @param {string} message The message to show
|
* @param {string} message The message to show
|
||||||
@@ -66,6 +66,19 @@ const mpj = {
|
|||||||
const isDisabled = target.value === "Immediate"
|
const isDisabled = target.value === "Immediate"
|
||||||
;["recurCount", "recurInterval"].forEach(it => document.getElementById(it).disabled = isDisabled)
|
;["recurCount", "recurInterval"].forEach(it => document.getElementById(it).disabled = isDisabled)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* The time zone of the current browser
|
||||||
|
* @type {string}
|
||||||
|
**/
|
||||||
|
timeZone: undefined,
|
||||||
|
/**
|
||||||
|
* Derive the time zone from the current browser
|
||||||
|
*/
|
||||||
|
deriveTimeZone () {
|
||||||
|
try {
|
||||||
|
this.timeZone = (new Intl.DateTimeFormat()).resolvedOptions().timeZone
|
||||||
|
} catch (_) { }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,3 +93,12 @@ htmx.on("htmx:afterOnLoad", function (evt) {
|
|||||||
document.getElementById(evt.detail.xhr.getResponseHeader("x-hide-modal") + "Dismiss").click()
|
document.getElementById(evt.detail.xhr.getResponseHeader("x-hide-modal") + "Dismiss").click()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
htmx.on("htmx:configRequest", function (evt) {
|
||||||
|
// Send the user's current time zone so that we can display local time
|
||||||
|
if (mpj.timeZone) {
|
||||||
|
evt.detail.headers["X-Time-Zone"] = mpj.timeZone
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
mpj.deriveTimeZone()
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
33
src/app/composer.json
Normal file
33
src/app/composer.json
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"name": "bitbadger/my-prayer-journal",
|
||||||
|
"description": "Minimalist prayer journal to enhance your prayer life",
|
||||||
|
"type": "project",
|
||||||
|
"license": "MIT",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"MyPrayerJournal\\": "lib/",
|
||||||
|
"MyPrayerJournal\\Domain\\": "lib/domain/",
|
||||||
|
"BitBadger\\PgDocuments\\": "lib/documents/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Daniel J. Summers",
|
||||||
|
"email": "daniel@bitbadger.solutions"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
"netresearch/jsonmapper": "^4.2",
|
||||||
|
"guzzlehttp/guzzle": "^7.8",
|
||||||
|
"guzzlehttp/psr7": "^2.6",
|
||||||
|
"http-interop/http-factory-guzzle": "^1.2",
|
||||||
|
"auth0/auth0-php": "^8.8",
|
||||||
|
"vlucas/phpdotenv": "^5.5",
|
||||||
|
"visus/cuid2": "^4.0"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"allow-plugins": {
|
||||||
|
"php-http/discovery": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
2365
src/app/composer.lock
generated
Normal file
2365
src/app/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
67
src/app/lib/Constants.php
Normal file
67
src/app/lib/Constants.php
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constants for use throughout the application
|
||||||
|
*/
|
||||||
|
class Constants
|
||||||
|
{
|
||||||
|
/** @var string The `$_ENV` key for the Auth0 domain configured for myPrayerJournal */
|
||||||
|
const AUTH0_DOMAIN = 'AUTH0_DOMAIN';
|
||||||
|
|
||||||
|
/** @var string The `$_ENV` key for the Auth0 client ID for myPrayerJournal */
|
||||||
|
const AUTH0_CLIENT_ID = 'AUTH0_CLIENT_ID';
|
||||||
|
|
||||||
|
/** @var string The `$_ENV` key for the Auth0 client secret */
|
||||||
|
const AUTH0_CLIENT_SECRET = 'AUTH0_CLIENT_SECRET';
|
||||||
|
|
||||||
|
/** @var string The `$_ENV` key for the Auth0 cookie secret */
|
||||||
|
const AUTH0_COOKIE_SECRET = 'AUTH0_COOKIE_SECRET';
|
||||||
|
|
||||||
|
/** @var string The `$_ENV` key for the base URL for this instance of myPrayerJournal */
|
||||||
|
const BASE_URL = 'AUTH0_BASE_URL';
|
||||||
|
|
||||||
|
/** @var string The Auth0 given name (first name) claim */
|
||||||
|
const CLAIM_GIVEN_NAME = 'given_name';
|
||||||
|
|
||||||
|
/** @var string The Auth0 subscriber (sub) claim */
|
||||||
|
const CLAIM_SUB = 'sub';
|
||||||
|
|
||||||
|
/** @var string The name of the cookie used to persist redirection after Auth0 authentication */
|
||||||
|
const COOKIE_REDIRECT = 'mpjredirect';
|
||||||
|
|
||||||
|
/** @var string the `$_SERVER` key for the HX-Request header */
|
||||||
|
const HEADER_HX_REQUEST = 'HTTP_HX_REQUEST';
|
||||||
|
|
||||||
|
/** @var string The `$_SERVER` key for the HX-History-Restore-Request header */
|
||||||
|
const HEADER_HX_HIST_REQ = 'HTTP_HX_HISTORY_RESTORE_REQUEST';
|
||||||
|
|
||||||
|
/** @var string The `$_SERVER` key for the X-Time-Zone header */
|
||||||
|
const HEADER_USER_TZ = 'HTTP_X_TIME_ZONE';
|
||||||
|
|
||||||
|
/** @var string The `$_REQUEST` key for whether the request was initiated by htmx */
|
||||||
|
const IS_HTMX = 'MPJ_IS_HTMX';
|
||||||
|
|
||||||
|
/** @var string The `$_GET` key for state passed to Auth0 if redirection is required once authenticated */
|
||||||
|
const LOG_ON_STATE = 'state';
|
||||||
|
|
||||||
|
/** @var string The `$_REQUEST` key for the page title for this request */
|
||||||
|
const PAGE_TITLE = 'MPJ_PAGE_TITLE';
|
||||||
|
|
||||||
|
/** @var string The `$_SERVER` key for the current page's relative URI */
|
||||||
|
const REQUEST_URI = 'REQUEST_URI';
|
||||||
|
|
||||||
|
/** @var string The `$_GET` key sent to the log on page if redirection is required once authenticated */
|
||||||
|
const RETURN_URL = 'return_url';
|
||||||
|
|
||||||
|
/** @var string The `$_REQUEST` key for the timezone reference to use for this request */
|
||||||
|
const TIME_ZONE = 'MPJ_TIME_ZONE';
|
||||||
|
|
||||||
|
/** @var string The `$_REQUEST` key for the current user's ID */
|
||||||
|
const USER_ID = 'MPJ_USER_ID';
|
||||||
|
|
||||||
|
/** @var string The `$_REQUEST` key for the current version of myPrayerJournal */
|
||||||
|
const VERSION = 'MPJ_VERSION';
|
||||||
|
}
|
||||||
134
src/app/lib/Data.php
Normal file
134
src/app/lib/Data.php
Normal file
@@ -0,0 +1,134 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal;
|
||||||
|
|
||||||
|
use BitBadger\PgDocuments\{ Definition, Document, DocumentIndex, Query };
|
||||||
|
use MyPrayerJournal\Domain\{ History, JournalRequest, Note, Request, RequestAction };
|
||||||
|
|
||||||
|
class Data
|
||||||
|
{
|
||||||
|
/** The prayer request table */
|
||||||
|
const REQ_TABLE = 'mpj.request';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensure the table and index exist
|
||||||
|
*/
|
||||||
|
public static function startUp(): void
|
||||||
|
{
|
||||||
|
Definition::ensureTable(self::REQ_TABLE);
|
||||||
|
Definition::ensureIndex(self::REQ_TABLE, DocumentIndex::Optimized);
|
||||||
|
}
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Find a full prayer request by its ID
|
||||||
|
// *
|
||||||
|
// * @param string $reqId The request ID
|
||||||
|
// * @param string $userId The ID of the currently logged-on user
|
||||||
|
// * @return ?Request The request, or null if it is not found
|
||||||
|
// */
|
||||||
|
// public static function findFullRequestById(string $reqId, string $userId): ?Request
|
||||||
|
// {
|
||||||
|
// $req = Document::findById(self::REQ_TABLE, $reqId, Request::class);
|
||||||
|
// return is_null($req) || $req->userId != $userId ? null : $req;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Add a history entry to the specified request
|
||||||
|
// *
|
||||||
|
// * @param string $reqId The request ID
|
||||||
|
// * @param string $userId The ID of the currently logged-on user
|
||||||
|
// * @param History $history The history entry to be added
|
||||||
|
// */
|
||||||
|
// public static function addHistory(string $reqId, string $userId, History $history)
|
||||||
|
// {
|
||||||
|
// $req = self::findFullRequestById($reqId, $userId);
|
||||||
|
// if (is_null($req)) throw new \InvalidArgumentException("$reqId not found");
|
||||||
|
// array_unshift($req->history, $history);
|
||||||
|
// Document::updateFull(self::REQ_TABLE, $reqId, $req);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Add a note to the specified request
|
||||||
|
// *
|
||||||
|
// * @param string $reqId The request ID
|
||||||
|
// * @param string $userId The ID of the currently logged-on user
|
||||||
|
// * @param Note $note The note to be added
|
||||||
|
// */
|
||||||
|
// public static function addNote(string $reqId, string $userId, Note $note)
|
||||||
|
// {
|
||||||
|
// $req = self::findFullRequestById($reqId, $userId);
|
||||||
|
// if (is_null($req)) throw new \InvalidArgumentException("$reqId not found");
|
||||||
|
// array_unshift($req->notes, $note);
|
||||||
|
// Document::updateFull(self::REQ_TABLE, $reqId, $req);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Add a new request
|
||||||
|
// *
|
||||||
|
// * @param Request $req The request to be added
|
||||||
|
// */
|
||||||
|
// public static function addRequest(Request $req)
|
||||||
|
// {
|
||||||
|
// Document::insert(self::REQ_TABLE, $req->id, $req);
|
||||||
|
// }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Map an array of `Request`s to an array of `JournalRequest`s
|
||||||
|
*
|
||||||
|
* @param Request[] $reqs The requests to map
|
||||||
|
* @param bool $full Whether to include history and notes (true) or not (false)
|
||||||
|
* @return JournalRequest[] The journal request objects
|
||||||
|
*/
|
||||||
|
private static function mapToJournalRequest(array $reqs, bool $full): array
|
||||||
|
{
|
||||||
|
return array_map(fn (Request $req) => new JournalRequest($req, $full), $reqs);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get journal requests for the given user by "answered" status
|
||||||
|
*
|
||||||
|
* @param string $userId The ID of the user for whom requests should be retrieved
|
||||||
|
* @param string $op The JSON Path operator to use for comparison (`==` or `<>`)
|
||||||
|
* @return JournalRequest[] The journal request objects
|
||||||
|
*/
|
||||||
|
private static function getJournalByAnswered(string $userId, string $op): array
|
||||||
|
{
|
||||||
|
$sql = sprintf('%s WHERE %s AND %s', Query::selectFromTable(self::REQ_TABLE), Query::whereDataContains('$1'),
|
||||||
|
Query::whereJsonPathMatches('$2'));
|
||||||
|
$params = [
|
||||||
|
Query::jsonbDocParam([ 'userId' => $userId ]),
|
||||||
|
sprintf('$.history[0].status ? (@ %s "%s")', $op, RequestAction::Answered->name)
|
||||||
|
];
|
||||||
|
return self::mapToJournalRequest(
|
||||||
|
Document::customList($sql, $params, Request::class, Document::mapFromJson(...)), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Retrieve all answered requests for this user
|
||||||
|
// *
|
||||||
|
// * @param string $userId The ID of the user for whom answered requests should be retrieved
|
||||||
|
// * @return JournalRequest[] The answered requests
|
||||||
|
// */
|
||||||
|
// public static function getAnsweredRequests(string $userId): array
|
||||||
|
// {
|
||||||
|
// $answered = self::getJournalByAnswered($userId, '==');
|
||||||
|
// usort($answered,
|
||||||
|
// fn (JournalRequest $a, JournalRequest $b) => $a->asOf == $b->asOf ? 0 : ($a->asOf > $b->asOf ? -1 : 1));
|
||||||
|
// return $answered;
|
||||||
|
// }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the user's current prayer request journal
|
||||||
|
*
|
||||||
|
* @param string $userId The ID of the user whose journal should be retrieved
|
||||||
|
* @return JournalRequest[] The journal request objects
|
||||||
|
*/
|
||||||
|
public static function getJournal(string $userId): array
|
||||||
|
{
|
||||||
|
$reqs = self::getJournalByAnswered($userId, '<>');
|
||||||
|
usort($reqs,
|
||||||
|
fn (JournalRequest $a, JournalRequest $b) => $a->asOf == $b->asOf ? 0 : ($a->asOf < $b->asOf ? -1 : 1));
|
||||||
|
return $reqs;
|
||||||
|
}
|
||||||
|
}
|
||||||
63
src/app/lib/Dates.php
Normal file
63
src/app/lib/Dates.php
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal;
|
||||||
|
|
||||||
|
use DateTimeImmutable, DateTimeInterface, DateTimeZone;
|
||||||
|
|
||||||
|
class Dates
|
||||||
|
{
|
||||||
|
/** Minutes in a day */
|
||||||
|
private const A_DAY = 1_440;
|
||||||
|
|
||||||
|
/** Minutes in two days(-ish) */
|
||||||
|
private const ALMOST_2_DAYS = 2_520;
|
||||||
|
|
||||||
|
/** Minutes in a month */
|
||||||
|
private const A_MONTH = 43_200;
|
||||||
|
|
||||||
|
/** Minutes in two months */
|
||||||
|
private const TWO_MONTHS = 86_400;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a UTC-referenced current date/time
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable The current date/time with UTC reference
|
||||||
|
*/
|
||||||
|
public static function now(): DateTimeImmutable
|
||||||
|
{
|
||||||
|
return new DateTimeImmutable(timezone: new DateTimeZone('Etc/UTC'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format the distance between two instants in approximate English terms
|
||||||
|
*
|
||||||
|
* @param DateTimeInterface $startOn The starting date/time for the comparison
|
||||||
|
* @param DateTimeInterface $endOn THe ending date/time for the comparison
|
||||||
|
* @return string The formatted interval
|
||||||
|
*/
|
||||||
|
public static function formatDistance(DateTimeInterface $startOn, DateTimeInterface $endOn): string
|
||||||
|
{
|
||||||
|
$diff = $startOn->diff($endOn);
|
||||||
|
$minutes =
|
||||||
|
$diff->i + ($diff->h * 60) + ($diff->d * 60 * 24) + ($diff->m * 60 * 24 * 30) + ($diff->y * 60 * 24 * 365);
|
||||||
|
$months = round($minutes / self::A_MONTH);
|
||||||
|
$years = $months / 12;
|
||||||
|
[ $format, $number ] = match (true) {
|
||||||
|
$minutes < 1 => [ DistanceFormat::LessThanXMinutes, 1 ],
|
||||||
|
$minutes < 45 => [ DistanceFormat::XMinutes, $minutes ],
|
||||||
|
$minutes < 90 => [ DistanceFormat::AboutXHours, 1 ],
|
||||||
|
$minutes < self::A_DAY => [ DistanceFormat::AboutXHours, round($minutes / 60) ],
|
||||||
|
$minutes < self::ALMOST_2_DAYS => [ DistanceFormat::XDays, 1 ],
|
||||||
|
$minutes < self::A_MONTH => [ DistanceFormat::XDays, round($minutes / self::A_DAY) ],
|
||||||
|
$minutes < self::TWO_MONTHS => [ DistanceFormat::AboutXMonths, round($minutes / self::A_MONTH) ],
|
||||||
|
$months < 12 => [ DistanceFormat::XMonths, round($minutes / self::A_MONTH) ],
|
||||||
|
$months % 12 < 3 => [ DistanceFormat::AboutXYears, $years ],
|
||||||
|
$months % 12 < 9 => [ DistanceFormat::OverXYears, $years ],
|
||||||
|
default => [ DistanceFormat::AlmostXYears, $years + 1 ],
|
||||||
|
};
|
||||||
|
|
||||||
|
$relativeWords = sprintf(DistanceFormat::format($format, $number == 1), $number);
|
||||||
|
return $startOn > $endOn ? "$relativeWords ago" : "in $relativeWords";
|
||||||
|
}
|
||||||
|
}
|
||||||
50
src/app/lib/DistanceFormat.php
Normal file
50
src/app/lib/DistanceFormat.php
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The different distance formats supported
|
||||||
|
*/
|
||||||
|
enum DistanceFormat
|
||||||
|
{
|
||||||
|
case LessThanXMinutes;
|
||||||
|
case XMinutes;
|
||||||
|
case AboutXHours;
|
||||||
|
case XHours;
|
||||||
|
case XDays;
|
||||||
|
case AboutXWeeks;
|
||||||
|
case XWeeks;
|
||||||
|
case AboutXMonths;
|
||||||
|
case XMonths;
|
||||||
|
case AboutXYears;
|
||||||
|
case XYears;
|
||||||
|
case OverXYears;
|
||||||
|
case AlmostXYears;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the formatting string for the given format and number
|
||||||
|
*
|
||||||
|
* @param DistanceFormat $it The distance format
|
||||||
|
* @param bool $singular If true, returns the singular version; if false (default), returns the plural version
|
||||||
|
* @return string The format string
|
||||||
|
*/
|
||||||
|
public static function format(DistanceFormat $it, bool $singular = false): string
|
||||||
|
{
|
||||||
|
return match ($it) {
|
||||||
|
self::LessThanXMinutes => $singular ? 'less than a minute' : 'less than %d minutes',
|
||||||
|
self::XMinutes => $singular ? 'a minute' : '%d minutes',
|
||||||
|
self::AboutXHours => $singular ? 'about an hour' : 'about %d hours',
|
||||||
|
self::XHours => $singular ? 'an hour' : '%d hours',
|
||||||
|
self::XDays => $singular ? 'a day' : '%d days',
|
||||||
|
self::AboutXWeeks => $singular ? 'about a week' : 'about %d weeks',
|
||||||
|
self::XWeeks => $singular ? 'a week' : '%d weeks',
|
||||||
|
self::AboutXMonths => $singular ? 'about a month' : 'about %d months',
|
||||||
|
self::XMonths => $singular ? 'a month' : '%d months',
|
||||||
|
self::AboutXYears => $singular ? 'about a year' : 'about %d years',
|
||||||
|
self::XYears => $singular ? 'a year' : '%d years',
|
||||||
|
self::OverXYears => $singular ? 'over a year' : 'over %d years',
|
||||||
|
self::AlmostXYears => $singular ? 'almost a year' : 'almost %d years',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
73
src/app/lib/documents/Configuration.php
Normal file
73
src/app/lib/documents/Configuration.php
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace BitBadger\PgDocuments;
|
||||||
|
|
||||||
|
use PgSql\Connection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Document table configuration
|
||||||
|
*/
|
||||||
|
class Configuration
|
||||||
|
{
|
||||||
|
/** @var string $connectionString The connection string to use when establishing a database connection */
|
||||||
|
public static string $connectionString = '';
|
||||||
|
|
||||||
|
/** @var ?Connection $pgConn The active connection */
|
||||||
|
private static ?Connection $pgConn = null;
|
||||||
|
|
||||||
|
/** @var ?string $startUp The name of a function to run on first connection to the database */
|
||||||
|
public static ?string $startUp = null;
|
||||||
|
|
||||||
|
/** @var string $keyName The key name for document IDs (default "id") */
|
||||||
|
public static string $keyName = 'id';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensure that the connection string is set, either explicitly, by environment variables, or with defaults
|
||||||
|
*/
|
||||||
|
private static function ensureConnectionString(): void
|
||||||
|
{
|
||||||
|
if (self::$connectionString == "") {
|
||||||
|
$host = $_ENV['PGDOC_HOST'] ?? 'localhost';
|
||||||
|
$port = $_ENV['PGDOC_PORT'] ?? 5432;
|
||||||
|
$db = $_ENV['PGDOC_DB'] ?? 'postgres';
|
||||||
|
$user = $_ENV['PGDOC_USER'] ?? 'postgres';
|
||||||
|
$pass = $_ENV['PGDOC_PASS'] ?? 'postgres';
|
||||||
|
$opts = $_ENV['PGDOC_OPTS'] ?? '';
|
||||||
|
self::$connectionString = "host=$host port=$port dbname=$db user=$user password=$pass"
|
||||||
|
. ($opts ? " options='$opts'" : '');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A no-op function to force this file to be autoloaded if no explicit configuration is required
|
||||||
|
*/
|
||||||
|
public static function init() { }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the PostgreSQL connection, connecting on first request
|
||||||
|
*
|
||||||
|
* @return Connection The open PostgreSQL connection
|
||||||
|
*/
|
||||||
|
public static function getPgConn(): Connection
|
||||||
|
{
|
||||||
|
if (is_null(self::$pgConn)) {
|
||||||
|
self::ensureConnectionString();
|
||||||
|
self::$pgConn = pg_connect(self::$connectionString);
|
||||||
|
}
|
||||||
|
return self::$pgConn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Close the PostgreSQL connection if it is open
|
||||||
|
*/
|
||||||
|
public static function closeConn(): void
|
||||||
|
{
|
||||||
|
if (!is_null(self::$pgConn)) {
|
||||||
|
pg_close(self::$pgConn);
|
||||||
|
self::$pgConn = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
require('functions.php');
|
||||||
87
src/app/lib/documents/Definition.php
Normal file
87
src/app/lib/documents/Definition.php
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace BitBadger\PgDocuments;
|
||||||
|
|
||||||
|
use PgSql\Result;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Methods to define tables and indexes for document tables
|
||||||
|
*/
|
||||||
|
class Definition
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Create a statement to create a document table
|
||||||
|
*
|
||||||
|
* @param string $name The name of the table to create
|
||||||
|
* @return string A `CREATE TABLE` statement for the document table
|
||||||
|
*/
|
||||||
|
public static function createTable(string $name): string
|
||||||
|
{
|
||||||
|
return "CREATE TABLE IF NOT EXISTS $name (data JSONB NOT NULL)";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a statement to create a key for a document table
|
||||||
|
*
|
||||||
|
* @param string $tableName The table (or schema/table) for which a key should be created
|
||||||
|
* @return string A `CREATE INDEX` statement for a unique key for the document table
|
||||||
|
*/
|
||||||
|
public static function createKey(string $tableName): string
|
||||||
|
{
|
||||||
|
return sprintf('CREATE UNIQUE INDEX IF NOT EXISTS idx_%s_key ON %s ((data -> \'%s\'))',
|
||||||
|
self::extractTable($tableName), $tableName, Configuration::$keyName);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a statement to create an index on a document table
|
||||||
|
*
|
||||||
|
* @param string $name The name of the table for which the index should be created
|
||||||
|
* @param DocumentIndex $type The type of index to create
|
||||||
|
* @return string A `CREATE INDEX` statement for the given table
|
||||||
|
*/
|
||||||
|
public static function createIndex(string $name, DocumentIndex $type): string
|
||||||
|
{
|
||||||
|
return sprintf('CREATE INDEX IF NOT EXISTS idx_%s ON %s USING GIN (data%s)',
|
||||||
|
self::extractTable($name), $name, $type == DocumentIndex::Full ? '' : ' jsonb_path_ops');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensure the given document table exists
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table
|
||||||
|
*/
|
||||||
|
public static function ensureTable(string $tableName): void
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query(pg_conn(), self::createTable($tableName));
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
$result = pg_query(pg_conn(), self::createKey($tableName));
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensure an index on the given document table exists
|
||||||
|
*
|
||||||
|
* @param string $name The name of the table for which the index should be created
|
||||||
|
* @param DocumentIndex $type The type of index to create
|
||||||
|
*/
|
||||||
|
public static function ensureIndex(string $name, DocumentIndex $type): void
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query(pg_conn(), self::createIndex($name, $type));
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extract just the table name from a possible `schema.table` name
|
||||||
|
*
|
||||||
|
* @param string $name The name of the table, possibly including the schema
|
||||||
|
* @return string The table name
|
||||||
|
*/
|
||||||
|
private static function extractTable(string $name): string
|
||||||
|
{
|
||||||
|
$schemaAndTable = explode('.', $name);
|
||||||
|
return end($schemaAndTable);
|
||||||
|
}
|
||||||
|
}
|
||||||
431
src/app/lib/documents/Document.php
Normal file
431
src/app/lib/documents/Document.php
Normal file
@@ -0,0 +1,431 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace BitBadger\PgDocuments;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
use JsonMapper;
|
||||||
|
use PgSql\Result;
|
||||||
|
|
||||||
|
/** Document manipulation functions */
|
||||||
|
class Document
|
||||||
|
{
|
||||||
|
/** JSON Mapper instance to use for creating a domain type instance from a document */
|
||||||
|
private static ?JsonMapper $mapper = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Map a domain type from the JSON document retrieved
|
||||||
|
*
|
||||||
|
* @param string $columnName The name of the column from the database
|
||||||
|
* @param array $result An associative array with a single result to be mapped
|
||||||
|
* @param class-string<Type> $className The name of the class onto which the JSON will be mapped
|
||||||
|
* @return Type The domain type
|
||||||
|
*/
|
||||||
|
public static function mapDocFromJson(string $columnName, array $result, string $className): mixed
|
||||||
|
{
|
||||||
|
if (is_null(self::$mapper)) {
|
||||||
|
self::$mapper = new JsonMapper();
|
||||||
|
}
|
||||||
|
|
||||||
|
$mapped = new $className();
|
||||||
|
self::$mapper->map(json_decode($result[$columnName]), $mapped);
|
||||||
|
return $mapped;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Map a domain type from the JSON document retrieved
|
||||||
|
*
|
||||||
|
* @param array $result An associative array with a single result to be mapped
|
||||||
|
* @param class-string<Type> $className The name of the class onto which the JSON will be mapped
|
||||||
|
* @return Type The domain type
|
||||||
|
*/
|
||||||
|
public static function mapFromJson(array $result, string $className): mixed
|
||||||
|
{
|
||||||
|
return self::mapDocFromJson('data', $result, $className);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute a document-focused statement that does not return results
|
||||||
|
*
|
||||||
|
* @param string $query The query to be executed
|
||||||
|
* @param array|object $document The array or object representing the document
|
||||||
|
* @throws Exception If the document's ID is null
|
||||||
|
*/
|
||||||
|
private static function executeNonQuery(string $query, array|object $document): void
|
||||||
|
{
|
||||||
|
$docId = is_array($document)
|
||||||
|
? $document[Configuration::$keyName]
|
||||||
|
: get_object_vars($document)[Configuration::$keyName];
|
||||||
|
if (is_null($docId)) throw new Exception('PgDocument: ID cannot be NULL');
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), $query, [ $docId, Query::jsonbDocParam($document) ]);
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Insert a document
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table into which a document should be inserted
|
||||||
|
* @param array|object $document The array or object representing the document
|
||||||
|
*/
|
||||||
|
public static function insert(string $tableName, array|object $document): void
|
||||||
|
{
|
||||||
|
self::executeNonQuery(Query::insert($tableName), $document);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Save (upsert) a document
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table into which a document should be inserted
|
||||||
|
* @param array|object $document The array or object representing the document
|
||||||
|
*/
|
||||||
|
public static function save(string $tableName, array|object $document): void
|
||||||
|
{
|
||||||
|
self::executeNonQuery(Query::save($tableName), $document);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run a count query, returning the `it` parameter of that query as an integer
|
||||||
|
*
|
||||||
|
* @param string $sql The SQL query that will return a count
|
||||||
|
* @param array $params Parameters needed for that query
|
||||||
|
* @return int The count of matching rows for the query
|
||||||
|
*/
|
||||||
|
private static function runCount(string $sql, array $params): int
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), $sql, $params);
|
||||||
|
if (!$result) return -1;
|
||||||
|
$count = intval(pg_fetch_assoc($result)['it']);
|
||||||
|
pg_free_result($result);
|
||||||
|
return $count;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Count all documents in a table
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which documents should be counted
|
||||||
|
* @return int The number of documents in the table
|
||||||
|
*/
|
||||||
|
public static function countAll(string $tableName): int
|
||||||
|
{
|
||||||
|
return self::runCount(Query::countAll($tableName), []);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Count documents in a table by JSON containment `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which documents should be counted
|
||||||
|
* @param array|object $criteria The criteria for the JSON containment query
|
||||||
|
* @return int The number of documents in the table matching the JSON containment query
|
||||||
|
*/
|
||||||
|
public static function countByContains(string $tableName, array|object $criteria): int
|
||||||
|
{
|
||||||
|
return self::runCount(Query::countByContains($tableName), [ Query::jsonbDocParam($criteria) ]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Count documents in a table by JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which documents should be counted
|
||||||
|
* @param string $jsonPath The JSON Path to be matched
|
||||||
|
* @return int The number of documents in the table matching the JSON Path
|
||||||
|
*/
|
||||||
|
public static function countByJsonPath(string $tableName, string $jsonPath): int
|
||||||
|
{
|
||||||
|
return self::runCount(Query::countByJsonPath($tableName), [ $jsonPath ]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run an existence query (returning the `it` parameter of that query)
|
||||||
|
*
|
||||||
|
* @param string $sql The SQL query that will return existence
|
||||||
|
* @param array $params Parameters needed for that query
|
||||||
|
* @return bool The result of the existence query
|
||||||
|
*/
|
||||||
|
private static function runExists(string $sql, array $params): bool
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), $sql, $params);
|
||||||
|
if (!$result) return false;
|
||||||
|
$exists = boolval(pg_fetch_assoc($result)['it']);
|
||||||
|
pg_free_result($result);
|
||||||
|
return $exists;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if a document exists for the given ID
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which existence should be checked
|
||||||
|
* @param string $docId The ID of the document whose existence should be checked
|
||||||
|
* @return bool True if the document exists, false if not
|
||||||
|
*/
|
||||||
|
public static function existsById(string $tableName, string $docId): bool
|
||||||
|
{
|
||||||
|
return self::runExists(Query::existsById($tableName), [ $docId ]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if documents exist by JSON containment `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which existence should be checked
|
||||||
|
* @param array|object $criteria The criteria for the JSON containment query
|
||||||
|
* @return bool True if any documents in the table match the JSON containment query, false if not
|
||||||
|
*/
|
||||||
|
public static function existsByContains(string $tableName, array|object $criteria): bool
|
||||||
|
{
|
||||||
|
return self::runExists(Query::existsByContains($tableName), [ Query::jsonbDocParam($criteria) ]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if documents exist by JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which existence should be checked
|
||||||
|
* @param string $jsonPath The JSON Path to be matched
|
||||||
|
* @return bool True if any documents in the table match the JSON Path, false if not
|
||||||
|
*/
|
||||||
|
public static function existsByJsonPath(string $tableName, string $jsonPath): bool
|
||||||
|
{
|
||||||
|
return self::runExists(Query::existsByJsonPath($tableName), [ $jsonPath ]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run a query, mapping the results to an array of domain type objects
|
||||||
|
*
|
||||||
|
* @param string $sql The query to be run
|
||||||
|
* @param array $params The parameters for the query
|
||||||
|
* @param class-string<Type> $className The type of document to be mapped
|
||||||
|
* @return array<Type> The documents matching the query
|
||||||
|
*/
|
||||||
|
private static function runListQuery(string $sql, array $params, string $className): array
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), $sql, $params);
|
||||||
|
try {
|
||||||
|
if (!$result || pg_result_status($result) == PGSQL_EMPTY_QUERY) return [];
|
||||||
|
return array_map(fn ($it) => self::mapFromJson($it, $className), pg_fetch_all($result));
|
||||||
|
} finally {
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve all documents in a table
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which all documents should be retrieved
|
||||||
|
* @param class-string<Type> $className The type of document to be retrieved
|
||||||
|
* @return array<Type> An array of documents
|
||||||
|
*/
|
||||||
|
public static function findAll(string $tableName, string $className): array
|
||||||
|
{
|
||||||
|
return self::runListQuery(Query::selectFromTable($tableName), [], $className);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve a document by its ID
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which a document should be retrieved
|
||||||
|
* @param string $docId The ID of the document to retrieve
|
||||||
|
* @param class-string<Type> $className The type of document to retrieve
|
||||||
|
* @return Type|null The document, or null if it is not found
|
||||||
|
*/
|
||||||
|
public static function findById(string $tableName, string $docId, string $className): mixed
|
||||||
|
{
|
||||||
|
$results = self::runListQuery(Query::findById($tableName), [ $docId ], $className);
|
||||||
|
return $results ? $results[0] : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve documents in a table via JSON containment `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which documents should be retrieved
|
||||||
|
* @param array|object $criteria The criteria for the JSON containment query
|
||||||
|
* @param class-string<Type> $className The type of document to be retrieved
|
||||||
|
* @return array<Type> Documents matching the JSON containment query
|
||||||
|
*/
|
||||||
|
public static function findByContains(string $tableName, array|object $criteria, string $className): array
|
||||||
|
{
|
||||||
|
return self::runListQuery(Query::findByContains($tableName), [ Query::jsonbDocParam($criteria) ], $className);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the first matching document via JSON containment `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which documents should be retrieved
|
||||||
|
* @param array|object $criteria The criteria for the JSON containment query
|
||||||
|
* @param class-string<Type> $className The type of document to be retrieved
|
||||||
|
* @return Type|null The document, or null if none match
|
||||||
|
*/
|
||||||
|
public static function findFirstByContains(string $tableName, array|object $criteria, string $className): mixed
|
||||||
|
{
|
||||||
|
$results = self::runListQuery(Query::findByContains($tableName) . ' LIMIT 1',
|
||||||
|
[ Query::jsonbDocParam($criteria) ], $className);
|
||||||
|
return $results ? $results[0] : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve documents in a table via JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which documents should be retrieved
|
||||||
|
* @param string $jsonPath The JSON Path to be matched
|
||||||
|
* @param class-string<Type> $className The type of document to be retrieved
|
||||||
|
* @return array<Type> Documents matching the JSON Path
|
||||||
|
*/
|
||||||
|
public static function findByJsonPath(string $tableName, string $jsonPath, string $className): array
|
||||||
|
{
|
||||||
|
return self::runListQuery(Query::findByJsonPath($tableName), [ $jsonPath ], $className);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the first matching document via JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which documents should be retrieved
|
||||||
|
* @param string $jsonPath The JSON Path to be matched
|
||||||
|
* @param class-string<Type> $className The type of document to be retrieved
|
||||||
|
* @return Type|null The document, or null if none match
|
||||||
|
*/
|
||||||
|
public static function findFirstByJsonPath(string $tableName, string $jsonPath, string $className): mixed
|
||||||
|
{
|
||||||
|
$results = self::runListQuery(Query::findByJsonPath($tableName) . ' LIMIT 1', [ $jsonPath ], $className);
|
||||||
|
return $results ? $results[0] : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update a full document
|
||||||
|
*
|
||||||
|
* @param string $tableName The table in which the document should be updated
|
||||||
|
* @param array|object $document The document to be updated
|
||||||
|
*/
|
||||||
|
public static function updateFull(string $tableName, array|object $document): void
|
||||||
|
{
|
||||||
|
self::executeNonQuery(Query::updateFull($tableName), $document);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update a partial document by its ID
|
||||||
|
*
|
||||||
|
* @param string $tableName The table in which the document should be updated
|
||||||
|
* @param array|object $document The partial document to be updated
|
||||||
|
*/
|
||||||
|
public static function updatePartialById(string $tableName, array|object $document): void
|
||||||
|
{
|
||||||
|
self::executeNonQuery(Query::updatePartialById($tableName), $document);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update partial documents by JSON containment `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The table in which documents should be updated
|
||||||
|
* @param array|object $criteria The JSON containment criteria
|
||||||
|
* @param array|object $document The document to be updated
|
||||||
|
*/
|
||||||
|
public static function updatePartialByContains(string $tableName, array|object $criteria,
|
||||||
|
array|object $document): void
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), Query::updatePartialByContains($tableName),
|
||||||
|
[ Query::jsonbDocParam($criteria), Query::jsonbDocParam($document) ]);
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update partial documents by JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The table in which documents should be updated
|
||||||
|
* @param string $jsonPath The JSON Path to be matched
|
||||||
|
* @param array|object $document The document to be updated
|
||||||
|
*/
|
||||||
|
public static function updatePartialByJsonPath(string $tableName, string $jsonPath, array|object $document): void
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), Query::updatePartialByJsonPath($tableName),
|
||||||
|
[ $jsonPath, Query::jsonbDocParam($document) ]);
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete a document by its ID
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which a document should be deleted
|
||||||
|
* @param string $docId The ID of the document to be deleted
|
||||||
|
*/
|
||||||
|
public static function deleteById(string $tableName, string $docId): void
|
||||||
|
{
|
||||||
|
self::executeNonQuery(Query::deleteById($tableName), [ Configuration::$keyName => $docId ]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete documents by JSON containment `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which documents should be deleted
|
||||||
|
* @param array|object $criteria The criteria for the JSON containment query
|
||||||
|
*/
|
||||||
|
public static function deleteByContains(string $tableName, array|object $criteria): void
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), Query::deleteByContains($tableName), [ Query::jsonbDocParam($criteria) ]);
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete documents by JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The table from which documents should be deleted
|
||||||
|
* @param string $jsonPath The JSON Path expression to be matched
|
||||||
|
*/
|
||||||
|
public static function deleteByJsonPath(string $tableName, string $jsonPath): void
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), Query::deleteByJsonPath($tableName), [ $jsonPath ]);
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve documents via a custom query and mapping
|
||||||
|
*
|
||||||
|
* @param string $sql The SQL query to execute
|
||||||
|
* @param array $params A positional array of parameters for the SQL query
|
||||||
|
* @param callable $mapFunc A function that expects an associative array and returns a value of the desired type
|
||||||
|
* @param class-string<Type> $className The type of document to be mapped
|
||||||
|
* @return array<Type> The documents matching the query
|
||||||
|
*/
|
||||||
|
public static function customList(string $sql, array $params, string $className, callable $mapFunc): array
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), $sql, $params);
|
||||||
|
try {
|
||||||
|
if (!$result || pg_result_status($result) == PGSQL_EMPTY_QUERY) return [];
|
||||||
|
return array_map(fn ($it) => $mapFunc($it, $className), pg_fetch_all($result));
|
||||||
|
} finally {
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve a document via a custom query and mapping
|
||||||
|
*
|
||||||
|
* @param string $sql The SQL query to execute ("LIMIT 1" will be appended)
|
||||||
|
* @param array $params A positional array of parameters for the SQL query
|
||||||
|
* @param callable $mapFunc A function that expects an associative array and returns a value of the desired type
|
||||||
|
* @param class-string<Type> $className The type of document to be mapped
|
||||||
|
* @return ?Type The document matching the query, or null if none is found
|
||||||
|
*/
|
||||||
|
public static function customSingle(string $sql, array $params, string $className, callable $mapFunc): mixed
|
||||||
|
{
|
||||||
|
$results = self::customList("$sql LIMIT 1", $params, $className, $mapFunc);
|
||||||
|
return $results ? $results[0] : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute a custom query that does not return a result
|
||||||
|
*
|
||||||
|
* @param string $sql The SQL query to execute
|
||||||
|
* @param array $params A positional array of parameters for the SQL query
|
||||||
|
*/
|
||||||
|
public static function customNonQuery(string $sql, array $params): void
|
||||||
|
{
|
||||||
|
/** @var Result|bool $result */
|
||||||
|
$result = pg_query_params(pg_conn(), $sql, $params);
|
||||||
|
if ($result) pg_free_result($result);
|
||||||
|
}
|
||||||
|
}
|
||||||
14
src/app/lib/documents/DocumentIndex.php
Normal file
14
src/app/lib/documents/DocumentIndex.php
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace BitBadger\PgDocuments;
|
||||||
|
|
||||||
|
/** The type of index to generate for the document */
|
||||||
|
enum DocumentIndex
|
||||||
|
{
|
||||||
|
/** A GIN index with standard operations (all operators supported) */
|
||||||
|
case Full;
|
||||||
|
|
||||||
|
/** A GIN index with JSONPath operations (optimized for `@>`, `@?`, `@@` operators) */
|
||||||
|
case Optimized;
|
||||||
|
}
|
||||||
309
src/app/lib/documents/Query.php
Normal file
309
src/app/lib/documents/Query.php
Normal file
@@ -0,0 +1,309 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace BitBadger\PgDocuments;
|
||||||
|
|
||||||
|
/** Query construction functions */
|
||||||
|
class Query
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Create a `SELECT` clause to retrieve the document data from the given table
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which documents should be selected
|
||||||
|
* @return string A `SELECT` clause for the given table
|
||||||
|
*/
|
||||||
|
public static function selectFromTable(string $tableName): string
|
||||||
|
{
|
||||||
|
return "SELECT data FROM $tableName";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a `WHERE` clause fragment to implement a key check condition
|
||||||
|
*
|
||||||
|
* @param string $paramName The name of the parameter to be replaced when the query is executed
|
||||||
|
* @return string A `WHERE` clause fragment with the named key and parameter
|
||||||
|
*/
|
||||||
|
public static function whereById(string $paramName): string
|
||||||
|
{
|
||||||
|
return sprintf("data -> '%s' = %s", Configuration::$keyName, $paramName);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a `WHERE` clause fragment to implement a @> (JSON contains) condition
|
||||||
|
*
|
||||||
|
* @param string $paramName The name of the parameter for the contains clause
|
||||||
|
* @return string A `WHERE` clause fragment with the named parameter
|
||||||
|
*/
|
||||||
|
public static function whereDataContains(string $paramName): string
|
||||||
|
{
|
||||||
|
return "data @> $paramName";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a `WHERE` clause fragment to implement a @? (JSON Path match) condition
|
||||||
|
*
|
||||||
|
* @param string $paramName THe name of the parameter for the JSON Path match
|
||||||
|
* @return string A `WHERE` clause fragment with the named parameter
|
||||||
|
*/
|
||||||
|
public static function whereJsonPathMatches(string $paramName): string
|
||||||
|
{
|
||||||
|
return "data @? $paramName::jsonpath";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a JSONB document parameter
|
||||||
|
*
|
||||||
|
* @param array|object $it The array or object to become a JSONB parameter
|
||||||
|
* @return string The encoded JSON
|
||||||
|
*/
|
||||||
|
public static function jsonbDocParam(array|object $it): string
|
||||||
|
{
|
||||||
|
return json_encode($it);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to insert a document
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table into which the document will be inserted
|
||||||
|
* @return string The `INSERT` statement (with `$1` parameter defined for the document)
|
||||||
|
*/
|
||||||
|
public static function insert(string $tableName): string
|
||||||
|
{
|
||||||
|
return sprintf('INSERT INTO %s (data) VALUES ($1)', $tableName);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to save a document, inserting it if it does not exist and updating it if it does (AKA "upsert")
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table into which the document will be saved
|
||||||
|
* @return string The `INSERT`/`ON CONFLICT DO UPDATE` statement (with `$1` parameter defined for the document)
|
||||||
|
*/
|
||||||
|
public static function save(string $tableName): string
|
||||||
|
{
|
||||||
|
return sprintf('INSERT INTO %s (data) VALUES ($1) ON CONFLICT (data) DO UPDATE SET data = EXCLUDED.data',
|
||||||
|
$tableName);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to count documents in a table
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table for which documents should be counted
|
||||||
|
* @param string $where The condition for which documents should be counted
|
||||||
|
* @return string A `SELECT` statement to obtain the count of documents for the given table
|
||||||
|
*/
|
||||||
|
private static function countQuery(string $tableName, string $where): string
|
||||||
|
{
|
||||||
|
return "SELECT COUNT(*) AS it FROM $tableName WHERE $where";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to count all documents in a table
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table whose rows will be counted
|
||||||
|
* @return string A `SELECT` statement to obtain the count of all documents in the given table
|
||||||
|
*/
|
||||||
|
public static function countAll(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::countQuery($tableName, '1 = 1');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to count matching documents using a JSON containment query `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which the count should be obtained
|
||||||
|
* @return string A `SELECT` statement to obtain the count of documents via JSON containment
|
||||||
|
*/
|
||||||
|
public static function countByContains(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::countQuery($tableName, self::whereDataContains('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to count matching documents using a JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which the count should be obtained
|
||||||
|
* @return string A `SELECT` statement to obtain the count of documents via JSON Path match
|
||||||
|
*/
|
||||||
|
public static function countByJsonPath(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::countQuery($tableName, self::whereJsonPathMatches('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to check document existence
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which document existence should be checked
|
||||||
|
* @param string $where The criteria for which document existence should be checked
|
||||||
|
* @return string A `SELECT` statement to check document existence for the given criteria
|
||||||
|
*/
|
||||||
|
private static function existsQuery(string $tableName, string $where): string
|
||||||
|
{
|
||||||
|
return "SELECT EXISTS (SELECT 1 FROM $tableName WHERE $where) AS it";
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Query to determine if a document exists for the given ID
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which existence should be checked
|
||||||
|
* @return string A `SELECT` statement to check existence of a document by its ID
|
||||||
|
*/
|
||||||
|
public static function existsById(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::existsQuery($tableName, self::whereById('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to determine if documents exist using a JSON containment query `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which existence should be checked
|
||||||
|
* @return string A `SELECT` statement to check existence of a document by JSON containment
|
||||||
|
*/
|
||||||
|
public static function existsByContains(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::existsQuery($tableName, self::whereDataContains('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to determine if documents exist using a JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which existence should be checked
|
||||||
|
* @return string A `SELECT` statement to check existence of a document by JSON Path match
|
||||||
|
*/
|
||||||
|
public static function existsByJsonPath(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::existsQuery($tableName, self::whereJsonPathMatches('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to retrieve a document by its ID
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which a document should be retrieved
|
||||||
|
* @return string A `SELECT` statement to retrieve a document by its ID
|
||||||
|
*/
|
||||||
|
public static function findById(string $tableName): string
|
||||||
|
{
|
||||||
|
return sprintf('%s WHERE %s', self::selectFromTable($tableName), self::whereById('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to retrieve documents using a JSON containment query `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which a document should be retrieved
|
||||||
|
* @return string A `SELECT` statement to retrieve documents by JSON containment
|
||||||
|
*/
|
||||||
|
public static function findByContains(string $tableName): string
|
||||||
|
{
|
||||||
|
return sprintf('%s WHERE %s', self::selectFromTable($tableName), self::whereDataContains('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to retrieve documents using a JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which a document should be retrieved
|
||||||
|
* @return string A `SELECT` statement to retrieve a documents by JSON Path match
|
||||||
|
*/
|
||||||
|
public static function findByJsonPath(string $tableName): string
|
||||||
|
{
|
||||||
|
return sprintf('%s WHERE %s', self::selectFromTable($tableName), self::whereJsonPathMatches('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to update a document, replacing the existing document
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which a document should be updated
|
||||||
|
* @return string An `UPDATE` statement to update a document by its ID
|
||||||
|
*/
|
||||||
|
public static function updateFull(string $tableName): string
|
||||||
|
{
|
||||||
|
return sprintf('UPDATE %s SET data = $2 WHERE %s', $tableName, self::whereById('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to apply a partial update to a document
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which documents should be updated
|
||||||
|
* @param string $where The `WHERE` clause specifying which documents should be updated
|
||||||
|
* @return string An `UPDATE` statement to update a partial document ($1 is ID, $2 is document)
|
||||||
|
*/
|
||||||
|
private static function updatePartial(string $tableName, string $where): string
|
||||||
|
{
|
||||||
|
return sprintf('UPDATE %s SET data = data || $2 WHERE %s', $tableName, $where);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to update a document, merging the existing document with the one provided
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which a document should be updated
|
||||||
|
* @return string An `UPDATE` statement to update a document by its ID
|
||||||
|
*/
|
||||||
|
public static function updatePartialById(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::updatePartial($tableName, self::whereById('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to update partial documents matching a JSON containment query `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which documents should be updated
|
||||||
|
* @return string An `UPDATE` statement to update documents by JSON containment
|
||||||
|
*/
|
||||||
|
public static function updatePartialByContains(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::updatePartial($tableName, self::whereDataContains('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to update partial documents matching a JSON containment query `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table in which documents should be updated
|
||||||
|
* @return string An `UPDATE` statement to update documents by JSON Path match
|
||||||
|
*/
|
||||||
|
public static function updatePartialByJsonPath(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::updatePartial($tableName, self::whereJsonPathMatches('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to delete documents
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which documents should be deleted
|
||||||
|
* @param string $where The criteria by which documents should be deleted
|
||||||
|
* @return string A `DELETE` statement to delete documents in the specified table
|
||||||
|
*/
|
||||||
|
private static function deleteQuery(string $tableName, string $where): string
|
||||||
|
{
|
||||||
|
return "DELETE FROM $tableName WHERE $where";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to delete a document by its ID
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which a document should be deleted
|
||||||
|
* @return string A `DELETE` statement to delete a document by its ID
|
||||||
|
*/
|
||||||
|
public static function deleteById(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::deleteQuery($tableName, self::whereById('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to delete documents using a JSON containment query `@>`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which documents should be deleted
|
||||||
|
* @return string A `DELETE` statement to delete documents by JSON containment
|
||||||
|
*/
|
||||||
|
public static function deleteByContains(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::deleteQuery($tableName, self::whereDataContains('$1'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query to delete documents using a JSON Path match `@?`
|
||||||
|
*
|
||||||
|
* @param string $tableName The name of the table from which documents should be deleted
|
||||||
|
* @return string A `DELETE` statement to delete documents by JSON Path match
|
||||||
|
*/
|
||||||
|
public static function deleteByJsonPath(string $tableName): string
|
||||||
|
{
|
||||||
|
return self::deleteQuery($tableName, self::whereJsonPathMatches('$1'));
|
||||||
|
}
|
||||||
|
}
|
||||||
16
src/app/lib/documents/functions.php
Normal file
16
src/app/lib/documents/functions.php
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use BitBadger\PgDocuments\Configuration;
|
||||||
|
use PgSql\Connection;
|
||||||
|
|
||||||
|
if (!function_exists('pg_conn')) {
|
||||||
|
/**
|
||||||
|
* Return the active PostgreSQL connection
|
||||||
|
*
|
||||||
|
* @return Connection The data connection from the configuration
|
||||||
|
*/
|
||||||
|
function pg_conn(): Connection
|
||||||
|
{
|
||||||
|
return Configuration::getPgConn();
|
||||||
|
}
|
||||||
|
}
|
||||||
36
src/app/lib/domain/AsOf.php
Normal file
36
src/app/lib/domain/AsOf.php
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal\Domain;
|
||||||
|
|
||||||
|
use DateTimeImmutable;
|
||||||
|
|
||||||
|
class AsOf
|
||||||
|
{
|
||||||
|
/** The "as of" date/time */
|
||||||
|
public DateTimeImmutable $asOf;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sort an as-of item from oldest to newest
|
||||||
|
*
|
||||||
|
* @param AsOf $a The first item to compare
|
||||||
|
* @param AsOf $b The second item to compare
|
||||||
|
* @return int 0 if they are equal, -1 if A is earlier than B, or 1 if B is earlier than A
|
||||||
|
*/
|
||||||
|
public static function oldestToNewest(AsOf $a, AsOf $b): int
|
||||||
|
{
|
||||||
|
return $a->asOf == $b->asOf ? 0 : ($a->asOf < $b->asOf ? -1 : 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sort an as-of item from newest to oldest
|
||||||
|
*
|
||||||
|
* @param AsOf $a The first item to compare
|
||||||
|
* @param AsOf $b The second item to compare
|
||||||
|
* @return int 0 if they are equal, -1 if B is earlier than A, or 1 if A is earlier than B
|
||||||
|
*/
|
||||||
|
public static function newestToOldest(AsOf $a, AsOf $b): int
|
||||||
|
{
|
||||||
|
return $a->asOf == $b->asOf ? 0 : ($a->asOf > $b->asOf ? -1 : 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
36
src/app/lib/domain/History.php
Normal file
36
src/app/lib/domain/History.php
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal\Domain;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A record of action taken on a prayer request, including updates to its text
|
||||||
|
*/
|
||||||
|
class History extends AsOf
|
||||||
|
{
|
||||||
|
/** The action taken that generated this history entry */
|
||||||
|
public RequestAction $status = RequestAction::Created;
|
||||||
|
|
||||||
|
/** The text of the update, if applicable */
|
||||||
|
public ?string $text = null;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->asOf = unix_epoch();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function isCreated(): bool
|
||||||
|
{
|
||||||
|
return $this->status == RequestAction::Created;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function isPrayed(): bool
|
||||||
|
{
|
||||||
|
return $this->status == RequestAction::Prayed;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function isAnswered(): bool
|
||||||
|
{
|
||||||
|
return $this->status == RequestAction::Answered;
|
||||||
|
}
|
||||||
|
}
|
||||||
85
src/app/lib/domain/JournalRequest.php
Normal file
85
src/app/lib/domain/JournalRequest.php
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal\Domain;
|
||||||
|
|
||||||
|
use DateTimeImmutable, DateTimeZone;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A prayer request, along with calculated fields, for use in displaying journal lists
|
||||||
|
*/
|
||||||
|
class JournalRequest extends AsOf
|
||||||
|
{
|
||||||
|
/** The ID of the prayer request */
|
||||||
|
public string $id = '';
|
||||||
|
|
||||||
|
/** The ID of the user to whom the prayer request belongs */
|
||||||
|
public string $userId = '';
|
||||||
|
|
||||||
|
/** The current text of the request */
|
||||||
|
public string $text = '';
|
||||||
|
|
||||||
|
/** The date/time this request was last marked as prayed */
|
||||||
|
public ?DateTimeImmutable $lastPrayed = null;
|
||||||
|
|
||||||
|
/** The last action taken on this request */
|
||||||
|
public RequestAction $lastAction = RequestAction::Created;
|
||||||
|
|
||||||
|
/** When this request will be shown again after having been snoozed */
|
||||||
|
public ?DateTimeImmutable $snoozedUntil = null;
|
||||||
|
|
||||||
|
/** When this request will be show again after a non-immediate recurrence */
|
||||||
|
public ?DateTimeImmutable $showAfter = null;
|
||||||
|
|
||||||
|
/** The type of recurrence for this request */
|
||||||
|
public RecurrenceType $recurrenceType = RecurrenceType::Immediate;
|
||||||
|
|
||||||
|
/** The units for non-immediate recurrence */
|
||||||
|
public ?int $recurrence = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The history for this request
|
||||||
|
* @var History[] $history
|
||||||
|
*/
|
||||||
|
public array $history = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The notes for this request
|
||||||
|
* @var Note[] $notes
|
||||||
|
*/
|
||||||
|
public array $notes = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param ?Request $req The request off which this journal request should be populated
|
||||||
|
* @param bool $full Whether to include history and notes (true) or exclude them (false)
|
||||||
|
*/
|
||||||
|
public function __construct(?Request $req = null, bool $full = false)
|
||||||
|
{
|
||||||
|
if (is_null($req)) {
|
||||||
|
$this->asOf = unix_epoch();
|
||||||
|
$this->lastPrayed = null;
|
||||||
|
} else {
|
||||||
|
$this->id = $req->id;
|
||||||
|
$this->userId = $req->userId;
|
||||||
|
$this->snoozedUntil = $req->snoozedUntil;
|
||||||
|
$this->showAfter = $req->showAfter;
|
||||||
|
$this->recurrenceType = $req->recurrenceType;
|
||||||
|
$this->recurrence = $req->recurrence;
|
||||||
|
|
||||||
|
usort($req->history, AsOf::newestToOldest(...));
|
||||||
|
$this->asOf = $req->history[array_key_first($req->history)]->asOf;
|
||||||
|
$lastText = array_filter($req->history, fn (History $it) => !is_null($it->text));
|
||||||
|
$this->text = $lastText[array_key_first($lastText)]->text;
|
||||||
|
$lastPrayed = array_filter($req->history, fn (History $it) => $it->isPrayed());
|
||||||
|
if ($lastPrayed) $this->lastPrayed = $lastPrayed[array_key_first($lastPrayed)]->asOf;
|
||||||
|
|
||||||
|
if ($full) {
|
||||||
|
usort($req->notes, AsOf::newestToOldest(...));
|
||||||
|
$this->history = $req->history;
|
||||||
|
$this->notes = $req->notes;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
20
src/app/lib/domain/Note.php
Normal file
20
src/app/lib/domain/Note.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal\Domain;
|
||||||
|
|
||||||
|
use DateTimeImmutable, DateTimeZone;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A note entered on a prayer request
|
||||||
|
*/
|
||||||
|
class Note extends AsOf
|
||||||
|
{
|
||||||
|
/** The note */
|
||||||
|
public string $notes = '';
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->asOf = unix_epoch();
|
||||||
|
}
|
||||||
|
}
|
||||||
32
src/app/lib/domain/RecurrenceType.php
Normal file
32
src/app/lib/domain/RecurrenceType.php
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal\Domain;
|
||||||
|
|
||||||
|
use JsonSerializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The unit to use when determining when to show a recurring request
|
||||||
|
*/
|
||||||
|
enum RecurrenceType implements JsonSerializable
|
||||||
|
{
|
||||||
|
/** The request should reappear immediately */
|
||||||
|
case Immediate;
|
||||||
|
|
||||||
|
/** The request should reappear after the specified number of hours */
|
||||||
|
case Hours;
|
||||||
|
|
||||||
|
/** The request should reappear after the specified number of days */
|
||||||
|
case Days;
|
||||||
|
|
||||||
|
/** The request should reappear after the specified number of weeks */
|
||||||
|
case Weeks;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serialize this enum using its name
|
||||||
|
*/
|
||||||
|
public function jsonSerialize(): mixed
|
||||||
|
{
|
||||||
|
return $this->name;
|
||||||
|
}
|
||||||
|
}
|
||||||
52
src/app/lib/domain/Request.php
Normal file
52
src/app/lib/domain/Request.php
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal\Domain;
|
||||||
|
|
||||||
|
use DateTimeImmutable;
|
||||||
|
use Visus\Cuid2\Cuid2;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A prayer request
|
||||||
|
*/
|
||||||
|
class Request
|
||||||
|
{
|
||||||
|
/** The ID for the request */
|
||||||
|
public string $id;
|
||||||
|
|
||||||
|
/** The date/time the request was originally entered */
|
||||||
|
public DateTimeImmutable $enteredOn;
|
||||||
|
|
||||||
|
/** The ID of the user to whom this request belongs */
|
||||||
|
public string $userId = '';
|
||||||
|
|
||||||
|
/** The date/time the snooze expires for this request */
|
||||||
|
public ?DateTimeImmutable $snoozedUntil = null;
|
||||||
|
|
||||||
|
/** The date/time this request should once again show as defined by recurrence */
|
||||||
|
public ?DateTimeImmutable $showAfter = null;
|
||||||
|
|
||||||
|
/** The type of recurrence for this request */
|
||||||
|
public RecurrenceType $recurrenceType = RecurrenceType::Immediate;
|
||||||
|
|
||||||
|
/** The units which apply to recurrences other than Immediate */
|
||||||
|
public ?int $recurrence = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The history for this request
|
||||||
|
* @var History[] $history
|
||||||
|
*/
|
||||||
|
public array $history = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The notes for this request
|
||||||
|
* @var Note[] $notes
|
||||||
|
*/
|
||||||
|
public array $notes = [];
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->id = (new Cuid2())->toString();
|
||||||
|
$this->enteredOn = unix_epoch();
|
||||||
|
}
|
||||||
|
}
|
||||||
32
src/app/lib/domain/RequestAction.php
Normal file
32
src/app/lib/domain/RequestAction.php
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace MyPrayerJournal\Domain;
|
||||||
|
|
||||||
|
use JsonSerializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An action that was taken on a request
|
||||||
|
*/
|
||||||
|
enum RequestAction: string implements JsonSerializable
|
||||||
|
{
|
||||||
|
/** The request was entered */
|
||||||
|
case Created = 'Created';
|
||||||
|
|
||||||
|
/** Prayer was recorded for the request */
|
||||||
|
case Prayed = 'Prayed';
|
||||||
|
|
||||||
|
/** The request was updated */
|
||||||
|
case Updated = 'Updated';
|
||||||
|
|
||||||
|
/** The request was marked as answered */
|
||||||
|
case Answered = 'Answered';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serialize this enum using its name
|
||||||
|
*/
|
||||||
|
public function jsonSerialize(): mixed
|
||||||
|
{
|
||||||
|
return $this->name;
|
||||||
|
}
|
||||||
|
}
|
||||||
108
src/app/lib/start.php
Normal file
108
src/app/lib/start.php
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require __DIR__ . '/../vendor/autoload.php';
|
||||||
|
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
ini_set('display_errors', 'On');
|
||||||
|
|
||||||
|
use Auth0\SDK\Auth0;
|
||||||
|
use BitBadger\PgDocuments\Configuration;
|
||||||
|
use DateTimeZone;
|
||||||
|
use Dotenv\Dotenv;
|
||||||
|
use MyPrayerJournal\Constants;
|
||||||
|
|
||||||
|
Dotenv::createImmutable(__DIR__)->load();
|
||||||
|
|
||||||
|
/** @var Auth0 The Auth0 instance to use for the request */
|
||||||
|
$auth0 = new Auth0([
|
||||||
|
'domain' => $_ENV[Constants::AUTH0_DOMAIN],
|
||||||
|
'clientId' => $_ENV[Constants::AUTH0_CLIENT_ID],
|
||||||
|
'clientSecret' => $_ENV[Constants::AUTH0_CLIENT_SECRET],
|
||||||
|
'cookieSecret' => $_ENV[Constants::AUTH0_COOKIE_SECRET]
|
||||||
|
]);
|
||||||
|
|
||||||
|
/** @var ?object The Auth0 session for the current user */
|
||||||
|
$session = $auth0->getCredentials();
|
||||||
|
if (!is_null($session)) $_REQUEST[Constants::USER_ID] = $session->user[Constants::CLAIM_SUB];
|
||||||
|
|
||||||
|
$_REQUEST[Constants::IS_HTMX] = array_key_exists(Constants::HEADER_HX_REQUEST, $_SERVER)
|
||||||
|
&& (!array_key_exists(Constants::HEADER_HX_HIST_REQ, $_SERVER));
|
||||||
|
|
||||||
|
$_REQUEST[Constants::TIME_ZONE] = new DateTimeZone(
|
||||||
|
array_key_exists(Constants::HEADER_USER_TZ, $_SERVER) ? $_SERVER[Constants::HEADER_USER_TZ] : 'Etc/UTC');
|
||||||
|
|
||||||
|
$_REQUEST[Constants::VERSION] = 4;
|
||||||
|
|
||||||
|
Configuration::$startUp = '\MyPrayerJournal\Data::startUp';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bring in a template
|
||||||
|
*/
|
||||||
|
function template(string $name): void
|
||||||
|
{
|
||||||
|
require_once __DIR__ . "/../templates/$name.php";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If a user is not found, either redirect them or fail the request
|
||||||
|
*
|
||||||
|
* @param bool $fail Whether to fail the request (true) or redirect to log on (false - optional, default)
|
||||||
|
*/
|
||||||
|
function require_user(bool $fail = false): void
|
||||||
|
{
|
||||||
|
if (!array_key_exists(Constants::USER_ID, $_REQUEST)) {
|
||||||
|
if ($fail) {
|
||||||
|
http_response_code(403);
|
||||||
|
} else {
|
||||||
|
header(sprintf('Location: /user/log-on?%s=%s', Constants::RETURN_URL, $_SERVER[Constants::REQUEST_URI]));
|
||||||
|
}
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Write a bare header for a component result
|
||||||
|
*/
|
||||||
|
function bare_header(): void
|
||||||
|
{
|
||||||
|
echo '<!DOCTYPE html><html lang="en"><head><meta charset="utf8"><title></title></head><body>';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a traditional and htmx link, and apply an active class if the link is active
|
||||||
|
*
|
||||||
|
* @param string $url The URL of the page to be linked
|
||||||
|
* @param array $classNames CSS class names to be applied to the link (optional, default none)
|
||||||
|
* @param bool $checkActive Whether to apply an active class if the route matches (optional, default false)
|
||||||
|
*/
|
||||||
|
function page_link(string $url, array $classNames = [], bool $checkActive = false): void
|
||||||
|
{
|
||||||
|
echo 'href="'. $url . '" hx-get="' . $url . '"';
|
||||||
|
if ($checkActive && str_starts_with($_SERVER[Constants::REQUEST_URI], $url)) {
|
||||||
|
$classNames[] = 'is-active-route';
|
||||||
|
}
|
||||||
|
if (!empty($classNames)) {
|
||||||
|
echo sprintf(' class="%s"', implode(' ', $classNames));
|
||||||
|
}
|
||||||
|
echo ' hx-target="#top" hx-swap="innerHTML" hx-push-url="true"';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Close any open database connection; close the `body` and `html` tags
|
||||||
|
*/
|
||||||
|
function end_request(): void
|
||||||
|
{
|
||||||
|
Configuration::closeConn();
|
||||||
|
echo '</body></html>';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new instance of the Unix epoch
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable An immutable date/time as of the Unix epoch
|
||||||
|
*/
|
||||||
|
function unix_epoch(): DateTimeImmutable
|
||||||
|
{
|
||||||
|
return new DateTimeImmutable('1/1/1970', new DateTimeZone('Etc/UTC'));
|
||||||
|
}
|
||||||
90
src/app/public/components/journal-items.php
Normal file
90
src/app/public/components/journal-items.php
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require_once '../../lib/start.php';
|
||||||
|
|
||||||
|
use MyPrayerJournal\{ Constants, Data, Dates };
|
||||||
|
use MyPrayerJournal\Domain\JournalRequest;
|
||||||
|
|
||||||
|
require_user(true);
|
||||||
|
|
||||||
|
$requests = Data::getJournal($_REQUEST[Constants::USER_ID]);
|
||||||
|
|
||||||
|
bare_header();
|
||||||
|
if ($requests) { ?>
|
||||||
|
<section id="journalItems" class="row row-cols-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-4 g-3" hx-target="this"
|
||||||
|
hx-swap="outerHTML" aria-label="Prayer Requests">
|
||||||
|
<p class="mb-3 has-text-centered">
|
||||||
|
<a <?php page_link('/request/edit?new'); ?> class="button is-light">
|
||||||
|
<span class="material-icons">add_box</span> Add a Prayer Request
|
||||||
|
</a>
|
||||||
|
</p><?php
|
||||||
|
array_walk($requests, journal_card(...)); ?>
|
||||||
|
</section><?php
|
||||||
|
} else {
|
||||||
|
$_REQUEST['EMPTY_HEADING'] = 'No Active Requests';
|
||||||
|
$_REQUEST['EMPTY_LINK'] = '/request/edit?new';
|
||||||
|
$_REQUEST['EMPTY_BTN_TXT'] = 'Add a Request';
|
||||||
|
$_REQUEST['EMPTY_TEXT'] = 'You have no requests to be shown; see the “Active” link above for '
|
||||||
|
. 'snoozed or deferred requests, and the “Answered” link for answered requests';
|
||||||
|
template('no_content');
|
||||||
|
}
|
||||||
|
end_request();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format the activity and relative time
|
||||||
|
*
|
||||||
|
* @param string $activity The activity performed (activity or prayed)
|
||||||
|
* @param DateTimeImmutable $asOf The date/time the activity was performed
|
||||||
|
*/
|
||||||
|
function format_activity(string $activity, DateTimeImmutable $asOf): void
|
||||||
|
{
|
||||||
|
echo sprintf('last %s <span title="%s">%s</span>', $activity,
|
||||||
|
$asOf->setTimezone($_REQUEST[Constants::TIME_ZONE])->format('l, F jS, Y/g:ia T'),
|
||||||
|
Dates::formatDistance(Dates::now(), $asOf));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a card for a prayer request
|
||||||
|
*
|
||||||
|
* @param JournalRequest $req The request for which a card should be generated
|
||||||
|
*/
|
||||||
|
function journal_card(JournalRequest $req): void
|
||||||
|
{
|
||||||
|
$spacer = '<span> </span>'; ?>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card h-100">
|
||||||
|
<div class="card-header p-0 d-flex" role="toolbar">
|
||||||
|
<a <?php page_link("/request/edit?{$req->id}"); ?> class="button btn-secondary" title="Edit Request">
|
||||||
|
<span class="material-icons">edit</span>
|
||||||
|
</a><?php echo $spacer; ?>
|
||||||
|
<button type="button" class="btn btn-secondary" title="Add Notes" data-bs-toggle="modal"
|
||||||
|
data-bs-target="#notesModal" hx-get="/components/request/<?php echo $req->id; ?>/add-notes"
|
||||||
|
hx-target="#notesBody" hx-swap="innerHTML">
|
||||||
|
<span class="material-icons">comment</span>
|
||||||
|
</button><?php echo $spacer; ?>
|
||||||
|
<button type="button" class="btn btn-secondary" title="Snooze Request" data-bs-toggle="modal"
|
||||||
|
data-bs-target="#snoozeModal" hx-get="/components/request/<?php echo $req->id; ?>/snooze"
|
||||||
|
hx-target="#snoozeBody" hx-swap="innerHTML">
|
||||||
|
<span class="material-icons">schedule</span>
|
||||||
|
</button>
|
||||||
|
<div class="flex-grow-1"></div>
|
||||||
|
<a href="/request/prayed?<?php echo $req->id; ?>" class="button btn-success w-25"
|
||||||
|
hx-patch="/request/prayed?<?php echo $req->id; ?>" title="Mark as Prayed">
|
||||||
|
<span class="material-icons">done</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="request-text"><?php echo htmlentities($req->text); ?></p>
|
||||||
|
</div>
|
||||||
|
<div class="card-footer text-end text-muted px-1 py-0">
|
||||||
|
<em><?php
|
||||||
|
[ $activity, $asOf ] = is_null($req->lastPrayed)
|
||||||
|
? [ 'activity', $req->asOf ]
|
||||||
|
: [ 'prayed', $req->lastPrayed ];
|
||||||
|
format_activity($activity, $asOf); ?>
|
||||||
|
</em>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><?php
|
||||||
|
}
|
||||||
25
src/app/public/index.php
Normal file
25
src/app/public/index.php
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require_once '../lib/start.php';
|
||||||
|
|
||||||
|
use MyPrayerJournal\Constants;
|
||||||
|
|
||||||
|
$_REQUEST[Constants::PAGE_TITLE] = 'Welcome';
|
||||||
|
|
||||||
|
template('layout/page_header'); ?>
|
||||||
|
<main class="container">
|
||||||
|
<p class="block"> </p>
|
||||||
|
<p class="block">
|
||||||
|
myPrayerJournal is a place where individuals can record their prayer requests, record that they prayed for them,
|
||||||
|
update them as God moves in the situation, and record a final answer received on that request. It also allows
|
||||||
|
individuals to review their answered prayers.
|
||||||
|
</p>
|
||||||
|
<p class="block">
|
||||||
|
This site is open and available to the general public. To get started, simply click the “Log On”
|
||||||
|
link above, and log on with either a Microsoft or Google account. You can also learn more about the site at the
|
||||||
|
“Docs” link, also above.
|
||||||
|
</p>
|
||||||
|
</main><?php
|
||||||
|
template('layout/page_footer');
|
||||||
|
end_request();
|
||||||
20
src/app/public/journal.php
Normal file
20
src/app/public/journal.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require_once '../lib/start.php';
|
||||||
|
|
||||||
|
use MyPrayerJournal\Constants;
|
||||||
|
|
||||||
|
require_user();
|
||||||
|
|
||||||
|
$_REQUEST[Constants::PAGE_TITLE] = "{$session->user[Constants::CLAIM_GIVEN_NAME]}’s Prayer Journal";
|
||||||
|
|
||||||
|
template('layout/page_header'); ?>
|
||||||
|
<main class="container">
|
||||||
|
<h2 class="title"><?php echo $_REQUEST[Constants::PAGE_TITLE]; ?></h2>
|
||||||
|
<p hx-get="/components/journal-items" hx-swap="outerHTML" hx-trigger="load delay:.25s">
|
||||||
|
Loading your prayer journal…
|
||||||
|
</p>
|
||||||
|
</main><?php
|
||||||
|
template('layout/page_footer');
|
||||||
|
end_request();
|
||||||
98
src/app/public/legal/privacy-policy.php
Normal file
98
src/app/public/legal/privacy-policy.php
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require_once '../../lib/start.php';
|
||||||
|
|
||||||
|
use MyPrayerJournal\Constants;
|
||||||
|
|
||||||
|
$_REQUEST[Constants::PAGE_TITLE] = 'Privacy Policy';
|
||||||
|
|
||||||
|
template('layout/page_header'); ?>
|
||||||
|
<main class="container">
|
||||||
|
<h2 class="title">Privacy Policy</h2>
|
||||||
|
<h6 class="subtitle">as of May 21<sup>st</sup>, 2018</h6>
|
||||||
|
<p class="mb-3">
|
||||||
|
The nature of the service is one where privacy is a must. The items below will help you understand the data we
|
||||||
|
collect, access, and store on your behalf as you use this service.
|
||||||
|
</p>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">Third Party Services</h3>
|
||||||
|
</div>
|
||||||
|
<p class="card-content">
|
||||||
|
myPrayerJournal utilizes a third-party authentication and identity provider. You should familiarize yourself
|
||||||
|
with the privacy policy for
|
||||||
|
<a href="https://auth0.com/privacy" target="_blank" rel="noopener">Auth0</a>, as well as your chosen
|
||||||
|
provider
|
||||||
|
(<a href="https://privacy.microsoft.com/en-us/privacystatement" target="_blank"
|
||||||
|
rel="noopener">Microsoft</a> or
|
||||||
|
<a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google</a>).
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">What We Collect</h3>
|
||||||
|
</div>
|
||||||
|
<div class="card-content">
|
||||||
|
<h4 class="subtitle mb-3">Identifying Data</h4>
|
||||||
|
<ul class="mb-3 mx-5">
|
||||||
|
<li>
|
||||||
|
• The only identifying data myPrayerJournal stores is the subscriber (“sub”) field
|
||||||
|
from the token we receive from Auth0, once you have signed in through their hosted service. All
|
||||||
|
information is associated with you via this field.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
• While you are signed in, within your browser, the service has access to your first and last
|
||||||
|
names, along with a URL to the profile picture (provided by your selected identity provider). This
|
||||||
|
information is not transmitted to the server, and is removed when “Log Off” is clicked.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h4 class="subtitle mb-3">User Provided Data</h4>
|
||||||
|
<ul class="mx-5">
|
||||||
|
<li>
|
||||||
|
• myPrayerJournal stores the information you provide, including the text of prayer requests,
|
||||||
|
updates, and notes; and the date/time when certain actions are taken.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">How Your Data Is Accessed / Secured</h3>
|
||||||
|
</div>
|
||||||
|
<ul class="card-content">
|
||||||
|
<li>
|
||||||
|
• Your provided data is returned to you, as required, to display your journal or your answered
|
||||||
|
requests. On the server, it is stored in a controlled-access database.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
• Your data is backed up, along with other Bit Badger Solutions hosted systems, in a rolling
|
||||||
|
manner; backups are preserved for the prior 7 days, and backups from the 1<sup>st</sup> and
|
||||||
|
15<sup>th</sup> are preserved for 3 months. These backups are stored in a private cloud data repository.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
• The data collected and stored is the absolute minimum necessary for the functionality of the
|
||||||
|
service. There are no plans to “monetize” this service, and storing the minimum amount of
|
||||||
|
information means that the data we have is not interesting to purchasers (or those who may have more
|
||||||
|
nefarious purposes).
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
• Access to servers and backups is strictly controlled and monitored for unauthorized access
|
||||||
|
attempts.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">Removing Your Data</h3>
|
||||||
|
</div>
|
||||||
|
<p class="card-content">
|
||||||
|
At any time, you may choose to discontinue using this service. Both Microsoft and Google provide ways to
|
||||||
|
revoke access from this application. However, if you want your data removed from the database, please
|
||||||
|
contact daniel at bitbadger.solutions (via e-mail, replacing at with @) prior to doing so, to ensure we can
|
||||||
|
determine which subscriber ID belongs to you.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</main><?php
|
||||||
|
template('layout/page_footer');
|
||||||
|
end_request();
|
||||||
73
src/app/public/legal/terms-of-service.php
Normal file
73
src/app/public/legal/terms-of-service.php
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require_once '../../lib/start.php';
|
||||||
|
|
||||||
|
use MyPrayerJournal\Constants;
|
||||||
|
|
||||||
|
$_REQUEST[Constants::PAGE_TITLE] = 'Terms of Service';
|
||||||
|
|
||||||
|
template('layout/page_header'); ?>
|
||||||
|
<main class="container">
|
||||||
|
<h2 class="title">Terms of Service</h2>
|
||||||
|
<h6 class="subtitle">as of May 21<sup>st</sup>, 2018</h6>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">1. Acceptance of Terms</h3>
|
||||||
|
</div>
|
||||||
|
<p class="card-content">
|
||||||
|
By accessing this web site, you are agreeing to be bound by these Terms and Conditions, and that you are
|
||||||
|
responsible to ensure that your use of this site complies with all applicable laws. Your continued use of
|
||||||
|
this site implies your acceptance of these terms.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">2. Description of Service and Registration</h3>
|
||||||
|
</div>
|
||||||
|
<p class="card-content">
|
||||||
|
myPrayerJournal is a service that allows individuals to enter and amend their prayer requests. It requires
|
||||||
|
no registration by itself, but access is granted based on a successful login with an external identity
|
||||||
|
provider. See <a <?php page_link('/legal/privacy-policy'); ?>>our privacy policy</a> for details on how that
|
||||||
|
information is accessed and stored.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">3. Third Party Services</h3>
|
||||||
|
</div>
|
||||||
|
<p class="card-content">
|
||||||
|
This service utilizes a third-party service provider for identity management. Review the terms of service
|
||||||
|
for <a href="https://auth0.com/terms" target="_blank" rel="noopener">Auth0</a>, as well as those for the
|
||||||
|
selected authorization provider
|
||||||
|
(<a href="https://www.microsoft.com/en-us/servicesagreement" target="_blank"
|
||||||
|
rel="noopener">Microsoft</a> or
|
||||||
|
<a href="https://policies.google.com/terms" target="_blank" rel="noopener">Google</a>).
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">4. Liability</h3>
|
||||||
|
</div>
|
||||||
|
<p class="card-content">
|
||||||
|
This service is provided “as is”, and no warranty (express or implied) exists. The service and
|
||||||
|
its developers may not be held liable for any damages that may arise through the use of this service.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h3 class="card-header-title">5. Updates to Terms</h3>
|
||||||
|
</div>
|
||||||
|
<p class="card-content">
|
||||||
|
These terms and conditions may be updated at any time, and this service does not have the capability to
|
||||||
|
notify users when these change. The date at the top of the page will be updated when any of the text of
|
||||||
|
these terms is updated.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
You may also wish to review our <a <?php page_link('/legal/privacy-policy'); ?>>privacy policy</a> to learn how
|
||||||
|
we handle your data.
|
||||||
|
</p>
|
||||||
|
</main><?php
|
||||||
|
template('layout/page_footer');
|
||||||
|
end_request();
|
||||||
104
src/app/public/script/mpj.js
Normal file
104
src/app/public/script/mpj.js
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
"use strict"
|
||||||
|
|
||||||
|
/** myPrayerJournal script */
|
||||||
|
this.mpj = {
|
||||||
|
/**
|
||||||
|
* Show a message via toast
|
||||||
|
* @param {string} message The message to show
|
||||||
|
*/
|
||||||
|
showToast (message) {
|
||||||
|
const [level, msg] = message.split("|||")
|
||||||
|
|
||||||
|
let header
|
||||||
|
if (level !== "success") {
|
||||||
|
const heading = typ => `<span class="me-auto"><strong>${typ.toUpperCase()}</strong></span>`
|
||||||
|
|
||||||
|
header = document.createElement("div")
|
||||||
|
header.className = "toast-header"
|
||||||
|
header.innerHTML = heading(level === "warning" ? level : "error")
|
||||||
|
|
||||||
|
const close = document.createElement("button")
|
||||||
|
close.type = "button"
|
||||||
|
close.className = "btn-close"
|
||||||
|
close.setAttribute("data-bs-dismiss", "toast")
|
||||||
|
close.setAttribute("aria-label", "Close")
|
||||||
|
header.appendChild(close)
|
||||||
|
}
|
||||||
|
|
||||||
|
const body = document.createElement("div")
|
||||||
|
body.className = "toast-body"
|
||||||
|
body.innerText = msg
|
||||||
|
|
||||||
|
const toastEl = document.createElement("div")
|
||||||
|
toastEl.className = `toast bg-${level === "error" ? "danger" : level} text-white`
|
||||||
|
toastEl.setAttribute("role", "alert")
|
||||||
|
toastEl.setAttribute("aria-live", "assertlive")
|
||||||
|
toastEl.setAttribute("aria-atomic", "true")
|
||||||
|
toastEl.addEventListener("hidden.bs.toast", e => e.target.remove())
|
||||||
|
if (header) toastEl.appendChild(header)
|
||||||
|
|
||||||
|
toastEl.appendChild(body)
|
||||||
|
document.getElementById("toasts").appendChild(toastEl)
|
||||||
|
new bootstrap.Toast(toastEl, { autohide: level === "success" }).show()
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Load local version of Bootstrap CSS if the CDN load failed
|
||||||
|
*/
|
||||||
|
ensureCss () {
|
||||||
|
let loaded = false
|
||||||
|
for (let i = 0; !loaded && i < document.styleSheets.length; i++) {
|
||||||
|
loaded = document.styleSheets[i].href.endsWith("bootstrap.min.css")
|
||||||
|
}
|
||||||
|
if (!loaded) {
|
||||||
|
const css = document.createElement("link")
|
||||||
|
css.rel = "stylesheet"
|
||||||
|
css.href = "/style/bootstrap.min.css"
|
||||||
|
document.getElementsByTagName("head")[0].appendChild(css)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** Script for the request edit component */
|
||||||
|
edit: {
|
||||||
|
/**
|
||||||
|
* Toggle the recurrence input fields
|
||||||
|
* @param {Event} e The click event
|
||||||
|
*/
|
||||||
|
toggleRecurrence ({ target }) {
|
||||||
|
const isDisabled = target.value === "Immediate"
|
||||||
|
;["recurCount", "recurInterval"].forEach(it => document.getElementById(it).disabled = isDisabled)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* The time zone of the current browser
|
||||||
|
* @type {string}
|
||||||
|
**/
|
||||||
|
timeZone: undefined,
|
||||||
|
/**
|
||||||
|
* Derive the time zone from the current browser
|
||||||
|
*/
|
||||||
|
deriveTimeZone () {
|
||||||
|
try {
|
||||||
|
this.timeZone = (new Intl.DateTimeFormat()).resolvedOptions().timeZone
|
||||||
|
} catch (_) { }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
htmx.on("htmx:afterOnLoad", function (evt) {
|
||||||
|
const hdrs = evt.detail.xhr.getAllResponseHeaders()
|
||||||
|
// Show a message if there was one in the response
|
||||||
|
if (hdrs.indexOf("x-toast") >= 0) {
|
||||||
|
mpj.showToast(evt.detail.xhr.getResponseHeader("x-toast"))
|
||||||
|
}
|
||||||
|
// Hide a modal window if requested
|
||||||
|
if (hdrs.indexOf("x-hide-modal") >= 0) {
|
||||||
|
document.getElementById(evt.detail.xhr.getResponseHeader("x-hide-modal") + "Dismiss").click()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
htmx.on("htmx:configRequest", function (evt) {
|
||||||
|
// Send the user's current time zone so that we can display local time
|
||||||
|
if (mpj.timeZone) {
|
||||||
|
evt.detail.headers["X-Time-Zone"] = mpj.timeZone
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
mpj.deriveTimeZone()
|
||||||
60
src/app/public/style/style.css
Normal file
60
src/app/public/style/style.css
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
|
||||||
|
nav.navbar.is-dark {
|
||||||
|
background-color: green;
|
||||||
|
|
||||||
|
& .m {
|
||||||
|
font-weight: 100;
|
||||||
|
}
|
||||||
|
& .p {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
& .j {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.nav-item {
|
||||||
|
& a:link,
|
||||||
|
& a:visited {
|
||||||
|
padding: .5rem 1rem;
|
||||||
|
margin: 0 .5rem;
|
||||||
|
border-radius: .5rem;
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
& a:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: rgba(255, 255, 255, .2);
|
||||||
|
}
|
||||||
|
& a.is-active-route {
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-top: solid 4px rgba(255, 255, 255, .3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
form {
|
||||||
|
max-width: 60rem;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
.action-cell .material-icons {
|
||||||
|
font-size: 1.1rem ;
|
||||||
|
}
|
||||||
|
.material-icons {
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
#toastHost {
|
||||||
|
position: sticky;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
.request-text {
|
||||||
|
white-space: pre-line
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
border-top: solid 1px lightgray;
|
||||||
|
margin: 1rem -1rem 0;
|
||||||
|
padding: 0 1rem;
|
||||||
|
|
||||||
|
& p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
9
src/app/public/user/log-off.php
Normal file
9
src/app/public/user/log-off.php
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require_once '../../lib/start.php';
|
||||||
|
|
||||||
|
use MyPrayerJournal\Constants;
|
||||||
|
|
||||||
|
header("Location: {$auth0->logout($_ENV[Constants::BASE_URL])}");
|
||||||
|
exit;
|
||||||
24
src/app/public/user/log-on.php
Normal file
24
src/app/public/user/log-on.php
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require_once '../../lib/start.php';
|
||||||
|
|
||||||
|
use MyPrayerJournal\Constants;
|
||||||
|
|
||||||
|
$auth0->clear();
|
||||||
|
|
||||||
|
// Check for return URL; if present, store it in a cookie we'll retrieve when we're logged in
|
||||||
|
$nonce = '';
|
||||||
|
if (array_key_exists(Constants::RETURN_URL, $_GET)) {
|
||||||
|
$nonce = urlencode(base64_encode(openssl_random_pseudo_bytes(8)));
|
||||||
|
setcookie(Constants::COOKIE_REDIRECT, "$nonce|{$_GET[Constants::RETURN_URL]}", [
|
||||||
|
'expires' => -1,
|
||||||
|
'secure' => true,
|
||||||
|
'httponly' => true,
|
||||||
|
'samesite' => 'Strict'
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
$params = $nonce ? [ Constants::LOG_ON_STATE => $nonce ] : [];
|
||||||
|
|
||||||
|
header('Location: ' . $auth0->login("{$_ENV[Constants::BASE_URL]}/user/logged-on", $params));
|
||||||
|
exit;
|
||||||
26
src/app/public/user/logged-on.php
Normal file
26
src/app/public/user/logged-on.php
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
require_once '../../lib/start.php';
|
||||||
|
|
||||||
|
use MyPrayerJournal\Constants;
|
||||||
|
|
||||||
|
$auth0->exchange("{$_ENV[Constants::BASE_URL]}/user/logged-on");
|
||||||
|
|
||||||
|
$nextUrl = '/journal';
|
||||||
|
if (array_key_exists(Constants::LOG_ON_STATE, $_GET)) {
|
||||||
|
$nonce = base64_decode(urldecode($_GET[Constants::LOG_ON_STATE]));
|
||||||
|
[$verify, $newNext] = explode('|', $_COOKIE[Constants::COOKIE_REDIRECT]);
|
||||||
|
if ($verify == $nonce && $newNext && str_starts_with($newNext, '/') && !str_starts_with($newNext, '//')) {
|
||||||
|
$nextUrl = $newNext;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setcookie(Constants::COOKIE_REDIRECT, '', [
|
||||||
|
'expires' => -1,
|
||||||
|
'secure' => true,
|
||||||
|
'httponly' => true,
|
||||||
|
'samesite' => 'Strict'
|
||||||
|
]);
|
||||||
|
header("Location: $nextUrl");
|
||||||
|
exit;
|
||||||
21
src/app/templates/layout/page_footer.php
Normal file
21
src/app/templates/layout/page_footer.php
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
use MyPrayerJournal\Constants; ?>
|
||||||
|
</section><?php
|
||||||
|
if (!$_REQUEST[Constants::IS_HTMX]) { ?>
|
||||||
|
<footer class="container-fluid mx-1">
|
||||||
|
<p class="text-muted has-text-right">
|
||||||
|
myPrayerJournal <?php echo $_REQUEST[Constants::VERSION]; ?><br>
|
||||||
|
<em><small>
|
||||||
|
<a <?php page_link('/legal/privacy-policy'); ?>>Privacy Policy</a> •
|
||||||
|
<a <?php page_link('/legal/terms-of-service'); ?>>Terms of Service</a> •
|
||||||
|
<a href="https://github.com/bit-badger/myprayerjournal" target="_blank" rel="noopener">Developed</a>
|
||||||
|
and hosted by
|
||||||
|
<a href="https://bitbadger.solutions" target="_blank" rel="noopener">Bit Badger Solutions</a>
|
||||||
|
</small></em>
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
<script src="https://unpkg.com/htmx.org@1.9.4"
|
||||||
|
integrity="sha384-zUfuhFKKZCbHTY6aRR46gxiqszMk5tcHjsVFxnUo8VMus4kHGVdIYVbOYYNlKmHV"
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
<script src="/script/mpj.js"></script><?php
|
||||||
|
}
|
||||||
50
src/app/templates/layout/page_header.php
Normal file
50
src/app/templates/layout/page_header.php
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
use BitBadger\PgDocuments\Document;
|
||||||
|
use MyPrayerJournal\{ Constants, Data };
|
||||||
|
|
||||||
|
$isLoggedOn = array_key_exists('MPJ_USER_ID', $_REQUEST);
|
||||||
|
$hasSnoozed = false;
|
||||||
|
if ($isLoggedOn) {
|
||||||
|
$hasSnoozed = Document::countByJsonPath(Data::REQ_TABLE, '$.snoozedUntil ? (@ == "0")') > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
$theTitle = array_key_exists(Constants::PAGE_TITLE, $_REQUEST) ? "{$_REQUEST[Constants::PAGE_TITLE]} « " : ''; ?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf8">
|
||||||
|
<title><?php echo $theTitle; ?>myPrayerJournal</title><?php
|
||||||
|
if (!$_REQUEST[Constants::IS_HTMX]) { ?>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.4/css/bulma.min.css"
|
||||||
|
integrity="sha512-HqxHUkJM0SYcbvxUw5P60SzdOTy/QVwA1JJrvaXJv4q7lmbDZCmZaqz01UPOaQveoxfYRv1tHozWGPMcuTBuvQ=="
|
||||||
|
crossorigin="anonymous" referrerpolicy="no-referrer">
|
||||||
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||||
|
<link href="/style/style.css" rel="stylesheet"><?php
|
||||||
|
} ?>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<section id="top" aria-label="top navigation">
|
||||||
|
<nav class="navbar is-dark has-shadow" role="navigation" aria-label="main navigation">
|
||||||
|
<div class="navbar-brand">
|
||||||
|
<a <?php page_link('/'); ?> class="navbar-item">
|
||||||
|
<span class="m">my</span><span class="p">Prayer</span><span class="j">Journal</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="navbar-menu">
|
||||||
|
<div class="navbar-start"><?php
|
||||||
|
if ($isLoggedOn) { ?>
|
||||||
|
<a <?php page_link('/journal', ['navbar-item'], true); ?>>Journal</a>
|
||||||
|
<a <?php page_link('/requests/active', ['navbar-item'], true); ?>>Active</a><?php
|
||||||
|
if ($hasSnoozed) { ?>
|
||||||
|
<a <?php page_link('/requests/snoozed', ['navbar-item'], true); ?>>Snoozed</a><?php
|
||||||
|
} ?>
|
||||||
|
<a <?php page_link('/requests/answered', ['navbar-item'], true); ?>>Answered</a>
|
||||||
|
<a href="/user/log-off" class="navbar-item">Log Off</a><?php
|
||||||
|
} else { ?>
|
||||||
|
<a href="/user/log-on" class="navbar-item">Log On</a><?php
|
||||||
|
} ?>
|
||||||
|
<a href="https://docs.prayerjournal.me" class="navbar-item" target="_blank" rel="noopener">Docs</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
10
src/app/templates/no_content.php
Normal file
10
src/app/templates/no_content.php
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<div class="card mb-3">
|
||||||
|
<div class="card-header has-background-light">
|
||||||
|
<h5 class="card-header-title"><?php echo $_REQUEST['EMPTY_HEADING']; ?></h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-content has-text-centered">
|
||||||
|
<p class="mb-5"><?php echo $_REQUEST['EMPTY_TEXT']; ?></p>
|
||||||
|
<a <?php page_link($_REQUEST['EMPTY_LINK']); ?>
|
||||||
|
class="button is-link"><?php echo $_REQUEST['EMPTY_BTN_TXT']; ?></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
Reference in New Issue
Block a user