commit 0e0c0ee8970dc049f12f1a3d02d4555c21835616 Author: jzitnik-dev Date: Tue May 19 11:15:42 2026 +0200 Initial commit diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..1a1de30 --- /dev/null +++ b/.env.example @@ -0,0 +1,4 @@ +API_LISTEN_ADDR=127.0.0.1:3000 +MANAGEMENT_LISTEN_ADDR=127.0.0.1:4000 +MANAGEMENT_USERNAME=admin +MANAGEMENT_PASSWORD=admin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fedaa2b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +.env diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..a97c6d9 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,736 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "async-trait" +version = "0.1.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "axum" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" +dependencies = [ + "async-trait", + "axum-core", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-core" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "bitflags" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" + +[[package]] +name = "cc" +version = "1.2.62" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "dotenvy" +version = "0.15.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] +name = "fallible-iterator" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" + +[[package]] +name = "fallible-streaming-iterator" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-task", + "pin-project-lite", + "slab", +] + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", +] + +[[package]] +name = "hashlink" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "bytes", + "http", + "http-body", + "hyper", + "pin-project-lite", + "tokio", + "tower-service", +] + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "jecnarozvrh-announcement-api" +version = "0.1.0" +dependencies = [ + "axum", + "dotenvy", + "rusqlite", + "serde", + "serde_json", + "tokio", +] + +[[package]] +name = "libc" +version = "0.2.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + +[[package]] +name = "libsqlite3-sys" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f" +dependencies = [ + "cc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[package]] +name = "matchit" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mio" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" +dependencies = [ + "libc", + "wasi", + "windows-sys", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "pkg-config" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags", +] + +[[package]] +name = "rusqlite" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae" +dependencies = [ + "bitflags", + "fallible-iterator", + "fallible-streaming-iterator", + "hashlink", + "libsqlite3-sys", + "smallvec", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_path_to_error" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" +dependencies = [ + "itoa", + "serde", + "serde_core", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" + +[[package]] +name = "tokio" +version = "1.52.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" +dependencies = [ + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys", +] + +[[package]] +name = "tokio-macros" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "log", + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "zerocopy" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0825e04 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "jecnarozvrh-announcement-api" +version = "0.1.0" +edition = "2024" + +[dependencies] +axum = "0.7.5" +tokio = { version = "1.37", features = ["full"] } +dotenvy = "0.15" +rusqlite = { version = "0.31", features = ["bundled"] } +serde = { version = "1", features = ["derive"] } +serde_json = "1" diff --git a/announcements.db b/announcements.db new file mode 100644 index 0000000..0be4bd8 Binary files /dev/null and b/announcements.db differ diff --git a/src/api/mod.rs b/src/api/mod.rs new file mode 100644 index 0000000..aaeb141 --- /dev/null +++ b/src/api/mod.rs @@ -0,0 +1,51 @@ +use std::sync::Arc; +use tokio::sync::Mutex; + +use axum::{ + Json, Router, + extract::{Path, State}, + http::StatusCode, + response::IntoResponse, + routing::get, +}; +use rusqlite::Connection; + +use crate::db; + +type Db = Arc>; + +pub async fn serve(addr: &str, db: Db) { + let app = Router::new() + .route("/v1/announcements/:dates", get(get_announcements)) + .with_state(db); + + let listener = tokio::net::TcpListener::bind(addr).await.unwrap(); + println!("API server listening on {addr}"); + axum::serve(listener, app).await.unwrap(); +} + +async fn get_announcements(State(db): State, Path(dates): Path) -> impl IntoResponse { + let conn = db.lock().await; + + let mut map = serde_json::Map::new(); + for date in dates.split(',') { + let date = date.trim(); + if date.is_empty() { + continue; + } + match db::get_for_date(&conn, date) { + Ok(anns) => { + map.insert(date.to_string(), serde_json::json!(anns)); + } + Err(e) => { + return ( + StatusCode::INTERNAL_SERVER_ERROR, + Json(serde_json::json!({ "error": e.to_string() })), + ) + .into_response(); + } + } + } + + (StatusCode::OK, Json(serde_json::json!(map))).into_response() +} diff --git a/src/db.rs b/src/db.rs new file mode 100644 index 0000000..e4121b6 --- /dev/null +++ b/src/db.rs @@ -0,0 +1,93 @@ +use rusqlite::{params, Connection, Result}; + +#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] +pub struct Announcement { + pub id: i64, + pub author: String, + pub text_content: String, + pub start_date: String, + pub end_date: String, + pub created_at: String, +} + +pub fn open(db_path: &str) -> Result { + let conn = Connection::open(db_path)?; + conn.execute_batch( + "CREATE TABLE IF NOT EXISTS announcements ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + author TEXT NOT NULL, + text_content TEXT NOT NULL, + start_date TEXT NOT NULL, + end_date TEXT NOT NULL, + created_at TEXT NOT NULL DEFAULT (datetime('now')) + );", + )?; + Ok(conn) +} + +pub fn get_for_date(conn: &Connection, date: &str) -> Result> { + let mut stmt = conn.prepare( + "SELECT id, author, text_content, start_date, end_date, created_at + FROM announcements + WHERE date(?) BETWEEN date(start_date) AND date(end_date) + ORDER BY created_at DESC", + )?; + let rows = stmt.query_map(params![date], map_row)?; + rows.collect() +} + +pub fn list_all(conn: &Connection) -> Result> { + let mut stmt = conn.prepare( + "SELECT id, author, text_content, start_date, end_date, created_at + FROM announcements + ORDER BY start_date DESC, created_at DESC", + )?; + let rows = stmt.query_map([], map_row)?; + rows.collect() +} + +pub fn create( + conn: &Connection, + author: &str, + text_content: &str, + start_date: &str, + end_date: &str, +) -> Result { + conn.execute( + "INSERT INTO announcements (author, text_content, start_date, end_date) + VALUES (?1, ?2, ?3, ?4)", + params![author, text_content, start_date, end_date], + )?; + let id = conn.last_insert_rowid(); + get_by_id(conn, id)?.ok_or_else(|| { + rusqlite::Error::InvalidParameterName("insert succeeded but row not found".into()) + }) +} + +pub fn delete(conn: &Connection, id: i64) -> Result { + let n = conn.execute("DELETE FROM announcements WHERE id = ?1", params![id])?; + Ok(n > 0) +} + +fn map_row(row: &rusqlite::Row) -> rusqlite::Result { + Ok(Announcement { + id: row.get(0)?, + author: row.get(1)?, + text_content: row.get(2)?, + start_date: row.get(3)?, + end_date: row.get(4)?, + created_at: row.get(5)?, + }) +} + +fn get_by_id(conn: &Connection, id: i64) -> Result> { + let mut stmt = conn.prepare( + "SELECT id, author, text_content, start_date, end_date, created_at + FROM announcements WHERE id = ?1", + )?; + let mut rows = stmt.query_map(params![id], map_row)?; + match rows.next() { + Some(r) => Ok(Some(r?)), + None => Ok(None), + } +} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..ea526bb --- /dev/null +++ b/src/main.rs @@ -0,0 +1,36 @@ +mod api; +mod db; +mod management; + +use std::sync::Arc; +use tokio::sync::Mutex; + +#[tokio::main] +async fn main() { + dotenvy::dotenv().ok(); + + let db = Arc::new(Mutex::new( + db::open("announcements.db").expect("failed to open database"), + )); + + let api_addr = + std::env::var("API_LISTEN_ADDR").unwrap_or_else(|_| "127.0.0.1:3000".to_string()); + let management_addr = + std::env::var("MANAGEMENT_LISTEN_ADDR").unwrap_or_else(|_| "127.0.0.1:4000".to_string()); + + let addr1 = api_addr.clone(); + let addr2 = management_addr.clone(); + let db1 = db.clone(); + + let srv1 = tokio::spawn(async move { api::serve(&addr1, db1).await }); + let srv2 = tokio::spawn(async move { management::serve(&addr2, db).await }); + + let (res1, res2) = tokio::join!(srv1, srv2); + + if let Err(e) = res1 { + eprintln!("API server panicked: {e:?}"); + } + if let Err(e) = res2 { + eprintln!("Management server panicked: {e:?}"); + } +} diff --git a/src/management/mod.rs b/src/management/mod.rs new file mode 100644 index 0000000..5accff2 --- /dev/null +++ b/src/management/mod.rs @@ -0,0 +1,197 @@ +use std::sync::Arc; +use tokio::sync::Mutex; + +use axum::{ + extract::{Form, Path, State}, + http::{header, HeaderMap, StatusCode}, + response::IntoResponse, + routing::{get, post}, + Json, Router, +}; +use rusqlite::Connection; +use serde::Deserialize; + +use crate::db; + +type Db = Arc>; + +pub async fn serve(addr: &str, db: Db) { + let app = Router::new() + .route("/", get(management_page)) + .route("/api/announcements", get(list_announcements).post(create_announcement)) + .route("/api/announcements/:id/delete", post(delete_announcement)) + .with_state(db); + + let listener = tokio::net::TcpListener::bind(addr).await.unwrap(); + println!("Management server listening on {addr}"); + axum::serve(listener, app).await.unwrap(); +} + +// ── Auth ────────────────────────────────────────────────────────────────────── + +fn check_auth(headers: &HeaderMap) -> bool { + let expected_user = + std::env::var("MANAGEMENT_USERNAME").unwrap_or_else(|_| "admin".to_string()); + let expected_pass = + std::env::var("MANAGEMENT_PASSWORD").unwrap_or_else(|_| "admin".to_string()); + let expected = format!("Basic {}", base64_encode(&format!("{expected_user}:{expected_pass}"))); + + headers + .get(header::AUTHORIZATION) + .and_then(|v| v.to_str().ok()) + .is_some_and(|v| v == expected) +} + +fn unauthorized() -> Response { + ( + StatusCode::UNAUTHORIZED, + [(header::WWW_AUTHENTICATE, "Basic realm=\"Management\"")], + "Unauthorized", + ) + .into_response() +} + +use axum::response::Response; + +// ── Handlers ────────────────────────────────────────────────────────────────── + +async fn management_page(headers: HeaderMap, State(db): State) -> impl IntoResponse { + if !check_auth(&headers) { + return unauthorized(); + } + + let conn = db.lock().await; + let announcements = db::list_all(&conn).unwrap_or_default(); + drop(conn); + + let rows: String = announcements + .iter() + .map(|a| { + format!( + include_str!("../../templates/announcement_row.html"), + id = a.id, + author = escape_html(&a.author), + text = escape_html(&a.text_content), + start = a.start_date, + end = a.end_date, + ) + }) + .collect(); + + let html = format!( + include_str!("../../templates/management_page.html"), + rows = if announcements.is_empty() { + include_str!("../../templates/empty_table.html").to_string() + } else { + format!( + include_str!("../../templates/table_wrapper.html"), + rows = rows + ) + } + ); + + ([(header::CONTENT_TYPE, "text/html; charset=utf-8")], html).into_response() +} + +#[derive(Deserialize)] +struct CreateInput { + author: String, + text_content: String, + start_date: String, + end_date: String, +} + +async fn create_announcement( + headers: HeaderMap, + State(db): State, + Form(input): Form, +) -> impl IntoResponse { + if !check_auth(&headers) { + return unauthorized(); + } + + let conn = db.lock().await; + if let Err(e) = db::create(&conn, &input.author, &input.text_content, &input.start_date, &input.end_date) { + return ( + StatusCode::INTERNAL_SERVER_ERROR, + [("location", "/")], + format!("Failed to create: {e}"), + ) + .into_response(); + } + + (StatusCode::FOUND, [("location", "/")], "").into_response() +} + +async fn list_announcements( + headers: HeaderMap, + State(db): State, +) -> impl IntoResponse { + if !check_auth(&headers) { + return unauthorized(); + } + + let conn = db.lock().await; + match db::list_all(&conn) { + Ok(list) => (StatusCode::OK, Json(serde_json::json!(list))).into_response(), + Err(e) => ( + StatusCode::INTERNAL_SERVER_ERROR, + Json(serde_json::json!({ "error": e.to_string() })), + ) + .into_response(), + } +} + +async fn delete_announcement( + headers: HeaderMap, + State(db): State, + Path(id): Path, +) -> impl IntoResponse { + if !check_auth(&headers) { + return unauthorized(); + } + + let conn = db.lock().await; + db::delete(&conn, id).ok(); + + (StatusCode::FOUND, [("location", "/")], "").into_response() +} + +// ── Helpers ─────────────────────────────────────────────────────────────────── + +fn escape_html(s: &str) -> String { + s.replace('&', "&") + .replace('<', "<") + .replace('>', ">") + .replace('"', """) +} + +fn base64_encode(input: &str) -> String { + // minimal Base64 implementation to avoid extra dependencies + const CHARS: &[u8] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + let bytes = input.as_bytes(); + let mut out = String::new(); + + for chunk in bytes.chunks(3) { + let b0 = chunk[0] as u32; + let b1 = chunk.get(1).copied().unwrap_or(0) as u32; + let b2 = chunk.get(2).copied().unwrap_or(0) as u32; + let triple = (b0 << 16) | (b1 << 8) | b2; + + out.push(CHARS[((triple >> 18) & 0x3F) as usize] as char); + out.push(CHARS[((triple >> 12) & 0x3F) as usize] as char); + + if chunk.len() > 1 { + out.push(CHARS[((triple >> 6) & 0x3F) as usize] as char); + } else { + out.push('='); + } + if chunk.len() > 2 { + out.push(CHARS[(triple & 0x3F) as usize] as char); + } else { + out.push('='); + } + } + + out +} diff --git a/templates/announcement_row.html b/templates/announcement_row.html new file mode 100644 index 0000000..8a0cd09 --- /dev/null +++ b/templates/announcement_row.html @@ -0,0 +1,12 @@ + + {id} + {author} + {text} + {start} + {end} + +
+ +
+ + \ No newline at end of file diff --git a/templates/empty_table.html b/templates/empty_table.html new file mode 100644 index 0000000..3994c70 --- /dev/null +++ b/templates/empty_table.html @@ -0,0 +1 @@ +
No announcements yet.
\ No newline at end of file diff --git a/templates/management_page.html b/templates/management_page.html new file mode 100644 index 0000000..c826823 --- /dev/null +++ b/templates/management_page.html @@ -0,0 +1,52 @@ + + + + + + Announcement Manager + + + +

Announcement Manager

+ +

Create Announcement

+
+
+ + + + + +
+
+ +

Existing Announcements

+ {rows} + + diff --git a/templates/table_wrapper.html b/templates/table_wrapper.html new file mode 100644 index 0000000..d105ac8 --- /dev/null +++ b/templates/table_wrapper.html @@ -0,0 +1,4 @@ + + + {rows} +
IDAuthorTextStartEndActions
\ No newline at end of file