Compare commits
No commits in common. "master" and "old-master-2" have entirely different histories.
master
...
old-master
198 changed files with 11814 additions and 13721 deletions
2
.cargo/config.toml
Normal file
2
.cargo/config.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[registries.crates-io]
|
||||
protocol = "sparse"
|
|
@ -1,7 +0,0 @@
|
|||
[*]
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
|
||||
[Makefile]
|
||||
indent_size = 4
|
||||
indent_style = tab
|
7
.envrc
7
.envrc
|
@ -1 +1,6 @@
|
|||
export DATABASE_URL=sqlite://$(pwd)/test.db
|
||||
use flake
|
||||
|
||||
export DATABASE_URL=file:./dev.db
|
||||
|
||||
export PANORAMA_SRC=$PWD
|
||||
export DEVELOPMENT=true
|
18
.gitignore
vendored
18
.gitignore
vendored
|
@ -1,9 +1,13 @@
|
|||
node_modules
|
||||
dist
|
||||
target
|
||||
.DS_Store
|
||||
**/export/export.json
|
||||
test.db*
|
||||
.env
|
||||
.pijul
|
||||
.direnv
|
||||
/proto/generated
|
||||
.env
|
||||
/generated
|
||||
/result*
|
||||
.solid
|
||||
/typedoc
|
||||
|
||||
|
||||
# Added by cargo
|
||||
|
||||
/target
|
||||
|
|
|
@ -1 +1 @@
|
|||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
|
|
3
.vscode/extensions.json
vendored
3
.vscode/extensions.json
vendored
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
|
||||
}
|
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"[prisma]": {
|
||||
"editor.defaultFormatter": "Prisma.prisma"
|
||||
},
|
||||
"editor.formatOnSave": true
|
||||
}
|
18
.woodpecker.yml
Normal file
18
.woodpecker.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
pipeline:
|
||||
build:
|
||||
image: nixos/nix
|
||||
commands:
|
||||
- ./ci/build-docs.sh
|
||||
|
||||
deploy:
|
||||
image: alpine
|
||||
commands:
|
||||
- apk add rsync openssh
|
||||
- echo "$${SSH_SECRET_KEY}" > SSH_SECRET_KEY
|
||||
- chmod 600 SSH_SECRET_KEY
|
||||
- mkdir -p ~/.ssh
|
||||
- echo "mzhang.io ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBzBZ+QmM4EO3Fwc1ZcvWV2IY9VF04T0H9brorGj9Udp" >> ~/.ssh/known_hosts
|
||||
- rsync -azvrP -e "ssh -i SSH_SECRET_KEY" docs/book/ sourcehutBuilds@mzhang.io:/mnt/storage/svcdata/blog-public/panorama
|
||||
secrets: [SSH_SECRET_KEY]
|
||||
when:
|
||||
branch: master
|
5196
Cargo.lock
generated
5196
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
26
Cargo.toml
26
Cargo.toml
|
@ -1,13 +1,17 @@
|
|||
workspace.resolver = "2"
|
||||
workspace.members = ["ui/src-tauri"]
|
||||
[package]
|
||||
name = "panorama"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[profile.wasm-debug]
|
||||
inherits = "dev"
|
||||
panic = "abort"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[profile.wasm-release]
|
||||
inherits = "release"
|
||||
lto = true
|
||||
opt-level = 's'
|
||||
strip = true
|
||||
panic = "abort"
|
||||
[dependencies]
|
||||
anyhow = "1.0.72"
|
||||
bincode = "1.3.3"
|
||||
dirs = "5.0.1"
|
||||
once_cell = "1.18.0"
|
||||
redb = "1.0.5"
|
||||
serde = { version = "1.0.171", features = ["derive"] }
|
||||
serde_yaml = "0.9.24"
|
||||
toml = "0.7.6"
|
||||
uuid = { version = "1.4.1", features = ["v4", "v8", "fast-rng"] }
|
||||
|
|
660
LICENSE.md
Normal file
660
LICENSE.md
Normal file
|
@ -0,0 +1,660 @@
|
|||
### GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc.
|
||||
<https://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this
|
||||
license document, but changing it is not allowed.
|
||||
|
||||
### Preamble
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains
|
||||
free software for all its users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing
|
||||
under this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
### TERMS AND CONDITIONS
|
||||
|
||||
#### 0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds
|
||||
of works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of
|
||||
an exact copy. The resulting work is called a "modified version" of
|
||||
the earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user
|
||||
through a computer network, with no transfer of a copy, is not
|
||||
conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices" to
|
||||
the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
#### 1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work for
|
||||
making modifications to it. "Object code" means any non-source form of
|
||||
a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can
|
||||
regenerate automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same
|
||||
work.
|
||||
|
||||
#### 2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey,
|
||||
without conditions so long as your license otherwise remains in force.
|
||||
You may convey covered works to others for the sole purpose of having
|
||||
them make modifications exclusively for you, or provide you with
|
||||
facilities for running those works, provided that you comply with the
|
||||
terms of this License in conveying all material for which you do not
|
||||
control copyright. Those thus making or running the covered works for
|
||||
you must do so exclusively on your behalf, under your direction and
|
||||
control, on terms that prohibit them from making any copies of your
|
||||
copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the
|
||||
conditions stated below. Sublicensing is not allowed; section 10 makes
|
||||
it unnecessary.
|
||||
|
||||
#### 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such
|
||||
circumvention is effected by exercising rights under this License with
|
||||
respect to the covered work, and you disclaim any intention to limit
|
||||
operation or modification of the work as a means of enforcing, against
|
||||
the work's users, your or third parties' legal rights to forbid
|
||||
circumvention of technological measures.
|
||||
|
||||
#### 4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
#### 5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these
|
||||
conditions:
|
||||
|
||||
- a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
- b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under
|
||||
section 7. This requirement modifies the requirement in section 4
|
||||
to "keep intact all notices".
|
||||
- c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
- d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
#### 6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms of
|
||||
sections 4 and 5, provided that you also convey the machine-readable
|
||||
Corresponding Source under the terms of this License, in one of these
|
||||
ways:
|
||||
|
||||
- a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
- b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the Corresponding
|
||||
Source from a network server at no charge.
|
||||
- c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
- d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
- e) Convey the object code using peer-to-peer transmission,
|
||||
provided you inform other peers where the object code and
|
||||
Corresponding Source of the work are being offered to the general
|
||||
public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal,
|
||||
family, or household purposes, or (2) anything designed or sold for
|
||||
incorporation into a dwelling. In determining whether a product is a
|
||||
consumer product, doubtful cases shall be resolved in favor of
|
||||
coverage. For a particular product received by a particular user,
|
||||
"normally used" refers to a typical or common use of that class of
|
||||
product, regardless of the status of the particular user or of the way
|
||||
in which the particular user actually uses, or expects or is expected
|
||||
to use, the product. A product is a consumer product regardless of
|
||||
whether the product has substantial commercial, industrial or
|
||||
non-consumer uses, unless such uses represent the only significant
|
||||
mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to
|
||||
install and execute modified versions of a covered work in that User
|
||||
Product from a modified version of its Corresponding Source. The
|
||||
information must suffice to ensure that the continued functioning of
|
||||
the modified object code is in no case prevented or interfered with
|
||||
solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or
|
||||
updates for a work that has been modified or installed by the
|
||||
recipient, or for the User Product in which it has been modified or
|
||||
installed. Access to a network may be denied when the modification
|
||||
itself materially and adversely affects the operation of the network
|
||||
or violates the rules and protocols for communication across the
|
||||
network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
#### 7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders
|
||||
of that material) supplement the terms of this License with terms:
|
||||
|
||||
- a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
- b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
- c) Prohibiting misrepresentation of the origin of that material,
|
||||
or requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
- d) Limiting the use for publicity purposes of names of licensors
|
||||
or authors of the material; or
|
||||
- e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
- f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions
|
||||
of it) with contractual assumptions of liability to the recipient,
|
||||
for any liability that these contractual assumptions directly
|
||||
impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions; the
|
||||
above requirements apply either way.
|
||||
|
||||
#### 8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license
|
||||
from a particular copyright holder is reinstated (a) provisionally,
|
||||
unless and until the copyright holder explicitly and finally
|
||||
terminates your license, and (b) permanently, if the copyright holder
|
||||
fails to notify you of the violation by some reasonable means prior to
|
||||
60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
#### 9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or run
|
||||
a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
#### 10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
#### 11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims owned
|
||||
or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within the
|
||||
scope of its coverage, prohibits the exercise of, or is conditioned on
|
||||
the non-exercise of one or more of the rights that are specifically
|
||||
granted under this License. You may not convey a covered work if you
|
||||
are a party to an arrangement with a third party that is in the
|
||||
business of distributing software, under which you make payment to the
|
||||
third party based on the extent of your activity of conveying the
|
||||
work, and under which the third party grants, to any of the parties
|
||||
who would receive the covered work from you, a discriminatory patent
|
||||
license (a) in connection with copies of the covered work conveyed by
|
||||
you (or copies made from those copies), or (b) primarily for and in
|
||||
connection with specific products or compilations that contain the
|
||||
covered work, unless you entered into that arrangement, or that patent
|
||||
license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
#### 12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under
|
||||
this License and any other pertinent obligations, then as a
|
||||
consequence you may not convey it at all. For example, if you agree to
|
||||
terms that obligate you to collect a royalty for further conveying
|
||||
from those to whom you convey the Program, the only way you could
|
||||
satisfy both those terms and this License would be to refrain entirely
|
||||
from conveying the Program.
|
||||
|
||||
#### 13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your
|
||||
version supports such interaction) an opportunity to receive the
|
||||
Corresponding Source of your version by providing access to the
|
||||
Corresponding Source from a network server at no charge, through some
|
||||
standard or customary means of facilitating copying of software. This
|
||||
Corresponding Source shall include the Corresponding Source for any
|
||||
work covered by version 3 of the GNU General Public License that is
|
||||
incorporated pursuant to the following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
#### 14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Affero General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever
|
||||
published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions
|
||||
of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
#### 15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
|
||||
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
|
||||
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
|
||||
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
||||
CORRECTION.
|
||||
|
||||
#### 16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
|
||||
CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
|
||||
ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
|
||||
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
|
||||
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
|
||||
TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
|
||||
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
#### 17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
### How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these
|
||||
terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to
|
||||
attach them to the start of each source file to most effectively state
|
||||
the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper
|
||||
mail.
|
||||
|
||||
If your software can interact with users remotely through a computer
|
||||
network, you should also make sure that it provides a way for users to
|
||||
get its source. For example, if your program is a web application, its
|
||||
interface could display a "Source" link that leads users to an archive
|
||||
of the code. There are many ways you could offer source, and different
|
||||
solutions will be better for different programs; see section 13 for
|
||||
the specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. For more information on this, and how to apply and follow
|
||||
the GNU AGPL, see <https://www.gnu.org/licenses/>.
|
28
Makefile
28
Makefile
|
@ -1,13 +1,19 @@
|
|||
deploy-docs:
|
||||
(cd docs; BASE_URL=/panorama bun run build) || true
|
||||
rsync -azrP docs/dist/ root@veil:/home/blogDeploy/public/panorama
|
||||
.PHONY: all clean doc-watch doc-dependencies
|
||||
|
||||
JOURNAL_SOURCES := $(shell find . apps/journal -name "*.rs" -not -path "./target/*")
|
||||
journal: $(JOURNAL_SOURCES)
|
||||
cargo build \
|
||||
--profile=wasm-debug \
|
||||
-p panorama-journal \
|
||||
--target=wasm32-unknown-unknown
|
||||
all:
|
||||
|
||||
test-install-apps: journal
|
||||
cargo test -p panorama-core -- tests::test_install_apps
|
||||
doc-watch:
|
||||
mdbook serve docs --port 8100 --hostname 0.0.0.0
|
||||
|
||||
doc-dependencies: docs/src/generated/spec/index.md
|
||||
|
||||
generated/spec/meta.schema.json: spec/meta.schema.yml
|
||||
mkdir -p generated/spec
|
||||
yq -o=json . $< > $@
|
||||
|
||||
docs/src/generated/spec/index.md: generated/spec/meta.schema.json
|
||||
mkdir -p docs/src/generated/spec
|
||||
node spec/generate.js
|
||||
|
||||
clean:
|
||||
rm -rf generated
|
||||
|
|
12
README.md
12
README.md
|
@ -1,11 +1,7 @@
|
|||
panorama
|
||||
========
|
||||
# Tauri + React + Typescript
|
||||
|
||||
Personal information manager.
|
||||
This template should help get you started developing with Tauri, React and Typescript in Vite.
|
||||
|
||||
Contact
|
||||
-------
|
||||
## Recommended IDE Setup
|
||||
|
||||
Author: Michael Zhang
|
||||
|
||||
License: GPL-3.0-only
|
||||
- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
name: panorama/calendar
|
||||
|
||||
depends:
|
||||
- name: panorama
|
||||
|
||||
# code: dist/index.js
|
20
apps/calendar/meta.yml
Normal file
20
apps/calendar/meta.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: calendar
|
||||
version: 0.1.0-rc1
|
||||
|
||||
namespaces:
|
||||
panorama.calendar:
|
||||
event-start-timestamp:
|
||||
description: The exact timestamp the event starts
|
||||
type: DateTimeTz
|
||||
|
||||
event-end-timestamp:
|
||||
description: The exact timestamp the event ends
|
||||
type: DateTimeTz
|
||||
|
||||
event-location:
|
||||
description:
|
||||
type: integer
|
||||
|
||||
event-location:
|
||||
description:
|
||||
type: integer
|
175
apps/codetrack/.gitignore
vendored
175
apps/codetrack/.gitignore
vendored
|
@ -1,175 +0,0 @@
|
|||
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
|
||||
|
||||
# Logs
|
||||
|
||||
logs
|
||||
_.log
|
||||
npm-debug.log_
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# Caches
|
||||
|
||||
.cache
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
|
||||
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
|
||||
|
||||
# Runtime data
|
||||
|
||||
pids
|
||||
_.pid
|
||||
_.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Snowpack dependency directory (https://snowpack.dev/)
|
||||
|
||||
web_modules/
|
||||
|
||||
# TypeScript cache
|
||||
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
|
||||
.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variable files
|
||||
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
|
||||
.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
|
||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||
|
||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
||||
|
||||
# public
|
||||
|
||||
# vuepress build output
|
||||
|
||||
.vuepress/dist
|
||||
|
||||
# vuepress v2.x temp and cache directory
|
||||
|
||||
.temp
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
|
||||
.docusaurus
|
||||
|
||||
# Serverless directories
|
||||
|
||||
.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
# IntelliJ based IDEs
|
||||
.idea
|
||||
|
||||
# Finder (MacOS) folder config
|
||||
.DS_Store
|
|
@ -1,15 +0,0 @@
|
|||
# codetrack
|
||||
|
||||
To install dependencies:
|
||||
|
||||
```bash
|
||||
bun install
|
||||
```
|
||||
|
||||
To run:
|
||||
|
||||
```bash
|
||||
bun run index.ts
|
||||
```
|
||||
|
||||
This project was created using `bun init` in bun v1.0.25. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
|
Binary file not shown.
|
@ -1,27 +0,0 @@
|
|||
import type { Context } from "koa";
|
||||
import type {} from "@koa/bodyparser";
|
||||
|
||||
export async function createHeartbeats(ctx: Context) {
|
||||
const results = [];
|
||||
for (const heartbeat of ctx.request.body) {
|
||||
console.log("heartbeat", heartbeat);
|
||||
const time = new Date(heartbeat.time * 1000.0);
|
||||
const resp = await fetch("http://localhost:3000/node", {
|
||||
method: "PUT",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({
|
||||
attributes: [
|
||||
["panorama::time/start", time.toISOString()],
|
||||
["panorama/codetrack::project", heartbeat.project],
|
||||
],
|
||||
}),
|
||||
});
|
||||
const data = await resp.json();
|
||||
results.push({
|
||||
id: data.id,
|
||||
});
|
||||
}
|
||||
ctx.status = 400;
|
||||
// console.log("results", results);
|
||||
ctx.body = {};
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
name: panorama/codetrack
|
||||
|
||||
depends:
|
||||
- name: panorama
|
||||
|
||||
code: dist/index.js
|
||||
|
||||
attributes:
|
||||
- name: heartbeat
|
||||
type: interface
|
||||
requires:
|
||||
- panorama::time/start
|
||||
|
||||
- name: project
|
||||
type: string
|
||||
|
||||
endpoints:
|
||||
- route: /api/v1/users/current/heartbeats.bulk
|
||||
handler: createHeartbeats
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
"name": "codetrack",
|
||||
"module": "index.ts",
|
||||
"type": "module",
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest",
|
||||
"@types/koa": "^2.15.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@koa/bodyparser": "^5.1.1"
|
||||
}
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"lib": ["ESNext"],
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"moduleDetection": "force",
|
||||
"jsx": "react-jsx",
|
||||
"allowJs": true,
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
"noEmit": true,
|
||||
|
||||
/* Linting */
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
}
|
||||
}
|
1
apps/journal/.gitignore
vendored
1
apps/journal/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
index.js
|
Binary file not shown.
|
@ -1,41 +0,0 @@
|
|||
import type { Context } from "koa";
|
||||
import { formatDate } from "date-fns";
|
||||
import { uuidv7 } from "uuidv7";
|
||||
|
||||
export async function today(ctx: Context) {
|
||||
const date = new Date();
|
||||
const day = formatDate(date, "P");
|
||||
|
||||
const resp = await fetch("http://localhost:3000/node/sql", {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({
|
||||
query: `
|
||||
select * from node_has_attribute as na
|
||||
join attribute as a on na.attrName = a.name
|
||||
where a.name = 'day' and na.string = '${day}';
|
||||
`,
|
||||
parameters: [],
|
||||
}),
|
||||
});
|
||||
|
||||
const { rows } = await resp.json();
|
||||
if (rows.length === 0) {
|
||||
const id = uuidv7();
|
||||
const resp = await fetch("http://localhost:3000/node/sql", {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({
|
||||
query: `
|
||||
begin transaction;
|
||||
insert into node (id) values (?);
|
||||
end transaction;
|
||||
`,
|
||||
parameters: [id],
|
||||
}),
|
||||
});
|
||||
const data = await resp.json();
|
||||
console.log("Result", data);
|
||||
}
|
||||
ctx.body = {};
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
name: panorama/journal
|
||||
code: index.js
|
||||
|
||||
attributes:
|
||||
- name: day
|
||||
type: Option<String>
|
||||
|
||||
endpoints:
|
||||
- route: /today
|
||||
handler: today
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"date-fns": "^3.6.0",
|
||||
"koa": "^2.15.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/koa": "^2.15.0"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
name: panorama
|
||||
|
||||
attributes:
|
||||
- name: time/start
|
||||
type: datetime
|
||||
- name: time/end
|
||||
type: datetime
|
18
biome.json
18
biome.json
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json",
|
||||
"organizeImports": {
|
||||
"enabled": true
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"indentWidth": 2,
|
||||
"indentStyle": "space",
|
||||
"lineWidth": 80
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
"rules": {
|
||||
"recommended": true
|
||||
}
|
||||
}
|
||||
}
|
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
4
ci/build-docs.sh
Executable file
4
ci/build-docs.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell -i bash -p mdbook
|
||||
|
||||
mdbook build docs
|
23
docs/.gitignore
vendored
23
docs/.gitignore
vendored
|
@ -1,21 +1,2 @@
|
|||
# build output
|
||||
dist/
|
||||
# generated types
|
||||
.astro/
|
||||
|
||||
# dependencies
|
||||
node_modules/
|
||||
|
||||
# logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
|
||||
# environment variables
|
||||
.env
|
||||
.env.production
|
||||
|
||||
# macOS-specific files
|
||||
.DS_Store
|
||||
book
|
||||
generated
|
||||
|
|
4
docs/.vscode/extensions.json
vendored
4
docs/.vscode/extensions.json
vendored
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"recommendations": ["astro-build.astro-vscode"],
|
||||
"unwantedRecommendations": []
|
||||
}
|
11
docs/.vscode/launch.json
vendored
11
docs/.vscode/launch.json
vendored
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"command": "./node_modules/.bin/astro dev",
|
||||
"name": "Development server",
|
||||
"request": "launch",
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,37 +0,0 @@
|
|||
import { defineConfig } from "astro/config";
|
||||
import starlight from "@astrojs/starlight";
|
||||
import rehypeKatex from "rehype-katex";
|
||||
import remarkMath from "remark-math";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
base: process.env.BASE_URL ?? "/",
|
||||
integrations: [
|
||||
starlight({
|
||||
title: "Panorama",
|
||||
social: {
|
||||
github: "https://git.mzhang.io/michael/panorama",
|
||||
},
|
||||
sidebar: [
|
||||
{ label: "The panorama dream", link: "/dream" },
|
||||
{
|
||||
label: "High Level Design",
|
||||
autogenerate: { directory: "high-level-design" },
|
||||
},
|
||||
{
|
||||
label: "Technical Docs",
|
||||
autogenerate: { directory: "technical-docs" },
|
||||
},
|
||||
{
|
||||
label: "Protocols",
|
||||
autogenerate: { directory: "protocols" },
|
||||
},
|
||||
],
|
||||
customCss: ["./node_modules/katex/dist/katex.min.css"],
|
||||
}),
|
||||
],
|
||||
markdown: {
|
||||
remarkPlugins: [remarkMath],
|
||||
rehypePlugins: [rehypeKatex],
|
||||
},
|
||||
});
|
13
docs/book.toml
Normal file
13
docs/book.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
[book]
|
||||
authors = ["Michael Zhang"]
|
||||
language = "en"
|
||||
multilingual = false
|
||||
src = "src"
|
||||
title = "panorama documentation"
|
||||
|
||||
[output.html]
|
||||
additional-css = ["custom.css"]
|
||||
mathjax-support = true
|
||||
|
||||
# [preprocessor.tera]
|
||||
# command = "docs/make-then-tera.sh"
|
BIN
docs/bun.lockb
BIN
docs/bun.lockb
Binary file not shown.
3
docs/custom.css
Normal file
3
docs/custom.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
main table {
|
||||
margin: unset !important;
|
||||
}
|
8
docs/make-then-tera.sh
Executable file
8
docs/make-then-tera.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
file=$(mktemp)
|
||||
cp /dev/stdin $file
|
||||
|
||||
make doc-dependencies >/dev/stderr
|
||||
mdbook-tera $@ < $file
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
"name": "docs",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro check && astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.7.0",
|
||||
"@astrojs/starlight": "^0.24.5",
|
||||
"astro": "^4.10.2",
|
||||
"katex": "^0.16.10",
|
||||
"rehype-katex": "^7.0.0",
|
||||
"remark-math": "^6.0.0",
|
||||
"sharp": "^0.32.5",
|
||||
"typescript": "^5.5.2"
|
||||
}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" d="M81 36 64 0 47 36l-1 2-9-10a6 6 0 0 0-9 9l10 10h-2L0 64l36 17h2L28 91a6 6 0 1 0 9 9l9-10 1 2 17 36 17-36v-2l9 10a6 6 0 1 0 9-9l-9-9 2-1 36-17-36-17-2-1 9-9a6 6 0 1 0-9-9l-9 10v-2Zm-17 2-2 5c-4 8-11 15-19 19l-5 2 5 2c8 4 15 11 19 19l2 5 2-5c4-8 11-15 19-19l5-2-5-2c-8-4-15-11-19-19l-2-5Z" clip-rule="evenodd"/><path d="M118 19a6 6 0 0 0-9-9l-3 3a6 6 0 1 0 9 9l3-3Zm-96 4c-2 2-6 2-9 0l-3-3a6 6 0 1 1 9-9l3 3c3 2 3 6 0 9Zm0 82c-2-2-6-2-9 0l-3 3a6 6 0 1 0 9 9l3-3c3-2 3-6 0-9Zm96 4a6 6 0 0 1-9 9l-3-3a6 6 0 1 1 9-9l3 3Z"/><style>path{fill:#000}@media (prefers-color-scheme:dark){path{fill:#fff}}</style></svg>
|
Before Width: | Height: | Size: 696 B |
21
docs/src/SUMMARY.md
Normal file
21
docs/src/SUMMARY.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
- [Intro](./index.md)
|
||||
|
||||
# Bundled Apps
|
||||
|
||||
- [Sync](./app/sync.md)
|
||||
|
||||
# App Developers
|
||||
|
||||
- [App API](./dev/api.md)
|
||||
|
||||
# Core Library Developers
|
||||
|
||||
- [Library API Reference](./lib/api_reference.md)
|
||||
|
||||
# Theory / Notes
|
||||
|
||||
- [RPC Protocol](./notes/rpc.md)
|
||||
- [Package Ecosystem](./notes/packages.md)
|
||||
- [Types](./notes/types.md)
|
||||
- [Data Integrity](./notes/integrity.md)
|
||||
- [Sled Keyspace](./notes/sledkeys.md)
|
7
docs/src/app/journal.md
Normal file
7
docs/src/app/journal.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Journal
|
||||
|
||||
Note-taking app.
|
||||
|
||||
## Window
|
||||
|
||||
The default window pulls up a view with
|
3
docs/src/app/sync.md
Normal file
3
docs/src/app/sync.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Sync
|
||||
|
||||
This app synchronizes nodes across devices.
|
Binary file not shown.
Before Width: | Height: | Size: 96 KiB |
|
@ -1,6 +0,0 @@
|
|||
import { defineCollection } from "astro:content";
|
||||
import { docsSchema } from "@astrojs/starlight/schema";
|
||||
|
||||
export const collections = {
|
||||
docs: defineCollection({ schema: docsSchema() }),
|
||||
};
|
|
@ -1,71 +0,0 @@
|
|||
---
|
||||
title: The panorama dream
|
||||
---
|
||||
|
||||
In the ideal world, you're reading this via panorama right now.
|
||||
|
||||
The panorama dream is to have an "everything" app that is fully managed by the user.
|
||||
This page describes the vision for the app.
|
||||
|
||||
Almost everything on this list is something that I self host, or want to self
|
||||
host, but hosts its own database separately. I want to unify the data source in
|
||||
a very flexible way so that it can be shared among apps.
|
||||
|
||||
This app takes inspiration from many similar apps, such as Anytype, Logseq, Notion, etc.
|
||||
|
||||
## Features I want
|
||||
|
||||
- Graph view
|
||||
- Instantly share/publish anything
|
||||
- Full text+OCR search
|
||||
- IFTTT workflows
|
||||
- Notifications
|
||||
- Multiuser
|
||||
- Google docs like interface for docs / typst
|
||||
|
||||
## Development Principles
|
||||
|
||||
These are the goals for panorama development.
|
||||
|
||||
- **Local first.** Everything is first committed to a local database.
|
||||
- **Keyboard friendly.**
|
||||
- **Gradual adoption.**
|
||||
|
||||
## Custom Apps List
|
||||
|
||||
- File Backup
|
||||
- Object storage
|
||||
- Archivebox like system, bookmarking
|
||||
- Journal
|
||||
- Block-based editor
|
||||
- Embed any node type into journal
|
||||
- Food
|
||||
- Recipe tracker
|
||||
- Grocery list (adds to my todo list)
|
||||
- Meal planner
|
||||
- Food blogging
|
||||
- Health+Fitness
|
||||
- Running progress (incl. saving GPS waypoints)
|
||||
- Workout log for various workouts
|
||||
- Weight tracking
|
||||
- Connect to smartwatch?
|
||||
- Pictures
|
||||
- Face recognition
|
||||
- Map view
|
||||
- Coding
|
||||
- Code tracking like Wakatime
|
||||
- Git forge???
|
||||
- Calendar
|
||||
- Calendly-like appointment booking system
|
||||
- Social
|
||||
- Store people into people app
|
||||
- Email+matrix chat
|
||||
- Video conferencing?
|
||||
- Feed readers / RSS
|
||||
- Media
|
||||
- Music and video hosting / streaming i.e Navidrome
|
||||
- Money tracking
|
||||
- Education
|
||||
- Anki flashcards
|
||||
- Canvas???
|
||||
- Dashboards
|
|
@ -1,11 +0,0 @@
|
|||
---
|
||||
title: Attributes
|
||||
---
|
||||
|
||||
The core idea behind panorama is that apps can choose to define attributes, which you can think of as slots.
|
||||
|
||||
The slots have some particular type, which can be filled with some node.
|
||||
|
||||
:::caution
|
||||
The absence of an attribute is different from the existence of the $\textsf{None}$ value.
|
||||
:::
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
title: Cryptography
|
||||
---
|
||||
|
||||
lol
|
|
@ -1,30 +0,0 @@
|
|||
---
|
||||
title: Device
|
||||
---
|
||||
|
||||
The panorama network keeps track of what devices join and leave the network.
|
||||
|
||||
Each device has certain attributes:
|
||||
|
||||
```ts
|
||||
interface DeviceConfig {
|
||||
// Not used for anything important, just for displaying an icon if needed
|
||||
formFactor: "desktop" | "server" | "laptop" | "phone" | "tablet" | string;
|
||||
|
||||
// A string that represents a duration of time. If it has been longer than
|
||||
// this amount of time since last contacting this device, consider it to have
|
||||
// gone offline
|
||||
heartbeatDuration: string;
|
||||
|
||||
// Whether or not to schedule services to this device
|
||||
canRunServices: boolean;
|
||||
|
||||
// Whether or not this device should be treated as a file store
|
||||
// (recommended to be off for phones)
|
||||
canStoreFiles: boolean;
|
||||
}
|
||||
```
|
||||
|
||||
Each device keeps track of each other device, with a merkle tree of signatures.
|
||||
|
||||
Devices have their own keypairs. TODO: See how matrix does cross-signing
|
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
title: Indexing
|
||||
---
|
||||
|
||||
There are several types of indexes in panorama.
|
||||
Some are the database kind that updates immediately.
|
||||
Others are the search kind that updates asynchronously.
|
||||
|
||||
Custom app authors can specify how their attributes should be indexed.
|
||||
Then, whenever any node has that particular attribute touched, a hook is run.
|
||||
|
||||
## Implementation
|
||||
|
||||
In the initial version of panorama, the daemon is thought of as having exclusive
|
||||
control over the database. It should not be run as multiple copies of itself either.
|
||||
|
||||
This way, the daemon can separately control indexes if it wishes, allowing it to
|
||||
call custom functions for indexing.
|
|
@ -1,21 +0,0 @@
|
|||
---
|
||||
title: Nodes
|
||||
---
|
||||
|
||||
Everything is organized into nodes.
|
||||
|
||||
Each app (journal, mail, etc.) creates nodes to represent their information.
|
||||
These nodes are linked to each other through attributes.
|
||||
|
||||
When retrieving its contents, a closure-like query is conducted and all the
|
||||
nodes reachable through its attributes are returned.
|
||||
|
||||
Think of a node as being represented like this:
|
||||
|
||||
```ts
|
||||
interface Node {
|
||||
id: string;
|
||||
type: string;
|
||||
attributes: string[];
|
||||
}
|
||||
```
|
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
title: Onboarding
|
||||
---
|
||||
|
||||
## Creating a new database
|
||||
|
||||
1. Download the software
|
||||
2. It should automatically boot into a new database
|
||||
- Automatically connect to the hosted panorama bridge service
|
||||
3. Give the user the option to log into an existing database, and then allow them to merge
|
||||
|
||||
## Adding another device
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
title: Permissions
|
||||
---
|
||||
|
||||
## Goals
|
||||
|
||||
- Apps should probably not be allowed to read attributes they didn't explicitly request access to
|
||||
- (there should be an option "Unless they created the node")
|
||||
|
||||
## Design
|
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: Design Principles
|
||||
---
|
||||
|
||||
## Architecture
|
||||
|
||||
- **Never use fully-qualified names starting from domain (i.e `com.example.package`).**
|
||||
This makes it so migrating domains / package names becomes very hard.
|
||||
|
||||
## Data governance
|
||||
|
||||
- **Offline first, full control to the user.**
|
||||
Synchronization is an important feature but must be built as a separate thing.
|
||||
This also means that it should be possible for some devices to stay offline for long periods of time.
|
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
title: Sync
|
||||
---
|
||||
|
||||
:::caution
|
||||
This is documentation for a feature that is in development.
|
||||
|
||||
Almost none of this is implemented and most of it will probably change in the future.
|
||||
:::
|
||||
|
||||
## Node-level sync
|
||||
|
||||
## Attribute-level sync
|
||||
|
||||
## Index-level sync
|
|
@ -1,72 +0,0 @@
|
|||
---
|
||||
title: Types
|
||||
---
|
||||
|
||||
Types exist to ensure that apps are treating data properly.
|
||||
|
||||
## Formal definition
|
||||
|
||||
An attribute's type can be one of the following:
|
||||
|
||||
$\tau :\equiv$
|
||||
|
||||
- $c$ (constant)
|
||||
- $\alpha$ (type variable)
|
||||
- $\mu \alpha . \tau$ (inductive type)
|
||||
- $( \ell_k : \tau_k )_k$ (record type)
|
||||
- $\{ \ell_k : \tau_k \}_k$ (sum type)
|
||||
- $\#n$ (singleton type)
|
||||
|
||||
Constants may be node references, unit, unsigned/signed integers, decimal,
|
||||
strings, booleans, instant (or timezone-aware timestamp), or URL
|
||||
|
||||
It is possible in the future that node references are also made using URLs, but
|
||||
the URL format will need to be decided upon by then.
|
||||
|
||||
## Notes
|
||||
|
||||
- Nodes don't have types; only attributes do.
|
||||
- All attributes must belong to _closed_ types.
|
||||
This means type variables cannot exist at the top-level.
|
||||
- When shown in the panorama UI, the constant type will not be shown as a separate type.
|
||||
Instead the actual type itself will be inlined.
|
||||
- The type registry doesn't canonically exist in the database (it may exist in the form of system logs).
|
||||
Instead, apps register their types on boot.
|
||||
Everything is known to the panorama daemon after app initialization.
|
||||
- The following constant types have their fields embedded directly into the node table:
|
||||
- Number (integer, bigdecimal), string, boolean: `value`
|
||||
- Sum: `label` (which variant is used?)
|
||||
- Record types are essentially a collection of forced attributes.
|
||||
A node with a record type _must_ contain every field listed in the labels of the record type.
|
||||
- The panorama type system is _structurally_ typed.
|
||||
#TODO Maybe add some convenient way of introducing ways to distinguish types apart?
|
||||
|
||||
### Convenient types
|
||||
|
||||
- $\textsf{Optional}(\tau) :\equiv \{ \texttt{'none} : () , \texttt{'some} : \tau \}$ \
|
||||
The optional type.
|
||||
|
||||
### What is the point of a singleton type?
|
||||
|
||||
Singleton types only consist of a node ID.
|
||||
The point of this is so apps can create types that are forced to have exactly a single node.
|
||||
|
||||
:::note
|
||||
Apps with dashboards (mail) may create a type that represents the "entrypoint" into their application.
|
||||
The process of creating it would look like this:
|
||||
|
||||
+ Upon app registration, I declare that I want a singleton type to be registered as `panorama-mail/entry`.
|
||||
+ A node id will be assigned, if it doesn't already exist.
|
||||
+ The application is returned the node ID.
|
||||
+ The application can then register links to that node ID, and it can register a handler.
|
||||
:::
|
||||
|
||||
When an app is registered, its types are parsed and registered into the database.
|
||||
At the time of writing, if the node ID it refers to has already been found in the database, the type of the node will be checked against the given type.
|
||||
If it doesn't match #TODO
|
||||
|
||||
## Attributes
|
||||
|
||||
Nodes contain attributes.
|
||||
An attribute is a link to another node.
|
||||
Attributes are typed, and the node it's linked to must have that type.
|
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: Welcome to Panorama
|
||||
description: Get started building your docs site with Starlight.
|
||||
template: splash
|
||||
hero:
|
||||
tagline: I love scope creep...
|
||||
image:
|
||||
file: ../../assets/houston.webp
|
||||
actions:
|
||||
- text: Read the docs
|
||||
link: ./dream
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
---
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
title: Client-Bridge Protocols
|
||||
---
|
||||
|
||||
A **bridge** is just a way of connecting two devices.
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: Client-Client Protocols
|
||||
---
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
---
|
||||
title: Custom app API
|
||||
---
|
||||
|
||||
## Registration
|
||||
|
||||
The following types of things can be registered by the app:
|
||||
|
||||
- Named types
|
||||
- Hooks (described below)
|
||||
- Background services
|
||||
- Frontend
|
||||
|
||||
## Hooks
|
||||
|
||||
Custom apps are allowed to hook into the following events:
|
||||
|
||||
- `install`: When the app is first being installed.
|
||||
|
||||
- `insert`, `update`, `delete`: CRUD hooks for nodes with a type that the app manages
|
||||
|
||||
- `attr-new`, `attr-update`, `attr-remove`: CRUD hooks for attributes with types that the app manages
|
||||
|
||||
Each hook is handled by a function, which must return with a success. If this
|
||||
doesn't happen, the daemon will re-call the function with exponential backoff for a specific number of retries.
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
title: Custom app sandboxing
|
||||
---
|
||||
|
||||
:::caution
|
||||
For the initial releases of panorama, I am not planning on including _any_
|
||||
sandboxing whatsoever. The development overhead will be far too great to warrant supporting it.
|
||||
|
||||
The entire app _will_ be rewritten before the public alpha release, which will
|
||||
include proper custom app sandboxing. This page lists some ideas.
|
||||
:::
|
||||
|
||||
Custom apps are made up of two parts:
|
||||
|
||||
- The backend, which talks to the database
|
||||
- The frontend, which talks to the user
|
||||
|
||||
I say "the" frontend, but there could possibly be multiple frontends. (TUI, headless, etc.)
|
||||
Each part needs to be sandboxed individually.
|
||||
|
||||
## Backend sandboxing
|
||||
|
||||
This will be done via a WASM runtime. The custom app's backend software will
|
||||
|
||||
## Frontend sandboxing
|
||||
|
||||
lmao not sure if this is possible with a web-based host at all, looking into flutter...
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
title: Formal verification
|
||||
---
|
||||
|
||||
lol
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
title: Loading process
|
||||
---
|
||||
|
||||
The goal of panorama is to start up as quickly as possible.
|
||||
The following tasks need to be performed on start:
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
title: Notifications
|
||||
---
|
||||
|
||||
https://unifiedpush.org/
|
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
title: Protected namespaces
|
||||
---
|
||||
|
||||
There's some protected namespace of nodes that's used to keep track of the
|
||||
actual database functionality. For example:
|
||||
|
||||
- List of installed apps
|
||||
- List of currently registered types (maybe not keep this?)
|
||||
- System log
|
1
docs/src/dev/api.md
Normal file
1
docs/src/dev/api.md
Normal file
|
@ -0,0 +1 @@
|
|||
# App API
|
7
docs/src/dev/disk_format.md
Normal file
7
docs/src/dev/disk_format.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Disk Format
|
||||
|
||||
Must include a file called `panorama_version.json` that details information about what disk file format is used. TODO: Schema
|
||||
|
||||
# Format v0
|
||||
|
||||
Includes a sled database.
|
16
docs/src/dev/permissions.md
Normal file
16
docs/src/dev/permissions.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Permission Model
|
||||
|
||||
Permissions are:
|
||||
|
||||
- compose
|
||||
- This is a read/write/create permission for nodes created by the current app.
|
||||
- NOTE: Unlike most operating systems, this permission does _not_ grant the
|
||||
ability to create new nodes or write to nodes not created by the current app.
|
||||
See `overwrite` below for that.
|
||||
- overread
|
||||
- This grants the ability to query for nodes outside of ones created by the
|
||||
current app.
|
||||
- overwrite
|
||||
- This grants the ability to write into nodes outside of ones created by the
|
||||
current app.
|
||||
- (is it even worth it to eventually move this to being script-dependent?)
|
2
docs/src/env.d.ts
vendored
2
docs/src/env.d.ts
vendored
|
@ -1,2 +0,0 @@
|
|||
/// <reference path="../.astro/types.d.ts" />
|
||||
/// <reference types="astro/client" />
|
193
docs/src/index.md
Normal file
193
docs/src/index.md
Normal file
|
@ -0,0 +1,193 @@
|
|||
- CLI API
|
||||
|
||||
- `panorama install` : Install a script into the database
|
||||
- `panorama show` : Show the information about a particular node, by ID
|
||||
|
||||
- Database of nodes + code
|
||||
|
||||
- Code
|
||||
|
||||
- Code is all interface-based. Interface implementations give specific ways
|
||||
behaviors are implemented
|
||||
|
||||
- Standard interfaces:
|
||||
|
||||
- Indexed
|
||||
|
||||
- Node definition
|
||||
|
||||
```typescript
|
||||
type Node = {
|
||||
metadata: KVStore,
|
||||
interfaces: Set<InterfaceURI>,
|
||||
edges: Set<(EdgeType, Edge)>,
|
||||
}
|
||||
```
|
||||
|
||||
- Within the metadata kv store, keys are namespaced, according to the
|
||||
application name. Application names must be registered ahead of time
|
||||
|
||||
- Nodes implement interfaces, the code of which is fetched from the internet
|
||||
and validated
|
||||
|
||||
- Nodes are namespaced, although namespacing isn't the primary hierarchy
|
||||
protocol.
|
||||
|
||||
- This is needed because the database itself has a privileged namespace
|
||||
- The privileged namespace is for keeping track of database state, for
|
||||
example which scripts are trusted
|
||||
|
||||
- Hooks:
|
||||
|
||||
- Hooks consist of a (pattern, type, callback). The pattern is a metadata
|
||||
matcher, that determines if the node should be executed upon. The
|
||||
callback is Javascript code executed in the app's execution context.
|
||||
|
||||
- Type determines what kind of callback to call.
|
||||
|
||||
- Ensures callbacks: these make sure that a node has
|
||||
|
||||
- Need to somehow figure out how to represent partially executed
|
||||
processes? i.e if a video indexer needs to take time to go through the
|
||||
video, the nodes should be available and committed, but somehow
|
||||
indicate that one of its processes isn't done
|
||||
- Maybe this should be a flag on the `NodeMeta` table
|
||||
|
||||
- Database service:
|
||||
|
||||
- IFTTT Events
|
||||
|
||||
- Local vs. distributed IFTTT events?
|
||||
- Local means that ur particular device is repsonsible for running it
|
||||
- Distributed means any device can consume the event???
|
||||
- is this even a good idea? Maybe just have one dedicated worker
|
||||
device. For example, may not want to run certain automation tasks
|
||||
on phone, while others may only be able to be run on phone
|
||||
|
||||
- Cron tasks
|
||||
|
||||
- Sync protocol:
|
||||
- After a modification, the modification gets written to a queue
|
||||
- CRDT?
|
||||
|
||||
- Other privileged concepts:
|
||||
|
||||
- User: a pub/priv key pair
|
||||
|
||||
- Sample apps
|
||||
|
||||
- Todos app
|
||||
|
||||
- Metadata keys (these are somewhat based on Taskwarrior)
|
||||
|
||||
- `status`: Enum{Pending | Deleted | Completed | Waiting | Recurring}
|
||||
- Task status
|
||||
- `description`: String
|
||||
- Description
|
||||
- `start`: DateTime
|
||||
- `due`: DateTime{.due >= .start}
|
||||
- `depends`: NodeRef
|
||||
|
||||
- Interfaces:
|
||||
|
||||
- `addTodo()`
|
||||
|
||||
- Content / blob storage
|
||||
|
||||
- Interfaces:
|
||||
|
||||
- `Content`
|
||||
- `upload() -> Writer`
|
||||
- `get(node_id : NodeId) -> Reader`
|
||||
- `Writer`
|
||||
- `next_chunk(Vec<u8>)`
|
||||
- `Reader`
|
||||
- `next_chunk() -> Vec<u8>`
|
||||
|
||||
- Personal journaling (like Logseq)
|
||||
|
||||
- Weight / fitness tracking
|
||||
|
||||
- Calendar app (store events)
|
||||
|
||||
- Git app (store code)
|
||||
|
||||
- File backup
|
||||
|
||||
- Chat / Mail?
|
||||
|
||||
- Photo viewer + indexing using ML models for face detection / keywords
|
||||
|
||||
- Music scrobbler
|
||||
|
||||
- Not sure yet:
|
||||
|
||||
- Automatic sharing of database nodes? This seems like a bad idea for
|
||||
multiple reasons. Maybe better to just have a specific app for
|
||||
doing permission models
|
||||
|
||||
- Other concerns
|
||||
|
||||
- Local protection using libsecret?
|
||||
|
||||
- Migrations?
|
||||
|
||||
- If an application needs to migrate its data format, should we formalize
|
||||
this?
|
||||
- Data migrations that don't need to create / delete nodes, only metadata
|
||||
|
||||
- Have the frontend also shipped with the backend?
|
||||
|
||||
- Subset of React components to typecheck against
|
||||
|
||||
- Aggregated queries and group by? Joins?
|
||||
|
||||
- Middleware interface / higher-order nodes
|
||||
|
||||
- the idea would be it would be solely dependent on / modify another
|
||||
- i think this would also want to pair with some notion of app-private nodes
|
||||
|
||||
- for example, use cases would be:
|
||||
|
||||
- version control?
|
||||
|
||||
- update "hook" for this would create a third node and append it
|
||||
|
||||
```
|
||||
const newPrev = new Node()
|
||||
newPrev.prev = curr.prev
|
||||
curr.prev = newPrev
|
||||
```
|
||||
|
||||
creates like a linked list of version updates
|
||||
|
||||
- Pub/Sub?
|
||||
|
||||
- i think this could use the same interface as the query interface, so you
|
||||
would just "listen" to updates there, rather than just getting a single
|
||||
snapshot of it
|
||||
|
||||
- findNodes interface:
|
||||
- Params
|
||||
- mode, one of "single", "many", "stream"
|
||||
- single: return a single document
|
||||
- many: return many documents (may limit with take)
|
||||
- TODO: what does a cursor look like?
|
||||
- stream: open a socket and keep listening for
|
||||
- streamType, one of "inserts" or "updates"
|
||||
- metadata: object
|
||||
- `{ [keyName] : { has?: boolean, value?: [value], select: boolean } }`
|
||||
- has means if it's not in there, then filter it out
|
||||
- value means that if the value's not exactly a match, then filter
|
||||
it out
|
||||
- could this include valueMatches, which runs a custom predicate?
|
||||
- select means should this be included in the result
|
||||
|
||||
- Type system?
|
||||
- If i'm going to have the concept of higher-order nodes, might as well have
|
||||
a type system, at the very least for the metadata keys
|
||||
|
||||
- I kinda want some kind of refinement type / contract system. Not sure how
|
||||
this will look yet
|
||||
|
||||
- Proof carrying code for executors? lol
|
1
docs/src/lib/api_reference.md
Normal file
1
docs/src/lib/api_reference.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Library API Reference
|
16
docs/src/notes/integrity.md
Normal file
16
docs/src/notes/integrity.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Data Integrity
|
||||
|
||||
## Storage Integrity
|
||||
|
||||
TODO: Look into [Perennial] (code at [perennial-code])
|
||||
|
||||
[perennial]: https://www.chajed.io/papers/perennial:sosp2019.pdf
|
||||
[perennial-code]: https://github.com/mit-pdos/perennial
|
||||
|
||||
## Distributed Transactions
|
||||
|
||||
TODO: Look into [two-phase commit]
|
||||
|
||||
[two-phase commit]: https://en.wikipedia.org/wiki/Two-phase_commit_protocol
|
||||
|
||||
TODO: How does this work if not all services in the clusters hold all the nodes?
|
1
docs/src/notes/packages.md
Normal file
1
docs/src/notes/packages.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Package Ecosystem
|
25
docs/src/notes/rpc.md
Normal file
25
docs/src/notes/rpc.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# RPC Protocol
|
||||
|
||||
The way that external apps communicate to the database is via an RPC protocol.
|
||||
|
||||
> **Note:** Authentication is not planned at this time. The database should ONLY
|
||||
> be used to store files that are trusted by all devices.
|
||||
|
||||
Apps declare the RPC protocol by using protobuf to generate Typescript types.
|
||||
For example:
|
||||
|
||||
```proto
|
||||
service Todo {
|
||||
rpc CreateTodo() returns () {}
|
||||
}
|
||||
```
|
||||
|
||||
On the "server"-side, this is converted into types that you can use from the
|
||||
database code, to actually implement the RPC handlers. On the client-side, this
|
||||
gives clients a strong foundation to communicate with the database.
|
||||
|
||||
TODO: Look into "compiling" multiple database apps into a single client,
|
||||
possibly the same way Prisma does?
|
||||
|
||||
TODO: Use a custom language that supports the `sync` primitive to automatically
|
||||
allow CRDT data types?
|
17
docs/src/notes/sledkeys.md
Normal file
17
docs/src/notes/sledkeys.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Sled Keyspace
|
||||
|
||||
Panorama uses [sled] as a keystore.
|
||||
|
||||
The key space looks like:
|
||||
|
||||
- nodes
|
||||
- by-uuid
|
||||
- :uuid
|
||||
- edges
|
||||
- indexes
|
||||
-
|
||||
|
||||
### Indexes
|
||||
|
||||
[sled]: https://github.com/spacejam/sled
|
||||
[cockroachdb-kv]: https://github.com/cockroachdb/cockroach/blob/master/docs/tech-notes/encoding.md
|
51
docs/src/notes/types.md
Normal file
51
docs/src/notes/types.md
Normal file
|
@ -0,0 +1,51 @@
|
|||
# Data types
|
||||
|
||||
close to javascript types? i guess. Apps can define these under their own
|
||||
namespace and then refer to them. You can also publish type-only apps, and there
|
||||
will also be some standard ones defined.
|
||||
|
||||
## Primitives
|
||||
|
||||
- number
|
||||
- Arbitrary precision number
|
||||
- End with \_u8, \_u32, \_u64 or \_f- or \_i-equivalents to _suggest_ a
|
||||
particular container size
|
||||
- boolean
|
||||
- literally true or false
|
||||
- string
|
||||
|
||||
## Special primitives
|
||||
|
||||
- DateTimeTz
|
||||
|
||||
- Timezone-aware date (internally stored as ISO8601)
|
||||
- There is no non-timezone-aware date. Please use a string type for that
|
||||
|
||||
- Unit
|
||||
- This is essentially a number with an attached unit specifier (string)
|
||||
- Each unit _type_ is distinct, and allows a number of units that can freely
|
||||
convert within it. For example:
|
||||
- Time (ms, sec, min, hr, day, week, etc.)
|
||||
- File size (byte, kb, mb, mib, gib, etc.)
|
||||
- Temperature (c, f, k)
|
||||
- Distance (ft, mi, m, km, etc.)
|
||||
- Custom unit conversions can be defined.
|
||||
- Currency is **NOT** considered a unit and has no semantic meaning within the
|
||||
database. Please don't add custom conversions for this
|
||||
|
||||
## Type constructors
|
||||
|
||||
- Option
|
||||
- Either
|
||||
- Heterogeneous list
|
||||
- Heterogeneous map
|
||||
- Array
|
||||
- Record
|
||||
- basically matches interface in typescript
|
||||
- Records are not allowed to be fully self-recursive (eg. `record Foo { foo: Foo }`)
|
||||
- Enum
|
||||
- Allowed to be self-recursive, but needs at least one terminating variant
|
||||
|
||||
## Complex type constructors
|
||||
|
||||
- JSON schema
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"extends": "astro/tsconfigs/strict",
|
||||
"compilerOptions": { "skipLibCheck": true },
|
||||
"exclude": ["dist"]
|
||||
}
|
212
flake.lock
212
flake.lock
|
@ -1,18 +1,46 @@
|
|||
{
|
||||
"nodes": {
|
||||
"fenix": {
|
||||
"crane": {
|
||||
"inputs": {
|
||||
"flake-compat": "flake-compat",
|
||||
"flake-utils": [
|
||||
"prisma-engines",
|
||||
"flake-utils"
|
||||
],
|
||||
"nixpkgs": [
|
||||
"prisma-engines",
|
||||
"nixpkgs"
|
||||
],
|
||||
"rust-overlay": [
|
||||
"prisma-engines",
|
||||
"rust-overlay"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1667356260,
|
||||
"narHash": "sha256-Hh2yQESz6G0qYA2Dw8aoua52z2iojI+qhsGkyuxJ/zw=",
|
||||
"owner": "ipetkov",
|
||||
"repo": "crane",
|
||||
"rev": "0ac39916b32a01d05b9a0219ad4b108a510bb265",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "ipetkov",
|
||||
"repo": "crane",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"fenix": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs",
|
||||
"rust-analyzer-src": "rust-analyzer-src"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1719469637,
|
||||
"narHash": "sha256-cOA40mIqjIIf+mCdtuglxdP/0to1LDL1Lkef7vqVykc=",
|
||||
"lastModified": 1679466129,
|
||||
"narHash": "sha256-BQt0ADAhPAwuoq3z+iprmHyw1NeyerOw1GiIEJkANGc=",
|
||||
"owner": "nix-community",
|
||||
"repo": "fenix",
|
||||
"rev": "3374c72204714eb979719e77a1856009584ba4d7",
|
||||
"rev": "49237f7a76b98954306e77a7bd42f6491ad5c6a7",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -21,16 +49,50 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"flake-utils": {
|
||||
"flake-compat": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1650374568,
|
||||
"narHash": "sha256-Z+s0J8/r907g149rllvwhb4pKi8Wam5ij0st8PwAh+E=",
|
||||
"owner": "edolstra",
|
||||
"repo": "flake-compat",
|
||||
"rev": "b4a34015c698c7793d592d66adbab377907a2be8",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "edolstra",
|
||||
"repo": "flake-compat",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"flake-parts": {
|
||||
"inputs": {
|
||||
"systems": "systems"
|
||||
"nixpkgs-lib": [
|
||||
"prisma-engines",
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1710146030,
|
||||
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
|
||||
"lastModified": 1678379998,
|
||||
"narHash": "sha256-TZdfNqftHhDuIFwBcN9MUThx5sQXCTeZk9je5byPKRw=",
|
||||
"owner": "hercules-ci",
|
||||
"repo": "flake-parts",
|
||||
"rev": "c13d60b89adea3dc20704c045ec4d50dd964d447",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "hercules-ci",
|
||||
"repo": "flake-parts",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"flake-utils": {
|
||||
"locked": {
|
||||
"lastModified": 1678901627,
|
||||
"narHash": "sha256-U02riOqrKKzwjsxc/400XnElV+UtPUQWpANPlyazjH0=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
|
||||
"rev": "93a2b84fc4b70d9e089d029deacc3583435c2ed6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -38,13 +100,65 @@
|
|||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"flake-utils_2": {
|
||||
"locked": {
|
||||
"lastModified": 1667395993,
|
||||
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"gitignore": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"prisma-engines",
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1660459072,
|
||||
"narHash": "sha256-8DFJjXG8zqoONA1vXtgeKXy68KdJL5UaXR8NtVMUbx8=",
|
||||
"owner": "hercules-ci",
|
||||
"repo": "gitignore.nix",
|
||||
"rev": "a20de23b925fd8264fd7fad6454652e142fd7f73",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "hercules-ci",
|
||||
"repo": "gitignore.nix",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1719554759,
|
||||
"narHash": "sha256-B64IsJMis4A9dePPOKi2T5EEs9AJWfsvkMKSh9/NANs=",
|
||||
"lastModified": 1679262748,
|
||||
"narHash": "sha256-DQCrrAFrkxijC6haUzOC5ZoFqpcv/tg2WxnyW3np1Cc=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "44677ecde6c8a7a7e32f9a2709c316975bf89a60",
|
||||
"rev": "60c1d71f2ba4c80178ec84523c2ca0801522e0a6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1679535498,
|
||||
"narHash": "sha256-jG6nH7YfHxawIsAaLdbppgioPu6hYglMiKh+FwffcT8=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e5a5eff8a76cee351ccf0c966212786ecc2ad289",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -53,21 +167,61 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_3": {
|
||||
"locked": {
|
||||
"lastModified": 1667231093,
|
||||
"narHash": "sha256-RERXruzBEBuf0c7OfZeX1hxEKB+PTCUNxWeB6C1jd8Y=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "d40fea9aeb8840fea0d377baa4b38e39b9582458",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"ref": "nixos-unstable",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"prisma-engines": {
|
||||
"inputs": {
|
||||
"crane": "crane",
|
||||
"flake-parts": "flake-parts",
|
||||
"flake-utils": "flake-utils_2",
|
||||
"gitignore": "gitignore",
|
||||
"nixpkgs": "nixpkgs_3",
|
||||
"rust-overlay": "rust-overlay"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1679932808,
|
||||
"narHash": "sha256-bSyAWJ4ukiXVyKI1iGvCs2cMgW1jdYRs5cgTdOCXvrQ=",
|
||||
"owner": "prisma",
|
||||
"repo": "prisma-engines",
|
||||
"rev": "659ef412370fa3b41cd7bf6e94587c1dfb7f67e7",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "prisma",
|
||||
"ref": "4.12.0",
|
||||
"repo": "prisma-engines",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"fenix": "fenix",
|
||||
"flake-utils": "flake-utils",
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": "nixpkgs_2",
|
||||
"prisma-engines": "prisma-engines"
|
||||
}
|
||||
},
|
||||
"rust-analyzer-src": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1719378198,
|
||||
"narHash": "sha256-c1jWpdPlZyL6/a0pWa30680ivP7nMLNBPuz5hMGoifg=",
|
||||
"lastModified": 1679428647,
|
||||
"narHash": "sha256-gyS7UDFNzQfRKJvUDlVuM8wXCIyreBmVq+aiPXhfTlk=",
|
||||
"owner": "rust-lang",
|
||||
"repo": "rust-analyzer",
|
||||
"rev": "b33a0cae335b85e11a700df2d9a7c0006a3b80ec",
|
||||
"rev": "3321799e8fac622db50fe8c3284062f7d0f1bf53",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -77,18 +231,28 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
"rust-overlay": {
|
||||
"inputs": {
|
||||
"flake-utils": [
|
||||
"prisma-engines",
|
||||
"flake-utils"
|
||||
],
|
||||
"nixpkgs": [
|
||||
"prisma-engines",
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1681028828,
|
||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||
"lastModified": 1667487142,
|
||||
"narHash": "sha256-bVuzLs1ZVggJAbJmEDVO9G6p8BH3HRaolK70KXvnWnU=",
|
||||
"owner": "oxalica",
|
||||
"repo": "rust-overlay",
|
||||
"rev": "cf668f737ac986c0a89e83b6b2e3c5ddbd8cf33b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"owner": "oxalica",
|
||||
"repo": "rust-overlay",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
|
|
96
flake.nix
96
flake.nix
|
@ -1,42 +1,94 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs";
|
||||
fenix = {
|
||||
url = "github:nix-community/fenix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
fenix.url = "github:nix-community/fenix";
|
||||
prisma-engines.url = "github:prisma/prisma-engines?ref=4.12.0";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils, fenix }:
|
||||
outputs = { self, nixpkgs, flake-utils, fenix, prisma-engines }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [ fenix.overlays.default ];
|
||||
overlays = [
|
||||
fenix.overlays.default
|
||||
|
||||
(final: prev: {
|
||||
prisma-engines = prisma-engines.packages.${system}.prisma-engines;
|
||||
})
|
||||
];
|
||||
};
|
||||
|
||||
toolchain = pkgs.fenix.stable;
|
||||
lib = pkgs.lib;
|
||||
|
||||
flakePkgs = {
|
||||
#markout = pkgs.callPackage ./. { inherit toolchain; };
|
||||
prisma-env =
|
||||
import ./nix/prisma-env.nix { inherit (pkgs) prisma-engines; };
|
||||
|
||||
toolchain = with fenix.packages.${system};
|
||||
combine [
|
||||
stable.rustc
|
||||
stable.cargo
|
||||
# targets.wasm32-unknown-unknown.latest.rust-std
|
||||
];
|
||||
|
||||
flakePkgs = rec {
|
||||
# mdbook-tera = pkgs.callPackage ./nix/mdbook-tera.nix { inherit toolchain; };
|
||||
};
|
||||
in rec {
|
||||
packages = flake-utils.lib.flattenTree flakePkgs;
|
||||
|
||||
devShell = pkgs.mkShell {
|
||||
inputsFrom = with packages;
|
||||
[
|
||||
#markout
|
||||
devShells = {
|
||||
default = pkgs.mkShell ({
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = [ "openssl-1.1.1u" ];
|
||||
|
||||
packages = with pkgs; [
|
||||
cargo-deny
|
||||
cargo-edit
|
||||
cargo-expand
|
||||
cargo-flamegraph
|
||||
cargo-watch
|
||||
sqlite
|
||||
|
||||
zlib
|
||||
|
||||
cargo-generate
|
||||
pkg-config
|
||||
rust-analyzer
|
||||
|
||||
deno
|
||||
openssl
|
||||
yq
|
||||
|
||||
mdbook
|
||||
# flakePkgs.mdbook-tera
|
||||
|
||||
(python310.withPackages
|
||||
(p: with p; [ ipython numpy scipy sympy ]))
|
||||
|
||||
toolchain
|
||||
|
||||
# Get the nightly version of rustfmt so we can wrap comments
|
||||
pkgs.fenix.default.rustfmt
|
||||
];
|
||||
packages = (with pkgs; [
|
||||
cargo-watch
|
||||
cargo-deny
|
||||
cargo-edit
|
||||
corepack
|
||||
nodejs_20
|
||||
sqlx-cli
|
||||
go
|
||||
]) ++ (with toolchain; [ cargo rustc rustfmt clippy ]);
|
||||
|
||||
PKG_CONFIG_PATH = pkgs.lib.concatStringsSep ":" [
|
||||
"${pkgs.gnome.libsoup.dev}/lib/pkgconfig"
|
||||
"${pkgs.webkitgtk.dev}/lib/pkgconfig"
|
||||
"${pkgs.gtk3.dev}/lib/pkgconfig"
|
||||
"${pkgs.gtk4.dev}/lib/pkgconfig"
|
||||
"${pkgs.glib.dev}/lib/pkgconfig"
|
||||
"${pkgs.cairo.dev}/lib/pkgconfig"
|
||||
"${pkgs.gdk-pixbuf.dev}/lib/pkgconfig"
|
||||
"${pkgs.pango.dev}/lib/pkgconfig"
|
||||
"${pkgs.harfbuzz.dev}/lib/pkgconfig"
|
||||
"${pkgs.at-spi2-atk.dev}/lib/pkgconfig"
|
||||
];
|
||||
|
||||
GIO_MODULE_DIR = "${pkgs.glib-networking}/lib/gio/modules";
|
||||
} // prisma-env);
|
||||
|
||||
ci = pkgs.mkShell { packages = with pkgs; [ bash mdbook nodejs ]; };
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<!doctype html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Tauri + React + Typescript</title>
|
||||
<title>Tauri + React + TS</title>
|
||||
</head>
|
||||
|
||||
<body>
|
18
nix/dioxus-cli.nix
Normal file
18
nix/dioxus-cli.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ dioxus-cli, fetchCrate, lib }:
|
||||
|
||||
dioxus-cli.overrideAttrs (p: rec {
|
||||
inherit (p) pname;
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-01XFw3PCKw5C0enEascVqGDO6Qvq3gyFZBacrv0cK0U=";
|
||||
};
|
||||
|
||||
cargoDeps = p.cargoDeps.overrideAttrs (_: {
|
||||
inherit src;
|
||||
outputHash = "sha256-mdU212QUeTU94JPQuwmnS6lpzfu+XRSIlpIkHUk5Ip0=";
|
||||
});
|
||||
|
||||
doCheck = false;
|
||||
})
|
26
nix/mdbook-tera.nix
Normal file
26
nix/mdbook-tera.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, makeRustPlatform, toolchain, fetchFromGitHub }:
|
||||
|
||||
let
|
||||
rustPlatform = makeRustPlatform {
|
||||
cargo = toolchain;
|
||||
rustc = toolchain;
|
||||
};
|
||||
|
||||
in rustPlatform.buildRustPackage rec {
|
||||
name = "mdbook-tera";
|
||||
version = "0.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "avitex";
|
||||
repo = name;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-JxZWx0He0+hIPw4IPFMRg2dcQpwq8rCV6ujvX+n7RLk=";
|
||||
};
|
||||
|
||||
cargoPatches = [ ./mdbook-tera.patch ];
|
||||
|
||||
cargoSha256 = "sha256-Y4U3lDgrRq8G+OGzi3MaAmXIrGwzMJZutK64wJKqFWk=";
|
||||
|
||||
# unknown lint: `rustdoc::missing_doc_code_examples
|
||||
doCheck = false;
|
||||
}
|
1313
nix/mdbook-tera.patch
Normal file
1313
nix/mdbook-tera.patch
Normal file
File diff suppressed because it is too large
Load diff
14
nix/prisma-env.nix
Normal file
14
nix/prisma-env.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ prisma-engines }:
|
||||
|
||||
{
|
||||
PRISMA_CLI_QUERY_ENGINE_TYPE = "binary";
|
||||
PRISMA_CLIENT_ENGINE_TYPE = "binary";
|
||||
|
||||
PRISMA_QUERY_ENGINE_LIBRARY = "${prisma-engines}/lib/libquery_engine.so";
|
||||
|
||||
PRISMA_QUERY_ENGINE_BINARY = "${prisma-engines}/bin/query-engine";
|
||||
PRISMA_MIGRATION_ENGINE_BINARY = "${prisma-engines}/bin/migration-engine";
|
||||
PRISMA_INTROSPECTION_ENGINE_BINARY =
|
||||
"${prisma-engines}/bin/introspection-engine";
|
||||
PRISMA_FMT_BINARY = "${prisma-engines}/bin/prisma-fmt";
|
||||
}
|
4352
package-lock.json
generated
Normal file
4352
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
45
package.json
45
package.json
|
@ -1,13 +1,38 @@
|
|||
{
|
||||
"name": "panorama",
|
||||
"private": true,
|
||||
"workspaces": [
|
||||
"packages/*",
|
||||
"apps/*"
|
||||
],
|
||||
"trustedDependencies": [
|
||||
"electron",
|
||||
"esbuild",
|
||||
"sqlite3"
|
||||
]
|
||||
}
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "tsc && vite build",
|
||||
"preview": "vite preview",
|
||||
"tauri": "tauri"
|
||||
},
|
||||
"dependencies": {
|
||||
"@blueprintjs/core": "^4.20.1",
|
||||
"@blueprintjs/icons": "^4.16.0",
|
||||
"@chakra-ui/icons": "^2.0.19",
|
||||
"@chakra-ui/react": "^2.7.0",
|
||||
"@emotion/react": "^11.11.1",
|
||||
"@emotion/styled": "^11.11.0",
|
||||
"@prisma/client": "^4.8.0",
|
||||
"@tauri-apps/api": "^1.3.0",
|
||||
"classnames": "^2.3.2",
|
||||
"framer-motion": "^10.12.16",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-mosaic-component": "^6.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tauri-apps/cli": "^1.3.1",
|
||||
"@types/node": "^18.7.10",
|
||||
"@types/react": "^18.0.15",
|
||||
"@types/react-dom": "^18.0.6",
|
||||
"@vitejs/plugin-react": "^3.0.0",
|
||||
"prisma": "^4.8.0",
|
||||
"sass": "^1.63.3",
|
||||
"typescript": "^4.9.5",
|
||||
"vite": "^4.2.1"
|
||||
}
|
||||
}
|
||||
|
|
175
packages/panorama-daemon/.gitignore
vendored
175
packages/panorama-daemon/.gitignore
vendored
|
@ -1,175 +0,0 @@
|
|||
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
|
||||
|
||||
# Logs
|
||||
|
||||
logs
|
||||
_.log
|
||||
npm-debug.log_
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# Caches
|
||||
|
||||
.cache
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
|
||||
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
|
||||
|
||||
# Runtime data
|
||||
|
||||
pids
|
||||
_.pid
|
||||
_.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Snowpack dependency directory (https://snowpack.dev/)
|
||||
|
||||
web_modules/
|
||||
|
||||
# TypeScript cache
|
||||
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
|
||||
.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variable files
|
||||
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
|
||||
.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
|
||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||
|
||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
||||
|
||||
# public
|
||||
|
||||
# vuepress build output
|
||||
|
||||
.vuepress/dist
|
||||
|
||||
# vuepress v2.x temp and cache directory
|
||||
|
||||
.temp
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
|
||||
.docusaurus
|
||||
|
||||
# Serverless directories
|
||||
|
||||
.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
# IntelliJ based IDEs
|
||||
.idea
|
||||
|
||||
# Finder (MacOS) folder config
|
||||
.DS_Store
|
|
@ -1,15 +0,0 @@
|
|||
# panorama-daemon
|
||||
|
||||
To install dependencies:
|
||||
|
||||
```bash
|
||||
bun install
|
||||
```
|
||||
|
||||
To run:
|
||||
|
||||
```bash
|
||||
bun run index.ts
|
||||
```
|
||||
|
||||
This project was created using `bun init` in bun v1.0.25. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
|
Binary file not shown.
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"name": "panorama-daemon",
|
||||
"module": "src/index.ts",
|
||||
"type": "module",
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.8.3",
|
||||
"@types/bun": "latest",
|
||||
"@types/koa-json": "^2.0.23",
|
||||
"@types/koa__cors": "^5.0.0",
|
||||
"@types/koa__router": "^12.0.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@koa/bodyparser": "^5.1.1",
|
||||
"@koa/cors": "^5.0.0",
|
||||
"@koa/router": "^12.0.1",
|
||||
"koa": "^2.15.3",
|
||||
"koa-json": "^2.0.2",
|
||||
"reflect-metadata": "^0.2.2",
|
||||
"sqlite3": "^5.1.7",
|
||||
"typeorm": "^0.3.20",
|
||||
"uuidv7": "^1.0.1",
|
||||
"yaml": "^2.4.5",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
"trustedDependencies": [
|
||||
"@biomejs/biome"
|
||||
]
|
||||
}
|
|
@ -1,101 +0,0 @@
|
|||
import { join, dirname } from "node:path";
|
||||
import { parse } from "yaml";
|
||||
import { readdir, readFile } from "node:fs/promises";
|
||||
import Router from "@koa/router";
|
||||
import { manifestSchema, type Manifest } from "./manifest";
|
||||
import { dataSource } from "../db";
|
||||
import { App, Attribute } from "../models";
|
||||
|
||||
export interface CustomApp extends Manifest {
|
||||
sanitizedName: string;
|
||||
router: Router;
|
||||
}
|
||||
|
||||
export function sanitizeName(name: string): string {
|
||||
return name.replaceAll("/", "__");
|
||||
}
|
||||
|
||||
export async function loadApps(): Promise<Map<string, CustomApp>> {
|
||||
const apps = new Map();
|
||||
const paths = [
|
||||
join(dirname(dirname(dirname(dirname(dirname(import.meta.path))))), "apps"),
|
||||
"/Users/michael/Projects/panorama/apps",
|
||||
];
|
||||
|
||||
async function getChildren(dir: string): Promise<string[]> {
|
||||
try {
|
||||
return await readdir(dir);
|
||||
} catch (e) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
for (const basePath of paths) {
|
||||
const children = await getChildren(basePath);
|
||||
for (const name of children) {
|
||||
const child = join(basePath, name);
|
||||
try {
|
||||
const app = await loadApp(child);
|
||||
apps.set(app.name, app);
|
||||
} catch (e) {
|
||||
console.error(`Error setting up ${child}: ${e.message}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
return apps;
|
||||
}
|
||||
|
||||
export async function loadApp(path: string): Promise<CustomApp> {
|
||||
console.log("Loading app from", path);
|
||||
const manifestPath = join(path, "manifest.yml");
|
||||
const manifestRaw = parse(await readFile(manifestPath, "utf-8"));
|
||||
const manifest = manifestSchema.parse(manifestRaw);
|
||||
const sanitizedName = sanitizeName(manifest.name);
|
||||
|
||||
const router = new Router();
|
||||
|
||||
// load code
|
||||
if (manifest.code) {
|
||||
const codePath = join(path, manifest.code);
|
||||
const codeModule = await import(codePath);
|
||||
|
||||
// wire up routes
|
||||
for (const endpoint of manifest.endpoints || []) {
|
||||
const func = codeModule[endpoint.handler];
|
||||
router.all(endpoint.route, func);
|
||||
}
|
||||
}
|
||||
|
||||
await dataSource.transaction(async (em) => {
|
||||
const app = await em
|
||||
.createQueryBuilder()
|
||||
.select("app")
|
||||
.from(App, "app")
|
||||
.where("app.id = :id", { id: sanitizedName })
|
||||
.getOne();
|
||||
let appId = app?.id;
|
||||
|
||||
if (!appId) {
|
||||
const result = await em.getRepository(App).insert({
|
||||
id: sanitizedName,
|
||||
name: manifest.name,
|
||||
});
|
||||
|
||||
appId = result.identifiers[0].id;
|
||||
}
|
||||
|
||||
if (!appId) throw new Error("could not initialize");
|
||||
|
||||
// register all the attributes
|
||||
for (const attribute of manifest.attributes || []) {
|
||||
await em
|
||||
.getRepository(Attribute)
|
||||
.upsert({ appId, name: attribute.name, type: attribute.type }, [
|
||||
"appId",
|
||||
"name",
|
||||
]);
|
||||
}
|
||||
});
|
||||
|
||||
return { ...manifest, sanitizedName, router };
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
import { z } from "zod";
|
||||
|
||||
export const manifestSchema = z.object({
|
||||
name: z.string(),
|
||||
code: z.string().optional(),
|
||||
|
||||
attributes: z
|
||||
.array(
|
||||
z.object({
|
||||
name: z.string(),
|
||||
type: z.string(),
|
||||
}),
|
||||
)
|
||||
.optional(),
|
||||
|
||||
endpoints: z
|
||||
.array(
|
||||
z.object({
|
||||
route: z.string(),
|
||||
handler: z.string(),
|
||||
}),
|
||||
)
|
||||
.optional(),
|
||||
});
|
||||
|
||||
export type Manifest = z.infer<typeof manifestSchema>;
|
|
@ -1,16 +0,0 @@
|
|||
import { DataSource } from "typeorm";
|
||||
import { App, Attribute, PNode, NodeHasAttribute } from "./models";
|
||||
|
||||
const AppDataSource = new DataSource({
|
||||
type: "sqlite",
|
||||
database: "test.db",
|
||||
|
||||
entities: [PNode, App, Attribute, NodeHasAttribute],
|
||||
synchronize: true,
|
||||
logging: true,
|
||||
|
||||
migrationsTableName: "migrations",
|
||||
migrations: ["migrations/*"],
|
||||
});
|
||||
|
||||
export const dataSource = await AppDataSource.initialize();
|
|
@ -1,50 +0,0 @@
|
|||
import Koa, { type Context } from "koa";
|
||||
import cors from "@koa/cors";
|
||||
import json from "koa-json";
|
||||
import Router from "@koa/router";
|
||||
import { dataSource } from "./db";
|
||||
import { PNode } from "./models";
|
||||
import { nodeRouter } from "./routes/node";
|
||||
import { loadApps, sanitizeName } from "./apps";
|
||||
import { bodyParser } from "@koa/bodyparser";
|
||||
|
||||
const app = new Koa();
|
||||
const router = new Router();
|
||||
|
||||
app.use(cors());
|
||||
app.use(json());
|
||||
app.use(bodyParser());
|
||||
|
||||
app.use(async (ctx, next) => {
|
||||
console.log(
|
||||
"Got a request from %s for %s",
|
||||
ctx.request.ip,
|
||||
ctx.method,
|
||||
ctx.path,
|
||||
);
|
||||
return next();
|
||||
});
|
||||
|
||||
const apps = await loadApps();
|
||||
for (const [name, customApp] of apps.entries()) {
|
||||
console.log("name", name);
|
||||
const sanitizedName = sanitizeName(name);
|
||||
router.use(`/apps/${sanitizedName}`, customApp.router.routes());
|
||||
}
|
||||
|
||||
router.get("/", async (ctx: Context) => {
|
||||
const nodeRepo = dataSource.getRepository(PNode);
|
||||
const numNodes = await nodeRepo.count();
|
||||
ctx.body = { nodes: numNodes };
|
||||
});
|
||||
|
||||
router.use("/node", nodeRouter.routes());
|
||||
|
||||
console.log(
|
||||
"routes",
|
||||
router.stack.map((i) => i.path),
|
||||
);
|
||||
|
||||
app.use(router.routes()).use(router.allowedMethods());
|
||||
|
||||
app.listen(3000);
|
|
@ -1,118 +0,0 @@
|
|||
import {
|
||||
Column,
|
||||
Entity,
|
||||
Index,
|
||||
JoinColumn,
|
||||
ManyToOne,
|
||||
OneToMany,
|
||||
PrimaryColumn,
|
||||
UpdateDateColumn,
|
||||
} from "typeorm";
|
||||
|
||||
@Entity({ name: "node" })
|
||||
export class PNode {
|
||||
@PrimaryColumn()
|
||||
id!: string;
|
||||
|
||||
@UpdateDateColumn()
|
||||
lastUpdated!: Date;
|
||||
|
||||
@OneToMany(
|
||||
() => NodeHasAttribute,
|
||||
(hasAttr) => hasAttr.node,
|
||||
)
|
||||
attributes!: NodeHasAttribute[];
|
||||
}
|
||||
|
||||
@Entity()
|
||||
export class App {
|
||||
@PrimaryColumn()
|
||||
id!: string;
|
||||
|
||||
@Column()
|
||||
@Index({})
|
||||
name!: string;
|
||||
|
||||
@OneToMany(
|
||||
() => Attribute,
|
||||
(attr) => attr.app,
|
||||
)
|
||||
attributes!: Attribute[];
|
||||
|
||||
@OneToMany(
|
||||
() => NodeHasAttribute,
|
||||
(attr) => attr.app,
|
||||
)
|
||||
attributeInstances!: NodeHasAttribute[];
|
||||
}
|
||||
|
||||
@Entity()
|
||||
export class Attribute {
|
||||
@PrimaryColumn()
|
||||
appId!: string;
|
||||
|
||||
@PrimaryColumn()
|
||||
name!: string;
|
||||
|
||||
@Column()
|
||||
@Index({})
|
||||
type!: string;
|
||||
|
||||
@ManyToOne(
|
||||
() => App,
|
||||
(app) => app.attributes,
|
||||
)
|
||||
@JoinColumn({ name: "appId", referencedColumnName: "id" })
|
||||
app!: App;
|
||||
|
||||
@OneToMany(
|
||||
() => NodeHasAttribute,
|
||||
(attr) => attr.attr,
|
||||
)
|
||||
instances!: NodeHasAttribute[];
|
||||
}
|
||||
|
||||
@Entity()
|
||||
export class NodeHasAttribute {
|
||||
@ManyToOne(
|
||||
() => PNode,
|
||||
(node) => node.attributes,
|
||||
)
|
||||
@JoinColumn({ name: "nodeId" })
|
||||
node!: PNode;
|
||||
|
||||
@PrimaryColumn()
|
||||
nodeId!: string;
|
||||
|
||||
@ManyToOne(
|
||||
() => App,
|
||||
(app) => app.attributeInstances,
|
||||
)
|
||||
@JoinColumn({ name: "appId", referencedColumnName: "id" })
|
||||
app!: App;
|
||||
|
||||
@PrimaryColumn()
|
||||
appId!: string;
|
||||
|
||||
@ManyToOne(
|
||||
() => Attribute,
|
||||
(attr) => attr.instances,
|
||||
)
|
||||
@JoinColumn({ name: "appId", referencedColumnName: "appId" })
|
||||
@JoinColumn({ name: "attrName", referencedColumnName: "name" })
|
||||
attr!: Attribute;
|
||||
|
||||
@PrimaryColumn()
|
||||
attrName!: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
nodeRef: number | undefined;
|
||||
@Column({ nullable: true })
|
||||
number: number | undefined;
|
||||
@Column({ nullable: true })
|
||||
string: string | undefined;
|
||||
@Column({ nullable: true })
|
||||
boolean: boolean | undefined;
|
||||
@Column({ nullable: true })
|
||||
instant: Date | undefined;
|
||||
}
|
|
@ -1,168 +0,0 @@
|
|||
import Router from "@koa/router";
|
||||
import { App, Attribute, NodeHasAttribute, PNode } from "../models";
|
||||
import { uuidv7 } from "uuidv7";
|
||||
import { dataSource } from "../db";
|
||||
|
||||
export const nodeRouter = new Router();
|
||||
|
||||
nodeRouter.put("/", async (ctx) => {
|
||||
const id = uuidv7();
|
||||
const body = ctx.request.body;
|
||||
await dataSource.transaction(async (em) => {
|
||||
await em.getRepository(PNode).insert({ id });
|
||||
|
||||
const attributes: [string, any][] = body?.attributes ?? [];
|
||||
const attributeNames = attributes
|
||||
.map(([name, _]) => name)
|
||||
.map((name) => name.split("::"));
|
||||
const appNames = new Set(attributeNames.map(([app, _]) => app));
|
||||
const attrNames = new Set(attributeNames.map(([_, attr]) => attr));
|
||||
console.log("attribute names", appNames);
|
||||
|
||||
const result = await em
|
||||
.createQueryBuilder(App, "app")
|
||||
.where("app.name IN (:...appNames)", { appNames: [...appNames] })
|
||||
.getMany();
|
||||
const appIdMappingList: [string, string][] = result.map((app) => [
|
||||
app.name,
|
||||
app.id,
|
||||
]);
|
||||
const appIds = new Set([...appIdMappingList.map(([_, id]) => id)]);
|
||||
const appIdMapping = new Map([...appIdMappingList]);
|
||||
|
||||
const result2 = await em
|
||||
.createQueryBuilder(Attribute, "attr")
|
||||
.where("attr.appId IN (:...appIds)", { appIds: [...appIds] })
|
||||
.andWhere("attr.name IN (:...attrNames)", { attrNames: [...attrNames] })
|
||||
.getMany();
|
||||
const attributeTypesList: [string, string][] = result2.map((attr) => [
|
||||
`${attr.appId}::${attr.name}`,
|
||||
attr.type,
|
||||
]);
|
||||
const attributeTypes = new Map(attributeTypesList);
|
||||
console.log("attribute types", attributeTypes);
|
||||
|
||||
const convertValue = (
|
||||
type: string,
|
||||
value: string,
|
||||
): Partial<NodeHasAttribute> => {
|
||||
switch (type) {
|
||||
case "string":
|
||||
return { string: value };
|
||||
case "datetime":
|
||||
return { instant: new Date(value) };
|
||||
default:
|
||||
console.error(`fuck, unknown type ${type}`);
|
||||
return {};
|
||||
}
|
||||
};
|
||||
|
||||
const attributesMapped: Partial<NodeHasAttribute>[] = attributes.map(
|
||||
([name, value]) => {
|
||||
const [app, attrName] = name.split("::");
|
||||
const appId = appIdMapping.get(app)!;
|
||||
const type = attributeTypes.get(`${appId}::${attrName}`)!;
|
||||
console.log("converting type", type, value);
|
||||
return { nodeId: id, appId, attrName, ...convertValue(type, value) };
|
||||
},
|
||||
);
|
||||
|
||||
console.log("mappped", attributesMapped);
|
||||
|
||||
const result3 = await em.insert(NodeHasAttribute, attributesMapped);
|
||||
});
|
||||
|
||||
ctx.body = { id };
|
||||
});
|
||||
|
||||
// TODO: WILL BE REMOVED BEFORE ALPHA RELEASE
|
||||
nodeRouter.post("/sql", async (ctx) => {
|
||||
const body = ctx.request.body;
|
||||
const { query, parameters } = body;
|
||||
const rows = await dataSource.query(query, parameters ?? []);
|
||||
ctx.body = { rows };
|
||||
});
|
||||
|
||||
nodeRouter.get("/recent", async (ctx) => {
|
||||
const result = await dataSource.query<NodeHasAttribute[]>(`
|
||||
SELECT
|
||||
node20.id as nodeId,
|
||||
hasAttr.attrName,
|
||||
app.name AS appName,
|
||||
attr.type AS attrType,
|
||||
hasAttr.nodeRef,
|
||||
hasAttr.number,
|
||||
hasAttr.string,
|
||||
hasAttr.boolean,
|
||||
hasAttr.instant
|
||||
FROM node_has_attribute hasAttr
|
||||
INNER JOIN (SELECT * FROM node ORDER BY lastUpdated DESC LIMIT 20) node20 ON node20.id = hasAttr.nodeId
|
||||
INNER JOIN app ON app.id = hasAttr.appId
|
||||
INNER JOIN attribute attr ON attr.appId = hasAttr.appId AND attr.name = hasAttr.attrName
|
||||
`);
|
||||
|
||||
console.log("result", result);
|
||||
|
||||
const convertValue = (type: string, row: Partial<NodeHasAttribute>): any => {
|
||||
switch (type) {
|
||||
case "string":
|
||||
return row.string;
|
||||
case "datetime":
|
||||
return new Date(row.instant);
|
||||
default:
|
||||
console.error(`unknown type ${type}`);
|
||||
return "";
|
||||
}
|
||||
};
|
||||
|
||||
const idAttrs = new Map<string, Map<string, any>>();
|
||||
|
||||
for (const hasAttr of result) {
|
||||
if (!idAttrs.has(hasAttr.nodeId)) idAttrs.set(hasAttr.nodeId, new Map());
|
||||
|
||||
idAttrs
|
||||
.get(hasAttr.nodeId)!
|
||||
.set(
|
||||
`${hasAttr.appName}::${hasAttr.attrName}`,
|
||||
convertValue(hasAttr.attrType, hasAttr),
|
||||
);
|
||||
}
|
||||
|
||||
const result2 = [...idAttrs.entries()].map(([id, attrs]) => ({
|
||||
id,
|
||||
attributes: Object.fromEntries(attrs.entries()),
|
||||
}));
|
||||
|
||||
// result = result.map((v) => ({
|
||||
// id: v.id,
|
||||
// attributes: new Map(
|
||||
// v.attr.map((attr) => [
|
||||
// `${attr.app.name}::${attr.attrName}`,
|
||||
// convertValue(attr.attr.type, attr),
|
||||
// ]),
|
||||
// ),
|
||||
// }));
|
||||
|
||||
ctx.body = result2;
|
||||
});
|
||||
|
||||
nodeRouter.get("/:id", async (ctx) => {
|
||||
const result: false | undefined = await dataSource.transaction(async (em) => {
|
||||
const query = dataSource
|
||||
.createQueryBuilder()
|
||||
.select("node")
|
||||
.from(PNode, "node")
|
||||
.where("node.id = :id", { id: ctx.params.id });
|
||||
|
||||
const node = await query.getOne();
|
||||
if (node === null) return false;
|
||||
ctx.body = { node };
|
||||
});
|
||||
|
||||
if (result === false) {
|
||||
ctx.status = 404;
|
||||
ctx.body = { error: "Not found" };
|
||||
}
|
||||
});
|
||||
|
||||
nodeRouter.post("/:id", async (ctx) => {});
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"lib": ["ESNext"],
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"moduleDetection": "force",
|
||||
"jsx": "react-jsx",
|
||||
"allowJs": true,
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
"noEmit": true,
|
||||
|
||||
/* Linting */
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
|
||||
"esModuleInterop": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true
|
||||
}
|
||||
}
|
5427
pnpm-lock.yaml
5427
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -1,4 +0,0 @@
|
|||
packages:
|
||||
- 'app'
|
||||
- 'docs'
|
||||
- 'packages/*'
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue