Compare commits
No commits in common. "master" and "dev" have entirely different histories.
218 changed files with 8753 additions and 13070 deletions
12
.drone.yml
Normal file
12
.drone.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: rust
|
||||||
|
commands:
|
||||||
|
- cargo check --all
|
||||||
|
- cargo test --all
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
[*]
|
[*.rs]
|
||||||
indent_size = 2
|
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
[Makefile]
|
max_line_length = 80
|
||||||
indent_size = 4
|
|
||||||
indent_style = tab
|
|
||||||
|
|
1
.envrc
1
.envrc
|
@ -1 +0,0 @@
|
||||||
export DATABASE_URL=sqlite://$(pwd)/test.db
|
|
17
.gitignore
vendored
17
.gitignore
vendored
|
@ -1,9 +1,8 @@
|
||||||
node_modules
|
/target
|
||||||
dist
|
/.env
|
||||||
target
|
/output.log
|
||||||
.DS_Store
|
/config.toml
|
||||||
**/export/export.json
|
/public
|
||||||
test.db*
|
/hellosu
|
||||||
.env
|
/hellosu.db*
|
||||||
.direnv
|
|
||||||
/proto/generated
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
pnpm-lock.yaml
|
|
3
.vscode/extensions.json
vendored
3
.vscode/extensions.json
vendored
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
|
|
||||||
}
|
|
5271
Cargo.lock
generated
5271
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
21
Cargo.toml
21
Cargo.toml
|
@ -1,13 +1,12 @@
|
||||||
workspace.resolver = "2"
|
[workspace]
|
||||||
workspace.members = ["ui/src-tauri"]
|
members = [
|
||||||
|
"daemon",
|
||||||
|
"imap",
|
||||||
|
# "mbsync",
|
||||||
|
"proto-common",
|
||||||
|
"smtp",
|
||||||
|
"tui",
|
||||||
|
]
|
||||||
|
|
||||||
[profile.wasm-debug]
|
[profile.release]
|
||||||
inherits = "dev"
|
|
||||||
panic = "abort"
|
|
||||||
|
|
||||||
[profile.wasm-release]
|
|
||||||
inherits = "release"
|
|
||||||
lto = true
|
lto = true
|
||||||
opt-level = 's'
|
|
||||||
strip = true
|
|
||||||
panic = "abort"
|
|
||||||
|
|
32
Justfile
Normal file
32
Justfile
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
set dotenv-load := false
|
||||||
|
|
||||||
|
ct:
|
||||||
|
tokei
|
||||||
|
|
||||||
|
fmt:
|
||||||
|
cargo +nightly fmt --all
|
||||||
|
|
||||||
|
doc shouldOpen="":
|
||||||
|
#!/bin/bash
|
||||||
|
if [[ -n "{{shouldOpen}}" ]]; then
|
||||||
|
OPEN=--open
|
||||||
|
fi
|
||||||
|
cargo doc --workspace --document-private-items --no-deps $OPEN
|
||||||
|
|
||||||
|
test:
|
||||||
|
cargo test --all
|
||||||
|
|
||||||
|
watch:
|
||||||
|
cargo watch -c -x 'check --all'
|
||||||
|
|
||||||
|
afl-imap:
|
||||||
|
#!/bin/bash
|
||||||
|
cd imap/imap-parsing-fuzz-target
|
||||||
|
pwd
|
||||||
|
cargo afl build
|
||||||
|
cargo afl fuzz -i in -o out target/debug/imap-parsing-fuzz-target
|
||||||
|
|
||||||
|
fuzz-imap:
|
||||||
|
#!/bin/bash
|
||||||
|
cd imap
|
||||||
|
cargo +nightly fuzz run parse_response
|
675
LICENSE.md
Normal file
675
LICENSE.md
Normal file
|
@ -0,0 +1,675 @@
|
||||||
|
### GNU GENERAL PUBLIC LICENSE
|
||||||
|
|
||||||
|
Version 3, 29 June 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 General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is 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. We, the Free Software Foundation, use
|
||||||
|
the GNU General Public License for most of our software; it applies
|
||||||
|
also to any other work released this way by its authors. You can apply
|
||||||
|
it to your programs, too.
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you
|
||||||
|
have certain responsibilities if you distribute copies of the
|
||||||
|
software, or if you modify it: responsibilities to respect the freedom
|
||||||
|
of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the
|
||||||
|
manufacturer can do so. This is fundamentally incompatible with the
|
||||||
|
aim of protecting users' freedom to change the software. The
|
||||||
|
systematic pattern of such abuse occurs in the area of products for
|
||||||
|
individuals to use, which is precisely where it is most unacceptable.
|
||||||
|
Therefore, we have designed this version of the GPL to prohibit the
|
||||||
|
practice for those products. If such problems arise substantially in
|
||||||
|
other domains, we stand ready to extend this provision to those
|
||||||
|
domains in future versions of the GPL, as needed to protect the
|
||||||
|
freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish
|
||||||
|
to avoid the special danger that patents applied to a free program
|
||||||
|
could make it effectively proprietary. To prevent this, the GPL
|
||||||
|
assures that patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
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 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. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
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 Affero 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 special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
#### 14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the GNU 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 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 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 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 General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper
|
||||||
|
mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands \`show w' and \`show c' should show the
|
||||||
|
appropriate parts of the General Public License. Of course, your
|
||||||
|
program's commands might be different; for a GUI interface, you would
|
||||||
|
use an "about box".
|
||||||
|
|
||||||
|
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 GPL, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your
|
||||||
|
program into proprietary programs. If your program is a subroutine
|
||||||
|
library, you may consider it more useful to permit linking proprietary
|
||||||
|
applications with the library. If this is what you want to do, use the
|
||||||
|
GNU Lesser General Public License instead of this License. But first,
|
||||||
|
please read <https://www.gnu.org/licenses/why-not-lgpl.html>.
|
13
Makefile
13
Makefile
|
@ -1,13 +0,0 @@
|
||||||
deploy-docs:
|
|
||||||
(cd docs; BASE_URL=/panorama bun run build) || true
|
|
||||||
rsync -azrP docs/dist/ root@veil:/home/blogDeploy/public/panorama
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
test-install-apps: journal
|
|
||||||
cargo test -p panorama-core -- tests::test_install_apps
|
|
40
README.md
40
README.md
|
@ -1,11 +1,43 @@
|
||||||
panorama
|
panorama
|
||||||
========
|
========
|
||||||
|
|
||||||
Personal information manager.
|
Panorama is a terminal Personal Information Manager (PIM).
|
||||||
|
|
||||||
Contact
|
Status: **still writing the basics**
|
||||||
|
|
||||||
|
Join chat on Matrix at [#panorama:mozilla.org][3]
|
||||||
|
|
||||||
|
Goals:
|
||||||
|
|
||||||
|
- **Never have to actually close the application.** All errors should be
|
||||||
|
handled gracefully in a way that can be recovered or restarted without
|
||||||
|
needing to close the entire application.
|
||||||
|
- **Handles email, calendar, and address books using open standards.** IMAP for
|
||||||
|
email retrieval, SMTP for email sending, CalDAV for calendars, and CardDAV
|
||||||
|
for address books. Work should be saved locally prior to uploading to make
|
||||||
|
sure nothing is ever lost as a result of network failure.
|
||||||
|
- **Hot-reload on-disk config.** Configuration should be able to be reloaded so
|
||||||
|
that the user can keep the application open. Errors in config should be
|
||||||
|
reported to the user while the application is still running off the old
|
||||||
|
version.
|
||||||
|
- **Scriptable.** Built-in scripting language should allow for customization of
|
||||||
|
common functionality, including keybinds and colors.
|
||||||
|
|
||||||
|
Stretch goals:
|
||||||
|
|
||||||
|
- Full-text email/message search
|
||||||
|
- Unified "feed" that any app can submit to.
|
||||||
|
- Submit notifications to gotify-shaped notification servers.
|
||||||
|
- JMAP implementation.
|
||||||
|
- RSS aggregator.
|
||||||
|
- IRC client??
|
||||||
|
|
||||||
|
Credits
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Author: Michael Zhang
|
IMAP library modified from [djc/tokio-imap][2], MIT licensed.
|
||||||
|
|
||||||
License: GPL-3.0-only
|
License: GPLv3 or later
|
||||||
|
|
||||||
|
[2]: https://github.com/djc/tokio-imap
|
||||||
|
[3]: https://matrix.to/#/!NSaHPfsflbEkjCZViX:mozilla.org?via=mozilla.org
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
name: panorama/calendar
|
|
||||||
|
|
||||||
depends:
|
|
||||||
- name: panorama
|
|
||||||
|
|
||||||
# code: dist/index.js
|
|
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.
1
daemon/.gitignore
vendored
Normal file
1
daemon/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/test.db*
|
33
daemon/Cargo.toml
Normal file
33
daemon/Cargo.toml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
[package]
|
||||||
|
name = "panorama-daemon"
|
||||||
|
version = "0.0.1"
|
||||||
|
edition = "2018"
|
||||||
|
license = "GPL-3.0-or-later"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = ["config-watch"]
|
||||||
|
config-watch = ["notify"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
anyhow = { version = "1.0.45", features = ["backtrace"] }
|
||||||
|
async-trait = "0.1.51"
|
||||||
|
clap = "3.0.0-beta.5"
|
||||||
|
derivative = "2.2.0"
|
||||||
|
futures = "0.3.17"
|
||||||
|
hyper = { version = "0.14.14", features = ["server", "http2", "stream"] }
|
||||||
|
log = "0.4.14"
|
||||||
|
panorama-imap = { path = "../imap" }
|
||||||
|
panorama-smtp = { path = "../smtp" }
|
||||||
|
serde = { version = "1.0.130", features = ["derive"] }
|
||||||
|
session_types = "0.3.1"
|
||||||
|
stderrlog = "0.5.1"
|
||||||
|
tokio = { version = "1.13.0", features = ["full"] }
|
||||||
|
tokio-rustls = "0.23.1"
|
||||||
|
toml = "0.5.8"
|
||||||
|
xdg = "2.4.0"
|
||||||
|
|
||||||
|
notify = { version = "5.0.0-pre.13", optional = true }
|
||||||
|
|
||||||
|
[dependencies.sqlx]
|
||||||
|
version = "0.5.9"
|
||||||
|
features = ["runtime-tokio-rustls", "sqlite", "json", "chrono"]
|
3
daemon/migrations/20211013053733_initial.down.sql
Normal file
3
daemon/migrations/20211013053733_initial.down.sql
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
DROP TABLE "messages";
|
||||||
|
DROP TABLE "mailboxes";
|
||||||
|
DROP TABLE "accounts";
|
33
daemon/migrations/20211013053733_initial.up.sql
Normal file
33
daemon/migrations/20211013053733_initial.up.sql
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
CREATE TABLE "accounts" (
|
||||||
|
"id" INTEGER PRIMARY KEY AUTOINCREMENT
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE "mailboxes" (
|
||||||
|
"account" INTEGER NOT NULL,
|
||||||
|
"name" TEXT NOT NULL,
|
||||||
|
"uidvalidity" INTEGER NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY ("account", "name")
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE "messages" (
|
||||||
|
-- "id" TEXT PRIMARY KEY,
|
||||||
|
"id" INTEGER PRIMARY KEY,
|
||||||
|
"mailbox_acct" TEXT NOT NULL,
|
||||||
|
"mailbox" TEXT NOT NULL,
|
||||||
|
"uid" INTEGER NOT NULL,
|
||||||
|
"date" DATETIME,
|
||||||
|
"subject" TEXT,
|
||||||
|
"from" JSON,
|
||||||
|
"sender" JSON,
|
||||||
|
"reply_to" JSON,
|
||||||
|
"to" JSON,
|
||||||
|
"cc" JSON,
|
||||||
|
"bcc" JSON,
|
||||||
|
"in_reply_to" TEXT,
|
||||||
|
"message_id" TEXT,
|
||||||
|
"mbox" BLOB,
|
||||||
|
|
||||||
|
FOREIGN KEY ("mailbox_acct") REFERENCES "mailboxes" ("account"),
|
||||||
|
FOREIGN KEY ("mailbox") REFERENCES "mailboxes" ("name")
|
||||||
|
);
|
80
daemon/src/config/mod.rs
Normal file
80
daemon/src/config/mod.rs
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
//! Everything related to config handling within the panorama daemon.
|
||||||
|
|
||||||
|
#[cfg(feature = "config-watch")]
|
||||||
|
mod watcher;
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
use std::fs::File;
|
||||||
|
use std::io::Read;
|
||||||
|
use std::path::{Path, PathBuf};
|
||||||
|
|
||||||
|
use anyhow::Result;
|
||||||
|
use panorama_imap::client::auth::ImapAuth;
|
||||||
|
|
||||||
|
#[cfg(feature = "config-watch")]
|
||||||
|
pub use self::watcher::{spawn_config_watcher_system, ConfigWatcher};
|
||||||
|
|
||||||
|
/// Configuration
|
||||||
|
#[derive(Default, Serialize, Deserialize, Clone, Debug)]
|
||||||
|
pub struct Config {
|
||||||
|
/// Version of the config to use
|
||||||
|
/// (potentially for migration later?)
|
||||||
|
pub version: String,
|
||||||
|
|
||||||
|
/// Directory to store panorama-related data in
|
||||||
|
pub data_dir: PathBuf,
|
||||||
|
|
||||||
|
/// Mail accounts
|
||||||
|
#[serde(rename = "mail")]
|
||||||
|
pub mail_accounts: HashMap<String, MailAccountConfig>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Config {
|
||||||
|
pub async fn from_file(path: impl AsRef<Path>) -> Result<Self> {
|
||||||
|
let mut file = File::open(path.as_ref())?;
|
||||||
|
let mut contents = Vec::new();
|
||||||
|
file.read_to_end(&mut contents)?;
|
||||||
|
let config = toml::from_slice(&contents)?;
|
||||||
|
Ok(config)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Configuration for a single mail account
|
||||||
|
#[derive(Serialize, Deserialize, Clone, Debug)]
|
||||||
|
pub struct MailAccountConfig {
|
||||||
|
/// Imap
|
||||||
|
pub imap: ImapConfig,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Configuring an IMAP server
|
||||||
|
#[derive(Serialize, Deserialize, Clone, Debug)]
|
||||||
|
pub struct ImapConfig {
|
||||||
|
/// Host of the IMAP server (needs to be hostname for TLS)
|
||||||
|
pub server: String,
|
||||||
|
|
||||||
|
/// Port of the IMAP server
|
||||||
|
pub port: u16,
|
||||||
|
|
||||||
|
/// TLS
|
||||||
|
pub tls: TlsMethod,
|
||||||
|
|
||||||
|
/// Auth
|
||||||
|
#[serde(flatten)]
|
||||||
|
pub auth: ImapAuth,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Describes when to perform the TLS handshake
|
||||||
|
#[derive(Serialize, Deserialize, Clone, Debug)]
|
||||||
|
pub enum TlsMethod {
|
||||||
|
/// Perform TLS handshake immediately upon connection
|
||||||
|
#[serde(rename = "on")]
|
||||||
|
On,
|
||||||
|
|
||||||
|
/// Perform TLS handshake after issuing the STARTTLS command
|
||||||
|
#[serde(rename = "starttls")]
|
||||||
|
Starttls,
|
||||||
|
|
||||||
|
/// Don't perform TLS handshake at all (unsecured)
|
||||||
|
#[serde(rename = "off")]
|
||||||
|
Off,
|
||||||
|
}
|
105
daemon/src/config/watcher.rs
Normal file
105
daemon/src/config/watcher.rs
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
use std::fs;
|
||||||
|
use std::path::Path;
|
||||||
|
use std::sync::mpsc as stdmpsc;
|
||||||
|
|
||||||
|
use anyhow::{Context, Result};
|
||||||
|
use futures::future::TryFutureExt;
|
||||||
|
use notify::{
|
||||||
|
recommended_watcher, Event as NotifyEvent, RecommendedWatcher, RecursiveMode,
|
||||||
|
Watcher,
|
||||||
|
};
|
||||||
|
use tokio::{sync::watch, task::JoinHandle};
|
||||||
|
use xdg::BaseDirectories;
|
||||||
|
|
||||||
|
use super::Config;
|
||||||
|
|
||||||
|
pub type ConfigWatcher = watch::Receiver<Config>;
|
||||||
|
|
||||||
|
/// Start the entire config watcher system, and return a
|
||||||
|
/// [ConfigWatcher][self::ConfigWatcher], which is a cloneable receiver of
|
||||||
|
/// config update events.
|
||||||
|
pub fn spawn_config_watcher_system() -> Result<(JoinHandle<()>, ConfigWatcher)>
|
||||||
|
{
|
||||||
|
let (tx, rx) = stdmpsc::channel();
|
||||||
|
let mut dir_watcher = recommended_watcher(move |res| match res {
|
||||||
|
Ok(event) => {
|
||||||
|
tx.send(event).unwrap();
|
||||||
|
}
|
||||||
|
Err(_) => {}
|
||||||
|
})?;
|
||||||
|
|
||||||
|
let xdg = BaseDirectories::new()?;
|
||||||
|
let config_home = xdg.get_config_home().join("panorama");
|
||||||
|
if !config_home.exists() {
|
||||||
|
fs::create_dir_all(&config_home)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
dir_watcher
|
||||||
|
.watch(&config_home, RecursiveMode::Recursive)
|
||||||
|
.context("adding watch for config home")?;
|
||||||
|
|
||||||
|
debug!("watching {:?}", config_home);
|
||||||
|
let (config_tx, config_update) = watch::channel(Config::default());
|
||||||
|
let handle = tokio::spawn(
|
||||||
|
start_notify_stream(dir_watcher, rx, config_home, config_tx)
|
||||||
|
.unwrap_or_else(|_err| todo!()),
|
||||||
|
);
|
||||||
|
Ok((handle, config_update))
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn start_notify_stream(
|
||||||
|
_watcher: RecommendedWatcher,
|
||||||
|
rx: stdmpsc::Receiver<NotifyEvent>,
|
||||||
|
config_home: impl AsRef<Path>,
|
||||||
|
config_tx: watch::Sender<Config>,
|
||||||
|
) -> Result<()> {
|
||||||
|
let config_home = config_home.as_ref().to_path_buf();
|
||||||
|
let config_path = config_home.join("panorama.toml");
|
||||||
|
|
||||||
|
// first shot
|
||||||
|
{
|
||||||
|
let config = Config::from_file(&config_path).await?;
|
||||||
|
config_tx.send(config)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
debug!("listening for inotify events");
|
||||||
|
loop {
|
||||||
|
use notify::EventKind;
|
||||||
|
|
||||||
|
let event = rx.recv()?;
|
||||||
|
debug!("notify event: {:?}", event);
|
||||||
|
|
||||||
|
match event.kind {
|
||||||
|
EventKind::Create(_) | EventKind::Modify(_) => {
|
||||||
|
let path_expect = config_home
|
||||||
|
.clone()
|
||||||
|
.join("panorama.toml")
|
||||||
|
.canonicalize()
|
||||||
|
.context("osu")?;
|
||||||
|
if !path_expect.exists() {
|
||||||
|
debug!("path {:?} doesn't exist", path_expect);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
match event.paths.iter().find(|p| *p == &path_expect) {
|
||||||
|
Some(path) => path.to_path_buf(),
|
||||||
|
None => continue,
|
||||||
|
};
|
||||||
|
|
||||||
|
// TODO: any better way to do this?
|
||||||
|
let config_path_c = config_path.canonicalize().context("cfg_path")?;
|
||||||
|
if config_path_c != path_expect {
|
||||||
|
debug!("did not match {:?} {:?}", config_path_c, path_expect);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
debug!("reading config from {:?}", path_expect);
|
||||||
|
let config = Config::from_file(path_expect).await.context("read")?;
|
||||||
|
// debug!("sending config {:?}", config);
|
||||||
|
config_tx.send(config)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
15
daemon/src/exit.rs
Normal file
15
daemon/src/exit.rs
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
use tokio::sync::oneshot;
|
||||||
|
|
||||||
|
/// Receiver whose sole purpose is to receive an "exit" notification.
|
||||||
|
///
|
||||||
|
/// This exit "pattern", along with message passing over channels, allows
|
||||||
|
/// panorama to introspect on running loops. For example, a server listen loop
|
||||||
|
/// would select over the `ExitListener`, and break the loop once it receives
|
||||||
|
/// something on that channel. Then it would perform any clean up it needs and
|
||||||
|
/// exit, returning any resources that can be reused.
|
||||||
|
///
|
||||||
|
/// This is useful, for example, during TLS upgrade with STARTTLS, where the
|
||||||
|
/// connection needs to stay open. We can send the existing loop an "exit"
|
||||||
|
/// notification, then it returns the open channel so we can perform TLS
|
||||||
|
/// negotiation and create a new tunneled connection.
|
||||||
|
pub type ExitListener = oneshot::Receiver<()>;
|
188
daemon/src/lib.rs
Normal file
188
daemon/src/lib.rs
Normal file
|
@ -0,0 +1,188 @@
|
||||||
|
//! Library functions used by the panorama daemon.
|
||||||
|
|
||||||
|
// #![deny(missing_docs)]
|
||||||
|
|
||||||
|
#[macro_use]
|
||||||
|
extern crate serde;
|
||||||
|
#[macro_use]
|
||||||
|
extern crate anyhow;
|
||||||
|
#[macro_use]
|
||||||
|
extern crate futures;
|
||||||
|
#[macro_use]
|
||||||
|
extern crate log;
|
||||||
|
#[macro_use]
|
||||||
|
extern crate derivative;
|
||||||
|
|
||||||
|
pub mod config;
|
||||||
|
pub mod mail;
|
||||||
|
|
||||||
|
mod exit;
|
||||||
|
mod service;
|
||||||
|
|
||||||
|
use std::path::PathBuf;
|
||||||
|
|
||||||
|
use anyhow::{Context, Result};
|
||||||
|
use clap::Parser;
|
||||||
|
use futures::future::FutureExt;
|
||||||
|
use tokio::{
|
||||||
|
fs::{self, OpenOptions},
|
||||||
|
sync::{mpsc, oneshot},
|
||||||
|
};
|
||||||
|
use xdg::BaseDirectories;
|
||||||
|
|
||||||
|
use crate::config::{Config, MailAccountConfig};
|
||||||
|
pub use crate::exit::ExitListener;
|
||||||
|
use crate::mail::{mail_main, MailStore};
|
||||||
|
|
||||||
|
/// The panorama daemon runs in the background and communicates with other
|
||||||
|
/// panorama components over Unix sockets.
|
||||||
|
#[derive(Debug, Parser)]
|
||||||
|
pub struct Options {
|
||||||
|
/// Config file path (defaults to XDG)
|
||||||
|
#[clap(long = "config", short = 'c')]
|
||||||
|
pub config_file: Option<PathBuf>,
|
||||||
|
|
||||||
|
/// Verbose mode (-v, -vv, -vvv, etc)
|
||||||
|
#[clap(short = 'v', long = "verbose", parse(from_occurrences))]
|
||||||
|
pub verbose: usize,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Primary entrypoint; this is the function that is called by main.
|
||||||
|
///
|
||||||
|
/// The purpose of this function is to parse command line arguments
|
||||||
|
/// and set up config watching, then call [`run_with_config`] with the config.
|
||||||
|
pub async fn run(opt: Options) -> Result<()> {
|
||||||
|
// if we're using a config-watcher, then start the watcher system
|
||||||
|
#[cfg(feature = "config-watch")]
|
||||||
|
{
|
||||||
|
let (_, mut config_watcher) = config::spawn_config_watcher_system()?;
|
||||||
|
|
||||||
|
loop {
|
||||||
|
let (exit_tx, exit_rx) = oneshot::channel();
|
||||||
|
let new_config = config_watcher.borrow().clone();
|
||||||
|
tokio::spawn(run_with_config(new_config, exit_rx));
|
||||||
|
|
||||||
|
// wait till the config has changed, then tell the current thread to
|
||||||
|
// stop
|
||||||
|
config_watcher.changed().await?;
|
||||||
|
let _ = exit_tx.send(());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: handle SIGHUP on Unix? pretty common for systemd to send this when
|
||||||
|
// reloading config files
|
||||||
|
|
||||||
|
// if not, just read the config once and run the daemon
|
||||||
|
#[cfg(not(feature = "config-watch"))]
|
||||||
|
{
|
||||||
|
let xdg = BaseDirectories::new()?;
|
||||||
|
let config_home = xdg.get_config_home().join("panorama");
|
||||||
|
if !config_home.exists() {
|
||||||
|
fs::create_dir_all(&config_home).await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let config_path = config_home.join("panorama.toml");
|
||||||
|
let config_path_c = config_path.canonicalize().context("cfg_path")?;
|
||||||
|
let config = Config::from_file(config_path_c).await.context("read")?;
|
||||||
|
|
||||||
|
let (_, exit_rx) = oneshot::channel();
|
||||||
|
run_with_config(config, exit_rx).await
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn run_with_config(config: Config, exit: ExitListener) -> Result<()> {
|
||||||
|
debug!("New config: {:?}", config);
|
||||||
|
|
||||||
|
// keep track of which threads need to be stopped when this function is
|
||||||
|
// stopped
|
||||||
|
let mut notify_mail_threads = Vec::new();
|
||||||
|
|
||||||
|
for (account_name, account) in config.mail_accounts {
|
||||||
|
let (exit_tx, exit_rx) = oneshot::channel();
|
||||||
|
tokio::spawn(async {
|
||||||
|
match run_single_mail_account(account_name, account, exit_rx).await {
|
||||||
|
Ok(_) => {}
|
||||||
|
Err(err) => panic!("failed: {:?}", err),
|
||||||
|
}
|
||||||
|
});
|
||||||
|
notify_mail_threads.push(exit_tx);
|
||||||
|
}
|
||||||
|
|
||||||
|
exit.await?;
|
||||||
|
for exit_tx in notify_mail_threads {
|
||||||
|
let _ = exit_tx.send(());
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The main loop for a single mail account.
|
||||||
|
///
|
||||||
|
/// The exit listener may allow the loop to be interrupted by the outside. When
|
||||||
|
/// anything is received on the exit listener, the loop exits gracefully.
|
||||||
|
async fn run_single_mail_account(
|
||||||
|
account_name: String,
|
||||||
|
account: MailAccountConfig,
|
||||||
|
exit: ExitListener,
|
||||||
|
) -> Result<()> {
|
||||||
|
debug!("run_single_mail_account({}, {:?})", account_name, account);
|
||||||
|
let mut exit = exit.fuse();
|
||||||
|
|
||||||
|
let xdg = BaseDirectories::new()?;
|
||||||
|
let data_home = xdg.get_data_home().join("panorama");
|
||||||
|
if !data_home.exists() {
|
||||||
|
fs::create_dir_all(&data_home)
|
||||||
|
.await
|
||||||
|
.context("could not create config directory")?;
|
||||||
|
}
|
||||||
|
let db_path = data_home.join("db.sqlite3");
|
||||||
|
debug!("Opening database at path: {:?}", db_path);
|
||||||
|
if !db_path.exists() {
|
||||||
|
OpenOptions::new()
|
||||||
|
.create(true)
|
||||||
|
.write(true)
|
||||||
|
.open(&db_path)
|
||||||
|
.await
|
||||||
|
.context("could not touch db path")?;
|
||||||
|
}
|
||||||
|
let db_path = db_path
|
||||||
|
.canonicalize()
|
||||||
|
.context("could not canonicalize db path")?;
|
||||||
|
let store =
|
||||||
|
MailStore::open(format!("sqlite://{}", db_path.to_string_lossy()))
|
||||||
|
.await
|
||||||
|
.context("couldn't open mail store")?;
|
||||||
|
|
||||||
|
let (tx, mut rx) = mpsc::unbounded_channel();
|
||||||
|
|
||||||
|
let sync_fut = mail_main(&account_name, account, tx, store).fuse();
|
||||||
|
pin_mut!(sync_fut);
|
||||||
|
|
||||||
|
debug!("Mail account loop for {}.", account_name);
|
||||||
|
loop {
|
||||||
|
select! {
|
||||||
|
res = sync_fut => match res {
|
||||||
|
Ok(_) => {},
|
||||||
|
Err(err) => {
|
||||||
|
error!("mail_main died with: {:?}", err);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
evt_opt = rx.recv().fuse() => {
|
||||||
|
let evt = match evt_opt {
|
||||||
|
Some(evt) => evt,
|
||||||
|
None => break,
|
||||||
|
};
|
||||||
|
|
||||||
|
debug!("Event: {:?}", evt);
|
||||||
|
},
|
||||||
|
|
||||||
|
// we're being told to exit the loop
|
||||||
|
_ = exit => break,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
debug!("disconnecting from account {}", account_name);
|
||||||
|
Ok(())
|
||||||
|
}
|
68
daemon/src/mail/mod.rs
Normal file
68
daemon/src/mail/mod.rs
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
#![allow(dead_code)]
|
||||||
|
|
||||||
|
mod sessions;
|
||||||
|
mod store;
|
||||||
|
mod sync;
|
||||||
|
|
||||||
|
use anyhow::Result;
|
||||||
|
use panorama_imap::{
|
||||||
|
client::ConfigBuilder,
|
||||||
|
pool::{ImapPool, PoolConfig},
|
||||||
|
};
|
||||||
|
use sqlx::migrate::Migrator;
|
||||||
|
use tokio::sync::mpsc::UnboundedSender;
|
||||||
|
|
||||||
|
use crate::{
|
||||||
|
config::{MailAccountConfig, TlsMethod},
|
||||||
|
mail::sync::run_sync_loop,
|
||||||
|
};
|
||||||
|
|
||||||
|
// pub use self::event::MailEvent;
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct MailEvent;
|
||||||
|
pub use self::store::MailStore;
|
||||||
|
|
||||||
|
static MIGRATOR: Migrator = sqlx::migrate!();
|
||||||
|
|
||||||
|
/// The main function for the IMAP thread.
|
||||||
|
///
|
||||||
|
/// This spawns two processes:
|
||||||
|
/// - A background synchronization thread
|
||||||
|
/// - An event listener / handler
|
||||||
|
pub async fn mail_main(
|
||||||
|
acct_name: impl AsRef<str>,
|
||||||
|
acct: MailAccountConfig,
|
||||||
|
_mail2ui_tx: UnboundedSender<MailEvent>,
|
||||||
|
mail_store: MailStore,
|
||||||
|
) -> Result<()> {
|
||||||
|
let acct_name = acct_name.as_ref();
|
||||||
|
debug!(
|
||||||
|
"Starting main synchronization procedure for account '{}'",
|
||||||
|
acct_name
|
||||||
|
);
|
||||||
|
|
||||||
|
// create a connection pool
|
||||||
|
let client_config = ConfigBuilder::default()
|
||||||
|
.hostname(acct.imap.server.clone())
|
||||||
|
.port(acct.imap.port)
|
||||||
|
.tls(matches!(acct.imap.tls, TlsMethod::On))
|
||||||
|
.build()?;
|
||||||
|
let pool_config = PoolConfig {
|
||||||
|
auth_config: acct.imap.auth,
|
||||||
|
client_config,
|
||||||
|
max_connections: 10,
|
||||||
|
};
|
||||||
|
let pool = ImapPool::new(pool_config);
|
||||||
|
|
||||||
|
// grab one connection from that pool and start running a background
|
||||||
|
// synchronization thread
|
||||||
|
let sync_conn = pool.acquire().await?;
|
||||||
|
let sync_loop = run_sync_loop(acct_name, sync_conn, mail_store);
|
||||||
|
|
||||||
|
// let the rest of the pool respond to requests coming from the channel
|
||||||
|
// TODO:
|
||||||
|
|
||||||
|
sync_loop.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
1
daemon/src/mail/sessions.rs
Normal file
1
daemon/src/mail/sessions.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
// TODO: figure out what sessions I actually want
|
51
daemon/src/mail/store.rs
Normal file
51
daemon/src/mail/store.rs
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
use anyhow::{Context, Result};
|
||||||
|
use panorama_imap::proto::response::{Mailbox, MessageAttribute};
|
||||||
|
use sqlx::sqlite::{SqlitePool, SqlitePoolOptions};
|
||||||
|
|
||||||
|
use super::MIGRATOR;
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct MailStore {
|
||||||
|
pool: SqlitePool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl MailStore {
|
||||||
|
/// Creates a new store tied to a SQLite database.
|
||||||
|
pub async fn open(uri: impl AsRef<str>) -> Result<Self> {
|
||||||
|
let uri = uri.as_ref();
|
||||||
|
let pool = SqlitePoolOptions::new().connect(uri).await?;
|
||||||
|
|
||||||
|
// run migrations, if available
|
||||||
|
MIGRATOR.run(&pool).await.with_context(|| {
|
||||||
|
format!("could not run migrations on the pool at {}", uri)
|
||||||
|
})?;
|
||||||
|
|
||||||
|
Ok(MailStore { pool })
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn store_email(
|
||||||
|
&self,
|
||||||
|
acct_name: impl AsRef<str>,
|
||||||
|
mailbox: &Mailbox,
|
||||||
|
uid: u32,
|
||||||
|
uidvalidity: u32,
|
||||||
|
attrs: Vec<MessageAttribute>,
|
||||||
|
) -> Result<()> {
|
||||||
|
let acct_name = acct_name.as_ref();
|
||||||
|
sqlx::query(
|
||||||
|
r#"
|
||||||
|
INSERT INTO messages
|
||||||
|
(mailbox_acct, mailbox, uid, uidvalidity)
|
||||||
|
VALUES ($1, $2, $3, $4)
|
||||||
|
"#,
|
||||||
|
)
|
||||||
|
.bind(acct_name)
|
||||||
|
.bind(mailbox.to_string())
|
||||||
|
.bind(uid)
|
||||||
|
.bind(uidvalidity)
|
||||||
|
.execute(&self.pool)
|
||||||
|
.await
|
||||||
|
.context("could not insert message into store")?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
165
daemon/src/mail/sync.rs
Normal file
165
daemon/src/mail/sync.rs
Normal file
|
@ -0,0 +1,165 @@
|
||||||
|
use anyhow::{Context, Result};
|
||||||
|
use futures::{StreamExt, TryStreamExt};
|
||||||
|
use panorama_imap::{
|
||||||
|
client::ClientAuthenticated,
|
||||||
|
proto::{
|
||||||
|
command::FetchItems,
|
||||||
|
response::{MailboxData, Response},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
use super::MailStore;
|
||||||
|
|
||||||
|
pub async fn run_sync_loop(
|
||||||
|
acct_name: impl AsRef<str>,
|
||||||
|
mut conn: ClientAuthenticated,
|
||||||
|
mail_store: MailStore,
|
||||||
|
) -> Result<()> {
|
||||||
|
let acct_name = acct_name.as_ref();
|
||||||
|
// get the list of folders first
|
||||||
|
debug!("Retrieving folder list...");
|
||||||
|
let folder_list = conn.list().await?;
|
||||||
|
debug!("Mailbox list: {:?}", folder_list);
|
||||||
|
|
||||||
|
// let _ = mail2ui_tx.send(MailEvent::FolderList(
|
||||||
|
// acct_name.clone(),
|
||||||
|
// folder_list.clone(),
|
||||||
|
// ));
|
||||||
|
|
||||||
|
for folder in folder_list.iter() {
|
||||||
|
debug!("folder: {:?}", folder);
|
||||||
|
let select = conn.select("INBOX").await?;
|
||||||
|
debug!("select response: {:?}", select);
|
||||||
|
if let (Some(_exists), Some(uidvalidity)) =
|
||||||
|
(select.exists, select.uid_validity)
|
||||||
|
{
|
||||||
|
// figure out which uids don't exist locally yet
|
||||||
|
// let new_uids = vec![];
|
||||||
|
// let new_uids =
|
||||||
|
// stream::iter(1..exists).map(Ok).try_filter_map(|uid| {
|
||||||
|
// todo!()
|
||||||
|
// // mail_store.try_identify_email(&acct_name, &folder,
|
||||||
|
// uid, uidvalidity, None) // //
|
||||||
|
// invert the option to only select uids that
|
||||||
|
// haven't been downloaded //
|
||||||
|
// .map_ok(move |o| o.map_or_else(move || Some(uid), |v| None))
|
||||||
|
// // .map_err(|err| err.context("error checking if
|
||||||
|
// the email is already downloaded
|
||||||
|
// [try_identify_email]")) }).try_collect::
|
||||||
|
// <Vec<_>>().await?;
|
||||||
|
if true {
|
||||||
|
// !new_uids.is_empty() {
|
||||||
|
// debug!("fetching uids {:?}", new_uids);
|
||||||
|
let fetched = conn
|
||||||
|
.uid_fetch(&[], &[1..200], FetchItems::Envelope)
|
||||||
|
.await
|
||||||
|
.context("error fetching uids")?;
|
||||||
|
fetched
|
||||||
|
.map(Ok)
|
||||||
|
.try_for_each_concurrent(None, |(uid, attrs)| {
|
||||||
|
debug!("GOT MESSAGE {} {:?}", uid, attrs);
|
||||||
|
mail_store.store_email(&acct_name, folder, uid, uidvalidity, attrs)
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.context("error during fetch-store")?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tokio::time::sleep(std::time::Duration::from_secs(50)).await;
|
||||||
|
|
||||||
|
// TODO: remove this later
|
||||||
|
// continue;
|
||||||
|
|
||||||
|
// let's just select INBOX for now, maybe have a config for default
|
||||||
|
// mailbox later?
|
||||||
|
|
||||||
|
debug!("selecting the INBOX mailbox");
|
||||||
|
let select = conn.select("INBOX").await?;
|
||||||
|
debug!("select result: {:?}", select);
|
||||||
|
|
||||||
|
loop {
|
||||||
|
let message_uids = conn.uid_search().await?;
|
||||||
|
let message_uids = message_uids.into_iter().take(30).collect::<Vec<_>>();
|
||||||
|
// let _ = mail2ui_tx.send(MailEvent::MessageUids(
|
||||||
|
// acct_name.clone(),
|
||||||
|
// message_uids.clone(),
|
||||||
|
// ));
|
||||||
|
// TODO: make this happen concurrently with the main loop?
|
||||||
|
let mut message_list = conn
|
||||||
|
.uid_fetch(&message_uids, &[], FetchItems::All)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
while let Some((_uid, _attrs)) = message_list.next().await {
|
||||||
|
// let evt = MailEvent::UpdateUid(acct_name.clone(), uid,
|
||||||
|
// attrs); TODO: probably odn't care about this?
|
||||||
|
// let _ = mail2ui_tx.send(evt);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: check if IDLE is supported
|
||||||
|
let supports_idle = true; // authed.has_capability("IDLE").await?;
|
||||||
|
|
||||||
|
if supports_idle {
|
||||||
|
let mut idle_stream = conn.idle().await?;
|
||||||
|
loop {
|
||||||
|
let evt = match idle_stream.next().await {
|
||||||
|
Some(v) => v,
|
||||||
|
None => break,
|
||||||
|
};
|
||||||
|
|
||||||
|
debug!("got an event: {:?}", evt);
|
||||||
|
match evt {
|
||||||
|
Response::MailboxData(MailboxData::Exists(uid)) => {
|
||||||
|
debug!("NEW MESSAGE WITH UID {:?}, droping everything", uid);
|
||||||
|
// send DONE to stop the idle
|
||||||
|
std::mem::drop(idle_stream);
|
||||||
|
// let handle = Notification::new()
|
||||||
|
// .summary("New Email")
|
||||||
|
// .body("TODO")
|
||||||
|
// .icon("firefox")
|
||||||
|
// .timeout(Timeout::Milliseconds(6000))
|
||||||
|
// .show()?;
|
||||||
|
let message_uids = conn.uid_search().await?;
|
||||||
|
let message_uids =
|
||||||
|
message_uids.into_iter().take(20).collect::<Vec<_>>();
|
||||||
|
// let _ = mail2ui_tx.send(MailEvent::MessageUids(
|
||||||
|
// acct_name.clone(),
|
||||||
|
// message_uids.clone(),
|
||||||
|
// ));
|
||||||
|
// TODO: make this happen concurrently with the main
|
||||||
|
// loop?
|
||||||
|
let mut message_list = conn
|
||||||
|
.uid_fetch(&message_uids, &[], FetchItems::All)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
while let Some((_uid, _attrs)) = message_list.next().await {
|
||||||
|
// let evt = MailEvent::UpdateUid(acct_name.
|
||||||
|
// clone(), uid, attrs);
|
||||||
|
// debug!("sent {:?}", evt);
|
||||||
|
// mail2ui_tx.send(evt);
|
||||||
|
}
|
||||||
|
|
||||||
|
idle_stream = conn.idle().await?;
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
loop {
|
||||||
|
tokio::time::sleep(std::time::Duration::from_secs(20)).await;
|
||||||
|
debug!("heartbeat");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if false {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// wait a bit so we're not hitting the server really fast if the fail
|
||||||
|
// happens early on
|
||||||
|
//
|
||||||
|
// TODO: some kind of smart exponential backoff that considers some time
|
||||||
|
// threshold to be a failing case?
|
||||||
|
tokio::time::sleep(std::time::Duration::from_secs(5)).await;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
18
daemon/src/main.rs
Normal file
18
daemon/src/main.rs
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
use anyhow::Result;
|
||||||
|
use clap::Parser;
|
||||||
|
use panorama_daemon::Options;
|
||||||
|
|
||||||
|
#[tokio::main]
|
||||||
|
async fn main() -> Result<()> {
|
||||||
|
let opt = Options::parse();
|
||||||
|
|
||||||
|
stderrlog::new()
|
||||||
|
.module(module_path!())
|
||||||
|
.module("panorama_daemon")
|
||||||
|
.module("panorama_imap")
|
||||||
|
.verbosity(opt.verbose)
|
||||||
|
.init()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
panorama_daemon::run(opt).await
|
||||||
|
}
|
4
daemon/src/service.rs
Normal file
4
daemon/src/service.rs
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
pub trait Service<Request> {
|
||||||
|
type Response;
|
||||||
|
type Error;
|
||||||
|
}
|
23
deny.toml
Normal file
23
deny.toml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
targets = [ { triple = "x86_64-unknown-linux-gnu" }, ]
|
||||||
|
|
||||||
|
|
||||||
|
[advisories]
|
||||||
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
||||||
|
vulnerability = "deny"
|
||||||
|
unmaintained = "warn"
|
||||||
|
yanked = "deny"
|
||||||
|
notice = "warn"
|
||||||
|
|
||||||
|
|
||||||
|
[licenses]
|
||||||
|
unlicensed = "deny"
|
||||||
|
default = "deny"
|
||||||
|
copyleft = "allow"
|
||||||
|
allow-osi-fsf-free = "either"
|
||||||
|
|
||||||
|
|
||||||
|
[[licenses.clarify]]
|
||||||
|
name = "ring"
|
||||||
|
version = "*"
|
||||||
|
expression = "MIT AND ISC AND OpenSSL"
|
||||||
|
license-files = [ { path = "LICENSE", hash = 0xbd0eed23 } ]
|
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
mail:
|
||||||
|
image: greenmail/standalone
|
||||||
|
ports:
|
||||||
|
- "3025:3025" # SMTP
|
||||||
|
- "3143:3143" # IMAP
|
||||||
|
- "3465:3465" # SMTPS
|
||||||
|
- "3993:3993" # IMAPS
|
||||||
|
- "3080:8080" # Web
|
||||||
|
environment:
|
||||||
|
- "GREENMAIL_OPTS=-Dgreenmail.setup.test.all -Dgreenmail.users=user:pass -Dgreenmail.verbose"
|
22
docs/.gitignore
vendored
22
docs/.gitignore
vendored
|
@ -1,21 +1 @@
|
||||||
# build output
|
book
|
||||||
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
|
|
||||||
|
|
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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
11
docs/SUMMARY.md
Normal file
11
docs/SUMMARY.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Summary
|
||||||
|
|
||||||
|
- [Front](./front.md)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Daemon
|
||||||
|
|
||||||
|
- [Daemon](./daemon/index.md)
|
||||||
|
- [API](./daemon/api.md)
|
||||||
|
- [Hooks](./daemon/hooks.md)
|
|
@ -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],
|
|
||||||
},
|
|
||||||
});
|
|
6
docs/book.toml
Normal file
6
docs/book.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[book]
|
||||||
|
authors = ["Michael Zhang"]
|
||||||
|
language = "en"
|
||||||
|
multilingual = false
|
||||||
|
src = "."
|
||||||
|
title = "panorama"
|
BIN
docs/bun.lockb
BIN
docs/bun.lockb
Binary file not shown.
56
docs/daemon/api.md
Normal file
56
docs/daemon/api.md
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
# Daemon API
|
||||||
|
|
||||||
|
To communicate with the daemon start by connecting to the socket it exposes.
|
||||||
|
This opens a long-lasting connection that can be used to send RPC messages.
|
||||||
|
|
||||||
|
## Authentication
|
||||||
|
|
||||||
|
If connecting over a network rather than a socket, the client should
|
||||||
|
authenticate in order to talk to panorama at all. The framework for this is _TLS
|
||||||
|
client authentication_.
|
||||||
|
|
||||||
|
### Namespace `panorama::auth`
|
||||||
|
|
||||||
|
TODO:
|
||||||
|
|
||||||
|
## Standard API
|
||||||
|
|
||||||
|
### Namespace `panorama::mail`
|
||||||
|
|
||||||
|
#### `listen-receive`
|
||||||
|
|
||||||
|
```
|
||||||
|
(account : Option<String>) -> Stream<MessageNotification>
|
||||||
|
```
|
||||||
|
|
||||||
|
Begin subscribing to when mail is received for a particular account if provided,
|
||||||
|
or all accounts by default.
|
||||||
|
|
||||||
|
#### `send`
|
||||||
|
|
||||||
|
```
|
||||||
|
(message : SendMessage) -> Result<()>
|
||||||
|
```
|
||||||
|
|
||||||
|
Send an email. If the send fails the result is returned immediately without
|
||||||
|
retry.
|
||||||
|
|
||||||
|
TODO: send with retry?
|
||||||
|
|
||||||
|
#### `search`
|
||||||
|
|
||||||
|
```
|
||||||
|
(query : StructuredQuery) -> Result<SearchResultPage>
|
||||||
|
```
|
||||||
|
|
||||||
|
Search for messages, returns a summary of messages + first sentence.
|
||||||
|
|
||||||
|
## Extensions
|
||||||
|
|
||||||
|
Since extensions may be separate processes, they must also communicate with the
|
||||||
|
daemon, but since the daemon is responsible for launching them, they don't have
|
||||||
|
to connect to the socket explicitly.
|
||||||
|
|
||||||
|
### Namespace `panorama::extensions`
|
||||||
|
|
||||||
|
|
1
docs/daemon/hooks.md
Normal file
1
docs/daemon/hooks.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# Hooks
|
32
docs/daemon/index.md
Normal file
32
docs/daemon/index.md
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Daemon
|
||||||
|
|
||||||
|
The panorama daemon runs locally and serves as the primary controller of all of
|
||||||
|
panorama's functions. Since it needs to be ready to listen for clients at any
|
||||||
|
time, it should remain running in the background.
|
||||||
|
|
||||||
|
Planned functionality:
|
||||||
|
|
||||||
|
- Email
|
||||||
|
- Synchronizes with mail servers, aggregating a local database of messages.
|
||||||
|
- Build a comprehensive and full-text search index over all local messages.
|
||||||
|
- Send email by communicating with SMTP servers.
|
||||||
|
- Calendar
|
||||||
|
- Import ical files.
|
||||||
|
- Send reminders to various outputs.
|
||||||
|
- Contact book
|
||||||
|
- Birthday calendar? Gotta figure out how virtual calendars should work
|
||||||
|
|
||||||
|
Stretch goals:
|
||||||
|
|
||||||
|
- General
|
||||||
|
- Extensions by way of running a subprocess, should be able to register
|
||||||
|
namespaced message types.
|
||||||
|
- Email
|
||||||
|
- Expose a JMAP API, allowing other clients to connect to it.
|
||||||
|
- Massively configurable hooks.
|
||||||
|
- Chat???
|
||||||
|
- IRC / Matrix support possibly
|
||||||
|
- Arbitrary object storage?
|
||||||
|
- Probably gives extensions a good way of storing data. See y.js
|
||||||
|
- Recipe book, grocery list, fitness tracking from apps, etc.
|
||||||
|
- Synchronizing with other peers??? Great for shared grocery list
|
3
docs/front.md
Normal file
3
docs/front.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Front
|
||||||
|
|
||||||
|
|
|
@ -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 |
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
|
|
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" />
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"extends": "astro/tsconfigs/strict",
|
|
||||||
"compilerOptions": { "skipLibCheck": true },
|
|
||||||
"exclude": ["dist"]
|
|
||||||
}
|
|
98
flake.lock
98
flake.lock
|
@ -1,98 +0,0 @@
|
||||||
{
|
|
||||||
"nodes": {
|
|
||||||
"fenix": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
],
|
|
||||||
"rust-analyzer-src": "rust-analyzer-src"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1719469637,
|
|
||||||
"narHash": "sha256-cOA40mIqjIIf+mCdtuglxdP/0to1LDL1Lkef7vqVykc=",
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "fenix",
|
|
||||||
"rev": "3374c72204714eb979719e77a1856009584ba4d7",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "fenix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-utils": {
|
|
||||||
"inputs": {
|
|
||||||
"systems": "systems"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1710146030,
|
|
||||||
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"id": "flake-utils",
|
|
||||||
"type": "indirect"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1719554759,
|
|
||||||
"narHash": "sha256-B64IsJMis4A9dePPOKi2T5EEs9AJWfsvkMKSh9/NANs=",
|
|
||||||
"owner": "nixos",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "44677ecde6c8a7a7e32f9a2709c316975bf89a60",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nixos",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": {
|
|
||||||
"inputs": {
|
|
||||||
"fenix": "fenix",
|
|
||||||
"flake-utils": "flake-utils",
|
|
||||||
"nixpkgs": "nixpkgs"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rust-analyzer-src": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1719378198,
|
|
||||||
"narHash": "sha256-c1jWpdPlZyL6/a0pWa30680ivP7nMLNBPuz5hMGoifg=",
|
|
||||||
"owner": "rust-lang",
|
|
||||||
"repo": "rust-analyzer",
|
|
||||||
"rev": "b33a0cae335b85e11a700df2d9a7c0006a3b80ec",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "rust-lang",
|
|
||||||
"ref": "nightly",
|
|
||||||
"repo": "rust-analyzer",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"systems": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1681028828,
|
|
||||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": "root",
|
|
||||||
"version": 7
|
|
||||||
}
|
|
42
flake.nix
42
flake.nix
|
@ -1,42 +0,0 @@
|
||||||
{
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs";
|
|
||||||
fenix = {
|
|
||||||
url = "github:nix-community/fenix";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, flake-utils, fenix }:
|
|
||||||
flake-utils.lib.eachDefaultSystem (system:
|
|
||||||
let
|
|
||||||
pkgs = import nixpkgs {
|
|
||||||
inherit system;
|
|
||||||
overlays = [ fenix.overlays.default ];
|
|
||||||
};
|
|
||||||
|
|
||||||
toolchain = pkgs.fenix.stable;
|
|
||||||
|
|
||||||
flakePkgs = {
|
|
||||||
#markout = pkgs.callPackage ./. { inherit toolchain; };
|
|
||||||
};
|
|
||||||
in rec {
|
|
||||||
packages = flake-utils.lib.flattenTree flakePkgs;
|
|
||||||
|
|
||||||
devShell = pkgs.mkShell {
|
|
||||||
inputsFrom = with packages;
|
|
||||||
[
|
|
||||||
#markout
|
|
||||||
];
|
|
||||||
packages = (with pkgs; [
|
|
||||||
cargo-watch
|
|
||||||
cargo-deny
|
|
||||||
cargo-edit
|
|
||||||
corepack
|
|
||||||
nodejs_20
|
|
||||||
sqlx-cli
|
|
||||||
go
|
|
||||||
]) ++ (with toolchain; [ cargo rustc rustfmt clippy ]);
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
0
imap/.gitignore
vendored
Normal file
0
imap/.gitignore
vendored
Normal file
53
imap/Cargo.toml
Normal file
53
imap/Cargo.toml
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
[package]
|
||||||
|
name = "panorama-imap"
|
||||||
|
description = "IMAP protocol implementation with high-level async client."
|
||||||
|
version = "0.0.4"
|
||||||
|
edition = "2018"
|
||||||
|
authors = ["Michael Zhang <mail@mzhang.io>"]
|
||||||
|
keywords = ["imap", "email", "parser"]
|
||||||
|
license = "GPL-3.0-or-later"
|
||||||
|
categories = ["email"]
|
||||||
|
repository = "https://git.mzhang.io/michael/panorama"
|
||||||
|
documentation = "https://docs.rs/panorama-imap"
|
||||||
|
readme = "README.md"
|
||||||
|
workspace = ".."
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = ["serialize", "pool", "rfc2177", "rfc6154"]
|
||||||
|
low-level = []
|
||||||
|
serialize = ["serde/derive"]
|
||||||
|
pool = ["crossbeam"]
|
||||||
|
rfc2087 = [] # quota
|
||||||
|
rfc2177 = [] # idle
|
||||||
|
rfc4315 = [] # uidplus
|
||||||
|
rfc6154 = [] # list
|
||||||
|
fuzzing = ["arbitrary", "panorama-proto-common/fuzzing"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
anyhow = { version = "1.0.45", features = ["backtrace"] }
|
||||||
|
async-trait = "0.1.51"
|
||||||
|
bitflags = "1.3.2"
|
||||||
|
bytes = "1.1.0"
|
||||||
|
chrono = "0.4.19"
|
||||||
|
derivative = "2.2.0"
|
||||||
|
derive_builder = "0.10.2"
|
||||||
|
format-bytes = "0.2.2"
|
||||||
|
futures = "0.3.17"
|
||||||
|
log = "0.4.14"
|
||||||
|
nom = "7.0.0"
|
||||||
|
stderrlog = { version = "0.5.1", optional = true }
|
||||||
|
tokio = { version = "1.13.0", features = ["full"] }
|
||||||
|
tokio-rustls = { version = "0.23.1", features = ["dangerous_configuration"] }
|
||||||
|
tokio-util = { version = "0.6.9", features = ["codec"] }
|
||||||
|
webpki-roots = "0.22.1"
|
||||||
|
panorama-proto-common = { path = "../proto-common" }
|
||||||
|
|
||||||
|
# for fuzzing
|
||||||
|
arbitrary = { version = "1.0.2", optional = true, features = ["derive"] }
|
||||||
|
|
||||||
|
crossbeam = { version = "0.8.1", optional = true }
|
||||||
|
serde = { version = "1.0.130", optional = true }
|
||||||
|
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
maplit = "1.0.2"
|
3
imap/README.md
Normal file
3
imap/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
panorama-imap
|
||||||
|
===
|
||||||
|
|
4
imap/fuzz/.gitignore
vendored
Normal file
4
imap/fuzz/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
|
||||||
|
target
|
||||||
|
corpus
|
||||||
|
artifacts
|
943
imap/fuzz/Cargo.lock
generated
Normal file
943
imap/fuzz/Cargo.lock
generated
Normal file
|
@ -0,0 +1,943 @@
|
||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
version = 3
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "anyhow"
|
||||||
|
version = "1.0.43"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "28ae2b3dec75a406790005a200b1bd89785afc02517a00ca99ecfe093ee9e6cf"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "arbitrary"
|
||||||
|
version = "1.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "237430fd6ed3740afe94eefcc278ae21e050285be882804e0d6e8695f0c94691"
|
||||||
|
dependencies = [
|
||||||
|
"derive_arbitrary",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "arrayvec"
|
||||||
|
version = "0.5.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "async-trait"
|
||||||
|
version = "0.1.51"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "autocfg"
|
||||||
|
version = "1.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "base64"
|
||||||
|
version = "0.13.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bitflags"
|
||||||
|
version = "1.3.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bitvec"
|
||||||
|
version = "0.19.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321"
|
||||||
|
dependencies = [
|
||||||
|
"funty",
|
||||||
|
"radium",
|
||||||
|
"tap",
|
||||||
|
"wyz",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bstr"
|
||||||
|
version = "0.2.15"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
|
||||||
|
dependencies = [
|
||||||
|
"lazy_static",
|
||||||
|
"memchr",
|
||||||
|
"regex-automata",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bumpalo"
|
||||||
|
version = "3.7.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bytes"
|
||||||
|
version = "1.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "cc"
|
||||||
|
version = "1.0.69"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "cfg-if"
|
||||||
|
version = "1.0.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "chrono"
|
||||||
|
version = "0.4.19"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"num-integer",
|
||||||
|
"num-traits",
|
||||||
|
"time",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "darling"
|
||||||
|
version = "0.12.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
|
||||||
|
dependencies = [
|
||||||
|
"darling_core",
|
||||||
|
"darling_macro",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "darling_core"
|
||||||
|
version = "0.12.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
|
||||||
|
dependencies = [
|
||||||
|
"fnv",
|
||||||
|
"ident_case",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"strsim",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "darling_macro"
|
||||||
|
version = "0.12.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
|
||||||
|
dependencies = [
|
||||||
|
"darling_core",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "derivative"
|
||||||
|
version = "2.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "derive_arbitrary"
|
||||||
|
version = "1.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5f1281ee141df08871db9fe261ab5312179eac32d1e314134ceaa8dd7c042f5a"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "derive_builder"
|
||||||
|
version = "0.10.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d13202debe11181040ae9063d739fa32cfcaaebe2275fe387703460ae2365b30"
|
||||||
|
dependencies = [
|
||||||
|
"derive_builder_macro",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "derive_builder_core"
|
||||||
|
version = "0.10.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "66e616858f6187ed828df7c64a6d71720d83767a7f19740b2d1b6fe6327b36e5"
|
||||||
|
dependencies = [
|
||||||
|
"darling",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "derive_builder_macro"
|
||||||
|
version = "0.10.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "58a94ace95092c5acb1e97a7e846b310cfbd499652f72297da7493f618a98d73"
|
||||||
|
dependencies = [
|
||||||
|
"derive_builder_core",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "fnv"
|
||||||
|
version = "1.0.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "format-bytes"
|
||||||
|
version = "0.2.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1c4e89040c7fd7b4e6ba2820ac705a45def8a0c098ec78d170ae88f1ef1d5762"
|
||||||
|
dependencies = [
|
||||||
|
"format-bytes-macros",
|
||||||
|
"proc-macro-hack",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "format-bytes-macros"
|
||||||
|
version = "0.3.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b05089e341a0460449e2210c3bf7b61597860b07f0deae58da38dbed0a4c6b6d"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro-hack",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "funty"
|
||||||
|
version = "1.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1adc00f486adfc9ce99f77d717836f0c5aa84965eb0b4f051f4e83f7cab53f8b"
|
||||||
|
dependencies = [
|
||||||
|
"futures-channel",
|
||||||
|
"futures-core",
|
||||||
|
"futures-executor",
|
||||||
|
"futures-io",
|
||||||
|
"futures-sink",
|
||||||
|
"futures-task",
|
||||||
|
"futures-util",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures-channel"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9"
|
||||||
|
dependencies = [
|
||||||
|
"futures-core",
|
||||||
|
"futures-sink",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures-core"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures-executor"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "4d0d535a57b87e1ae31437b892713aee90cd2d7b0ee48727cd11fc72ef54761c"
|
||||||
|
dependencies = [
|
||||||
|
"futures-core",
|
||||||
|
"futures-task",
|
||||||
|
"futures-util",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures-io"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0b0e06c393068f3a6ef246c75cdca793d6a46347e75286933e5e75fd2fd11582"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures-macro"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c54913bae956fb8df7f4dc6fc90362aa72e69148e3f39041fbe8742d21e0ac57"
|
||||||
|
dependencies = [
|
||||||
|
"autocfg",
|
||||||
|
"proc-macro-hack",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures-sink"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures-task"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "futures-util"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78"
|
||||||
|
dependencies = [
|
||||||
|
"autocfg",
|
||||||
|
"futures-channel",
|
||||||
|
"futures-core",
|
||||||
|
"futures-io",
|
||||||
|
"futures-macro",
|
||||||
|
"futures-sink",
|
||||||
|
"futures-task",
|
||||||
|
"memchr",
|
||||||
|
"pin-project-lite",
|
||||||
|
"pin-utils",
|
||||||
|
"proc-macro-hack",
|
||||||
|
"proc-macro-nested",
|
||||||
|
"slab",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "hermit-abi"
|
||||||
|
version = "0.1.19"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ident_case"
|
||||||
|
version = "1.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "instant"
|
||||||
|
version = "0.1.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "js-sys"
|
||||||
|
version = "0.3.53"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e4bf49d50e2961077d9c99f4b7997d770a1114f087c3c2e0069b36c13fc2979d"
|
||||||
|
dependencies = [
|
||||||
|
"wasm-bindgen",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "lazy_static"
|
||||||
|
version = "1.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "lexical-core"
|
||||||
|
version = "0.7.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
|
||||||
|
dependencies = [
|
||||||
|
"arrayvec",
|
||||||
|
"bitflags",
|
||||||
|
"cfg-if",
|
||||||
|
"ryu",
|
||||||
|
"static_assertions",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "libc"
|
||||||
|
version = "0.2.100"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a1fa8cddc8fbbee11227ef194b5317ed014b8acbf15139bd716a18ad3fe99ec5"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "libfuzzer-sys"
|
||||||
|
version = "0.4.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "36a9a84a6e8b55dfefb04235e55edb2b9a2a18488fcae777a6bdaa6f06f1deb3"
|
||||||
|
dependencies = [
|
||||||
|
"arbitrary",
|
||||||
|
"cc",
|
||||||
|
"once_cell",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "lock_api"
|
||||||
|
version = "0.4.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
|
||||||
|
dependencies = [
|
||||||
|
"scopeguard",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "log"
|
||||||
|
version = "0.4.14"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "memchr"
|
||||||
|
version = "2.3.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "mio"
|
||||||
|
version = "0.7.13"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"log",
|
||||||
|
"miow",
|
||||||
|
"ntapi",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "miow"
|
||||||
|
version = "0.3.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
|
||||||
|
dependencies = [
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "nom"
|
||||||
|
version = "6.2.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9c5c51b9083a3c620fa67a2a635d1ce7d95b897e957d6b28ff9a5da960a103a6"
|
||||||
|
dependencies = [
|
||||||
|
"bitvec",
|
||||||
|
"funty",
|
||||||
|
"lexical-core",
|
||||||
|
"memchr",
|
||||||
|
"version_check",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ntapi"
|
||||||
|
version = "0.3.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
|
||||||
|
dependencies = [
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "num-integer"
|
||||||
|
version = "0.1.44"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
|
||||||
|
dependencies = [
|
||||||
|
"autocfg",
|
||||||
|
"num-traits",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "num-traits"
|
||||||
|
version = "0.2.14"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
|
||||||
|
dependencies = [
|
||||||
|
"autocfg",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "num_cpus"
|
||||||
|
version = "1.13.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
|
||||||
|
dependencies = [
|
||||||
|
"hermit-abi",
|
||||||
|
"libc",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "once_cell"
|
||||||
|
version = "1.8.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "panorama-imap"
|
||||||
|
version = "0.0.4"
|
||||||
|
dependencies = [
|
||||||
|
"anyhow",
|
||||||
|
"arbitrary",
|
||||||
|
"async-trait",
|
||||||
|
"bitflags",
|
||||||
|
"bytes",
|
||||||
|
"chrono",
|
||||||
|
"derivative",
|
||||||
|
"derive_builder",
|
||||||
|
"format-bytes",
|
||||||
|
"futures",
|
||||||
|
"log",
|
||||||
|
"nom",
|
||||||
|
"panorama-proto-common",
|
||||||
|
"tokio",
|
||||||
|
"tokio-rustls",
|
||||||
|
"tokio-util",
|
||||||
|
"webpki-roots",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "panorama-imap-fuzz"
|
||||||
|
version = "0.0.0"
|
||||||
|
dependencies = [
|
||||||
|
"format-bytes",
|
||||||
|
"libfuzzer-sys",
|
||||||
|
"panorama-imap",
|
||||||
|
"panorama-proto-common",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "panorama-proto-common"
|
||||||
|
version = "0.0.1"
|
||||||
|
dependencies = [
|
||||||
|
"anyhow",
|
||||||
|
"arbitrary",
|
||||||
|
"bstr",
|
||||||
|
"bytes",
|
||||||
|
"format-bytes",
|
||||||
|
"log",
|
||||||
|
"nom",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "parking_lot"
|
||||||
|
version = "0.11.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
|
||||||
|
dependencies = [
|
||||||
|
"instant",
|
||||||
|
"lock_api",
|
||||||
|
"parking_lot_core",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "parking_lot_core"
|
||||||
|
version = "0.8.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
"instant",
|
||||||
|
"libc",
|
||||||
|
"redox_syscall",
|
||||||
|
"smallvec",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pin-project-lite"
|
||||||
|
version = "0.2.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pin-utils"
|
||||||
|
version = "0.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "proc-macro-hack"
|
||||||
|
version = "0.5.19"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "proc-macro-nested"
|
||||||
|
version = "0.1.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "proc-macro2"
|
||||||
|
version = "1.0.28"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612"
|
||||||
|
dependencies = [
|
||||||
|
"unicode-xid",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "quote"
|
||||||
|
version = "1.0.9"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "radium"
|
||||||
|
version = "0.5.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "redox_syscall"
|
||||||
|
version = "0.2.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "regex-automata"
|
||||||
|
version = "0.1.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ring"
|
||||||
|
version = "0.16.20"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
|
||||||
|
dependencies = [
|
||||||
|
"cc",
|
||||||
|
"libc",
|
||||||
|
"once_cell",
|
||||||
|
"spin",
|
||||||
|
"untrusted",
|
||||||
|
"web-sys",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rustls"
|
||||||
|
version = "0.19.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
|
||||||
|
dependencies = [
|
||||||
|
"base64",
|
||||||
|
"log",
|
||||||
|
"ring",
|
||||||
|
"sct",
|
||||||
|
"webpki",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ryu"
|
||||||
|
version = "1.0.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "scopeguard"
|
||||||
|
version = "1.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "sct"
|
||||||
|
version = "0.6.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
|
||||||
|
dependencies = [
|
||||||
|
"ring",
|
||||||
|
"untrusted",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "signal-hook-registry"
|
||||||
|
version = "1.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "slab"
|
||||||
|
version = "0.4.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "smallvec"
|
||||||
|
version = "1.6.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "spin"
|
||||||
|
version = "0.5.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "static_assertions"
|
||||||
|
version = "1.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "strsim"
|
||||||
|
version = "0.10.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "syn"
|
||||||
|
version = "1.0.75"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b7f58f7e8eaa0009c5fec437aabf511bd9933e4b2d7407bd05273c01a8906ea7"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"unicode-xid",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tap"
|
||||||
|
version = "1.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "time"
|
||||||
|
version = "0.1.44"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"wasi",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tokio"
|
||||||
|
version = "1.10.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "01cf844b23c6131f624accf65ce0e4e9956a8bb329400ea5bcc26ae3a5c20b0b"
|
||||||
|
dependencies = [
|
||||||
|
"autocfg",
|
||||||
|
"bytes",
|
||||||
|
"libc",
|
||||||
|
"memchr",
|
||||||
|
"mio",
|
||||||
|
"num_cpus",
|
||||||
|
"once_cell",
|
||||||
|
"parking_lot",
|
||||||
|
"pin-project-lite",
|
||||||
|
"signal-hook-registry",
|
||||||
|
"tokio-macros",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tokio-macros"
|
||||||
|
version = "1.3.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tokio-rustls"
|
||||||
|
version = "0.22.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
|
||||||
|
dependencies = [
|
||||||
|
"rustls",
|
||||||
|
"tokio",
|
||||||
|
"webpki",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tokio-util"
|
||||||
|
version = "0.6.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592"
|
||||||
|
dependencies = [
|
||||||
|
"bytes",
|
||||||
|
"futures-core",
|
||||||
|
"futures-sink",
|
||||||
|
"log",
|
||||||
|
"pin-project-lite",
|
||||||
|
"tokio",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-xid"
|
||||||
|
version = "0.2.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "untrusted"
|
||||||
|
version = "0.7.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "version_check"
|
||||||
|
version = "0.9.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wasi"
|
||||||
|
version = "0.10.0+wasi-snapshot-preview1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wasm-bindgen"
|
||||||
|
version = "0.2.76"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8ce9b1b516211d33767048e5d47fa2a381ed8b76fc48d2ce4aa39877f9f183e0"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
"wasm-bindgen-macro",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wasm-bindgen-backend"
|
||||||
|
version = "0.2.76"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "cfe8dc78e2326ba5f845f4b5bf548401604fa20b1dd1d365fb73b6c1d6364041"
|
||||||
|
dependencies = [
|
||||||
|
"bumpalo",
|
||||||
|
"lazy_static",
|
||||||
|
"log",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
"wasm-bindgen-shared",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wasm-bindgen-macro"
|
||||||
|
version = "0.2.76"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "44468aa53335841d9d6b6c023eaab07c0cd4bddbcfdee3e2bb1e8d2cb8069fef"
|
||||||
|
dependencies = [
|
||||||
|
"quote",
|
||||||
|
"wasm-bindgen-macro-support",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wasm-bindgen-macro-support"
|
||||||
|
version = "0.2.76"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0195807922713af1e67dc66132c7328206ed9766af3858164fb583eedc25fbad"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
"wasm-bindgen-backend",
|
||||||
|
"wasm-bindgen-shared",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wasm-bindgen-shared"
|
||||||
|
version = "0.2.76"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "acdb075a845574a1fa5f09fd77e43f7747599301ea3417a9fbffdeedfc1f4a29"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "web-sys"
|
||||||
|
version = "0.3.53"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "224b2f6b67919060055ef1a67807367c2066ed520c3862cc013d26cf893a783c"
|
||||||
|
dependencies = [
|
||||||
|
"js-sys",
|
||||||
|
"wasm-bindgen",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "webpki"
|
||||||
|
version = "0.21.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
|
||||||
|
dependencies = [
|
||||||
|
"ring",
|
||||||
|
"untrusted",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "webpki-roots"
|
||||||
|
version = "0.21.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"
|
||||||
|
dependencies = [
|
||||||
|
"webpki",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "winapi"
|
||||||
|
version = "0.3.9"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
||||||
|
dependencies = [
|
||||||
|
"winapi-i686-pc-windows-gnu",
|
||||||
|
"winapi-x86_64-pc-windows-gnu",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "winapi-i686-pc-windows-gnu"
|
||||||
|
version = "0.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "winapi-x86_64-pc-windows-gnu"
|
||||||
|
version = "0.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wyz"
|
||||||
|
version = "0.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
|
29
imap/fuzz/Cargo.toml
Normal file
29
imap/fuzz/Cargo.toml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
|
||||||
|
[package]
|
||||||
|
name = "panorama-imap-fuzz"
|
||||||
|
version = "0.0.0"
|
||||||
|
authors = ["Automatically generated"]
|
||||||
|
publish = false
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
|
[package.metadata]
|
||||||
|
cargo-fuzz = true
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
libfuzzer-sys = "0.4"
|
||||||
|
format-bytes = "0.2.2"
|
||||||
|
panorama-proto-common = { path = "../../proto-common" }
|
||||||
|
|
||||||
|
[dependencies.panorama-imap]
|
||||||
|
path = ".."
|
||||||
|
features = ["fuzzing"]
|
||||||
|
|
||||||
|
# Prevent this from interfering with workspaces
|
||||||
|
[workspace]
|
||||||
|
members = ["."]
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "parse_response"
|
||||||
|
path = "fuzz_targets/parse_response.rs"
|
||||||
|
test = false
|
||||||
|
doc = false
|
16
imap/fuzz/fuzz_targets/parse_response.rs
Normal file
16
imap/fuzz/fuzz_targets/parse_response.rs
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#![no_main]
|
||||||
|
|
||||||
|
use std::io::Cursor;
|
||||||
|
use format_bytes::write_bytes;
|
||||||
|
use libfuzzer_sys::fuzz_target;
|
||||||
|
use panorama_imap::proto::{response::Response, rfc3501::response};
|
||||||
|
use panorama_proto_common::Bytes;
|
||||||
|
|
||||||
|
fuzz_target!(|resp: Response| {
|
||||||
|
let data = Vec::new();
|
||||||
|
let mut curs = Cursor::new(data);
|
||||||
|
write_bytes!(&mut curs, b"{}", resp).unwrap();
|
||||||
|
let data = curs.into_inner();
|
||||||
|
let data = Bytes::from(data);
|
||||||
|
let _ = response(data);
|
||||||
|
});
|
2
imap/imap-parsing-fuzz-target/.gitignore
vendored
Normal file
2
imap/imap-parsing-fuzz-target/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
target
|
||||||
|
out
|
1033
imap/imap-parsing-fuzz-target/Cargo.lock
generated
Normal file
1033
imap/imap-parsing-fuzz-target/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
11
imap/imap-parsing-fuzz-target/Cargo.toml
Normal file
11
imap/imap-parsing-fuzz-target/Cargo.toml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
[package]
|
||||||
|
name = "imap-parsing-fuzz-target"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
|
[workspace]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
afl = "*"
|
||||||
|
panorama-imap = { path = ".." }
|
||||||
|
panorama-proto-common = { path = "../../proto-common" }
|
1
imap/imap-parsing-fuzz-target/in/a
Normal file
1
imap/imap-parsing-fuzz-target/in/a
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* 4544444444 444
|
1
imap/imap-parsing-fuzz-target/in/response-capabilities
Normal file
1
imap/imap-parsing-fuzz-target/in/response-capabilities
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 XYZZY SASL-IR AUTH=XOAUTH2 AUTH=PLAIN AUTH=PLAIN-CLIENTTOKEN AUTH=OAUTHBEARER AUTH=XOAUTH
|
1
imap/imap-parsing-fuzz-target/in/response-fetch
Normal file
1
imap/imap-parsing-fuzz-target/in/response-fetch
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* 8211 FETCH (UID 8390 FLAGS (\Answered \Seen))
|
1
imap/imap-parsing-fuzz-target/in/response-fetch-all
Normal file
1
imap/imap-parsing-fuzz-target/in/response-fetch-all
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* 8045 FETCH (UID 8225 ENVELOPE ("Sun, 21 Mar 2021 18:44:10 -0700" "SUBJECT" (("SENDER" NIL "sender" "example.com")) (("SENDER" NIL "sender" "example.com")) (("noreply" NIL "noreply" "example.com")) (("NAME" NIL "user" "gmail.com")) NIL NIL NIL "<HASH-99c91810@example.com>") FLAGS () INTERNALDATE "22-Mar-2021 01:44:12 +0000" RFC822.SIZE 13503)
|
1
imap/imap-parsing-fuzz-target/in/response-flags
Normal file
1
imap/imap-parsing-fuzz-target/in/response-flags
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* OK [PERMANENTFLAGS (\Answered \Flagged \Draft \Deleted \Seen $NotPhishing $Phishing \*)] Flags permitted.
|
1
imap/imap-parsing-fuzz-target/in/response-highestmodseq
Normal file
1
imap/imap-parsing-fuzz-target/in/response-highestmodseq
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* OK [HIGHESTMODSEQ 694968]
|
11
imap/imap-parsing-fuzz-target/src/main.rs
Normal file
11
imap/imap-parsing-fuzz-target/src/main.rs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#[macro_use]
|
||||||
|
extern crate afl;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
fuzz!(|data: &[u8]| {
|
||||||
|
use panorama_imap::proto::rfc3501::response;
|
||||||
|
use panorama_proto_common::Bytes;
|
||||||
|
let data = Bytes::from(data.to_vec());
|
||||||
|
let _ = response(data);
|
||||||
|
});
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue