mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-16 18:50:13 +00:00
Compare commits
19 commits
d4d4ed7feb
...
f848e260db
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f848e260db | ||
|
|
68a8a9d67e | ||
|
|
7cc648ff50 | ||
|
|
0e65d9b2ee | ||
|
|
47e1c68a11 | ||
|
|
ca28215104 | ||
|
|
0cd351de45 | ||
|
|
65b40c498b | ||
|
|
1378379e14 | ||
|
|
2fc5f2a9d9 | ||
|
|
d4611b3769 | ||
|
|
e4ad346554 | ||
|
|
6b0b8f82ee | ||
|
|
97f481120c | ||
|
|
c4a4aad791 | ||
|
|
93659f1205 | ||
|
|
621889a6c2 | ||
|
|
ae9d818f4b | ||
|
|
3c4644f3cc |
67 changed files with 1203 additions and 299 deletions
35
.github/workflows/dotnet.yml
vendored
35
.github/workflows/dotnet.yml
vendored
|
|
@ -21,26 +21,31 @@ jobs:
|
||||||
name: 'run .net tests'
|
name: 'run .net tests'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- name: Setup .NET Core
|
|
||||||
uses: actions/setup-dotnet@v1
|
- name: Setup .NET Core
|
||||||
with:
|
uses: actions/setup-dotnet@v1
|
||||||
dotnet-version: 8.0.x
|
with:
|
||||||
- name: Run automated tests
|
dotnet-version: 8.0.x
|
||||||
run: dotnet test --configuration Release
|
|
||||||
|
- name: Run automated tests
|
||||||
|
run: dotnet test --configuration Release
|
||||||
|
|
||||||
dotnet-format:
|
dotnet-format:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup .NET Core
|
||||||
|
uses: actions/setup-dotnet@v1
|
||||||
|
with:
|
||||||
|
dotnet-version: 8.0.x
|
||||||
|
|
||||||
- name: Add dotnet-format problem matcher
|
- name: Add dotnet-format problem matcher
|
||||||
uses: xt0rted/dotnet-format-problem-matcher@v1
|
uses: xt0rted/dotnet-format-problem-matcher@v1
|
||||||
|
|
||||||
- name: Restore dotnet tools
|
- name: Run dotnet-format
|
||||||
uses: xt0rted/dotnet-tool-restore@v1
|
run: dotnet format --no-restore --verify-no-changes
|
||||||
|
|
||||||
- name: Run dotnet format
|
|
||||||
uses: PluralKit/dotnet-format@fix/net6
|
|
||||||
|
|
|
||||||
619
COPYING
Normal file
619
COPYING
Normal file
|
|
@ -0,0 +1,619 @@
|
||||||
|
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 19 November 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU Affero General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works, specifically designed to ensure
|
||||||
|
cooperation with the community in the case of network server software.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
our General Public Licenses are intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
Developers that use our General Public Licenses protect your rights
|
||||||
|
with two steps: (1) assert copyright on the software, and (2) offer
|
||||||
|
you this License which gives you legal permission to copy, distribute
|
||||||
|
and/or modify the software.
|
||||||
|
|
||||||
|
A secondary benefit of defending all users' freedom is that
|
||||||
|
improvements made in alternate versions of the program, if they
|
||||||
|
receive widespread use, become available for other developers to
|
||||||
|
incorporate. Many developers of free software are heartened and
|
||||||
|
encouraged by the resulting cooperation. However, in the case of
|
||||||
|
software used on network servers, this result may fail to come about.
|
||||||
|
The GNU General Public License permits making a modified version and
|
||||||
|
letting the public access it on a server without ever releasing its
|
||||||
|
source code to the public.
|
||||||
|
|
||||||
|
The GNU Affero General Public License is designed specifically to
|
||||||
|
ensure that, in such cases, the modified source code becomes available
|
||||||
|
to the community. It requires the operator of a network server to
|
||||||
|
provide the source code of the modified version running there to the
|
||||||
|
users of that server. Therefore, public use of a modified version, on
|
||||||
|
a publicly accessible server, gives the public access to the source
|
||||||
|
code of the modified version.
|
||||||
|
|
||||||
|
An older license, called the Affero General Public License and
|
||||||
|
published by Affero, was designed to accomplish similar goals. This is
|
||||||
|
a different license, not a version of the Affero GPL, but Affero has
|
||||||
|
released a new version of the Affero GPL which permits relicensing under
|
||||||
|
this license.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, if you modify the
|
||||||
|
Program, your modified version must prominently offer all users
|
||||||
|
interacting with it remotely through a computer network (if your version
|
||||||
|
supports such interaction) an opportunity to receive the Corresponding
|
||||||
|
Source of your version by providing access to the Corresponding Source
|
||||||
|
from a network server at no charge, through some standard or customary
|
||||||
|
means of facilitating copying of software. This Corresponding Source
|
||||||
|
shall include the Corresponding Source for any work covered by version 3
|
||||||
|
of the GNU General Public License that is incorporated pursuant to the
|
||||||
|
following paragraph.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the work with which it is combined will remain governed by version
|
||||||
|
3 of the GNU General Public License.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU Affero General Public License from time to time. Such new versions
|
||||||
|
will be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU Affero General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU Affero General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU Affero General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
28
Cargo.lock
generated
28
Cargo.lock
generated
|
|
@ -88,6 +88,7 @@ dependencies = [
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"libpk",
|
"libpk",
|
||||||
"metrics",
|
"metrics",
|
||||||
|
"pk_macros",
|
||||||
"pluralkit_models",
|
"pluralkit_models",
|
||||||
"reqwest 0.12.15",
|
"reqwest 0.12.15",
|
||||||
"reverse-proxy-service",
|
"reverse-proxy-service",
|
||||||
|
|
@ -95,6 +96,7 @@ dependencies = [
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"serde_urlencoded",
|
"serde_urlencoded",
|
||||||
"sqlx",
|
"sqlx",
|
||||||
|
"subtle",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tower 0.4.13",
|
"tower 0.4.13",
|
||||||
"tower-http",
|
"tower-http",
|
||||||
|
|
@ -2529,6 +2531,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
||||||
name = "pk_macros"
|
name = "pk_macros"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"prettyplease",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
"syn",
|
"syn",
|
||||||
|
|
@ -2610,9 +2613,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "prettyplease"
|
name = "prettyplease"
|
||||||
version = "0.2.31"
|
version = "0.2.36"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5316f57387668042f561aae71480de936257848f9c43ce528e311d89a07cadeb"
|
checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"syn",
|
"syn",
|
||||||
|
|
@ -3311,6 +3314,7 @@ dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"croner",
|
"croner",
|
||||||
"fred",
|
"fred",
|
||||||
|
"lazy_static",
|
||||||
"libpk",
|
"libpk",
|
||||||
"metrics",
|
"metrics",
|
||||||
"num-format",
|
"num-format",
|
||||||
|
|
@ -3963,9 +3967,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "syn"
|
name = "syn"
|
||||||
version = "2.0.100"
|
version = "2.0.104"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
|
@ -4444,7 +4448,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "twilight-cache-inmemory"
|
name = "twilight-cache-inmemory"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-70105ef#941604f888bb8d25239f4f3d4dfb1a9ecdb9851b"
|
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-7f08d95#054a2aa5d29fb46220af1cd5df568b73511cdb26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.9.0",
|
"bitflags 2.9.0",
|
||||||
"dashmap",
|
"dashmap",
|
||||||
|
|
@ -4456,7 +4460,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "twilight-gateway"
|
name = "twilight-gateway"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-70105ef#941604f888bb8d25239f4f3d4dfb1a9ecdb9851b"
|
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-7f08d95#054a2aa5d29fb46220af1cd5df568b73511cdb26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.9.0",
|
"bitflags 2.9.0",
|
||||||
"fastrand",
|
"fastrand",
|
||||||
|
|
@ -4476,7 +4480,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "twilight-gateway-queue"
|
name = "twilight-gateway-queue"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-70105ef#941604f888bb8d25239f4f3d4dfb1a9ecdb9851b"
|
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-7f08d95#054a2aa5d29fb46220af1cd5df568b73511cdb26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"tokio",
|
"tokio",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
|
@ -4485,7 +4489,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "twilight-http"
|
name = "twilight-http"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-70105ef#941604f888bb8d25239f4f3d4dfb1a9ecdb9851b"
|
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-7f08d95#054a2aa5d29fb46220af1cd5df568b73511cdb26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fastrand",
|
"fastrand",
|
||||||
"http 1.3.1",
|
"http 1.3.1",
|
||||||
|
|
@ -4507,7 +4511,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "twilight-http-ratelimiting"
|
name = "twilight-http-ratelimiting"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-70105ef#941604f888bb8d25239f4f3d4dfb1a9ecdb9851b"
|
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-7f08d95#054a2aa5d29fb46220af1cd5df568b73511cdb26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"tokio",
|
"tokio",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
|
@ -4516,7 +4520,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "twilight-model"
|
name = "twilight-model"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-70105ef#941604f888bb8d25239f4f3d4dfb1a9ecdb9851b"
|
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-7f08d95#054a2aa5d29fb46220af1cd5df568b73511cdb26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.9.0",
|
"bitflags 2.9.0",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
@ -4528,7 +4532,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "twilight-util"
|
name = "twilight-util"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-70105ef#941604f888bb8d25239f4f3d4dfb1a9ecdb9851b"
|
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-7f08d95#054a2aa5d29fb46220af1cd5df568b73511cdb26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"twilight-model",
|
"twilight-model",
|
||||||
]
|
]
|
||||||
|
|
@ -4536,7 +4540,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "twilight-validate"
|
name = "twilight-validate"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-70105ef#941604f888bb8d25239f4f3d4dfb1a9ecdb9851b"
|
source = "git+https://github.com/pluralkit/twilight?branch=pluralkit-7f08d95#054a2aa5d29fb46220af1cd5df568b73511cdb26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"twilight-model",
|
"twilight-model",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
10
Cargo.toml
10
Cargo.toml
|
|
@ -25,11 +25,11 @@ uuid = { version = "1.7.0", features = ["serde"] }
|
||||||
|
|
||||||
axum = { git = "https://github.com/pluralkit/axum", branch = "v0.8.4-pluralkit" }
|
axum = { git = "https://github.com/pluralkit/axum", branch = "v0.8.4-pluralkit" }
|
||||||
|
|
||||||
twilight-gateway = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-70105ef" }
|
twilight-gateway = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-7f08d95" }
|
||||||
twilight-cache-inmemory = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-70105ef", features = ["permission-calculator"] }
|
twilight-cache-inmemory = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-7f08d95", features = ["permission-calculator"] }
|
||||||
twilight-util = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-70105ef", features = ["permission-calculator"] }
|
twilight-util = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-7f08d95", features = ["permission-calculator"] }
|
||||||
twilight-model = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-70105ef" }
|
twilight-model = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-7f08d95" }
|
||||||
twilight-http = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-70105ef", default-features = false, features = ["rustls-aws_lc_rs", "rustls-native-roots"] }
|
twilight-http = { git = "https://github.com/pluralkit/twilight", branch = "pluralkit-7f08d95", default-features = false, features = ["rustls-aws_lc_rs", "rustls-native-roots"] }
|
||||||
|
|
||||||
# twilight-gateway = { path = "../twilight/twilight-gateway" }
|
# twilight-gateway = { path = "../twilight/twilight-gateway" }
|
||||||
# twilight-cache-inmemory = { path = "../twilight/twilight-cache-inmemory", features = ["permission-calculator"] }
|
# twilight-cache-inmemory = { path = "../twilight/twilight-cache-inmemory", features = ["permission-calculator"] }
|
||||||
|
|
|
||||||
20
Myriad/COPYING
Normal file
20
Myriad/COPYING
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
“Software”), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included
|
||||||
|
in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -2,4 +2,6 @@
|
||||||
|
|
||||||
'Myriad' is a .NET library used to interact with the Discord API. It's primarily intended for use with PluralKit, but feel free to fork or submodule it!
|
'Myriad' is a .NET library used to interact with the Discord API. It's primarily intended for use with PluralKit, but feel free to fork or submodule it!
|
||||||
|
|
||||||
You can find a simple example bot using the Myriad library here: <https://git.sr.ht/~spiral/myriad-example>
|
You can find a simple example bot using the Myriad library here: <https://git.sr.ht/~spiral/myriad-example>
|
||||||
|
|
||||||
|
The Myriad library (`/Myriad` directory in this repository) is available under the MIT license. The license text can be found in the /Myriad/COPYING file.
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,6 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
||||||
<PackageReference Include="Sentry" Version="4.13.0" />
|
<PackageReference Include="Sentry" Version="4.13.0" />
|
||||||
<PackageReference Include="Watson.Lite" Version="6.3.5" />
|
<PackageReference Include="Watson.Lite" Version="6.3.12" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
using System.Text;
|
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
using Serilog;
|
using Serilog;
|
||||||
|
|
@ -58,7 +57,7 @@ public class HttpListenerService
|
||||||
private async Task RuntimeConfigSet(HttpContextBase ctx)
|
private async Task RuntimeConfigSet(HttpContextBase ctx)
|
||||||
{
|
{
|
||||||
var key = ctx.Request.Url.Parameters["key"];
|
var key = ctx.Request.Url.Parameters["key"];
|
||||||
var value = ReadStream(ctx.Request.Data, ctx.Request.ContentLength);
|
var value = ctx.Request.DataAsString;
|
||||||
await _runtimeConfig.Set(key, value);
|
await _runtimeConfig.Set(key, value);
|
||||||
await RuntimeConfigGet(ctx);
|
await RuntimeConfigGet(ctx);
|
||||||
}
|
}
|
||||||
|
|
@ -77,7 +76,7 @@ public class HttpListenerService
|
||||||
var shardIdString = ctx.Request.Url.Parameters["shard_id"];
|
var shardIdString = ctx.Request.Url.Parameters["shard_id"];
|
||||||
if (!int.TryParse(shardIdString, out var shardId)) return;
|
if (!int.TryParse(shardIdString, out var shardId)) return;
|
||||||
|
|
||||||
var packet = JsonSerializer.Deserialize<GatewayPacket>(ReadStream(ctx.Request.Data, ctx.Request.ContentLength), _jsonSerializerOptions);
|
var packet = JsonSerializer.Deserialize<GatewayPacket>(ctx.Request.DataAsString, _jsonSerializerOptions);
|
||||||
var evt = DeserializeEvent(shardId, packet.EventType!, (JsonElement)packet.Payload!);
|
var evt = DeserializeEvent(shardId, packet.EventType!, (JsonElement)packet.Payload!);
|
||||||
if (evt != null)
|
if (evt != null)
|
||||||
{
|
{
|
||||||
|
|
@ -108,39 +107,4 @@ public class HttpListenerService
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//temporary re-implementation of the ReadStream function found in WatsonWebserver.Lite, but with handling for closed connections
|
|
||||||
//https://github.com/dotnet/WatsonWebserver/issues/171
|
|
||||||
private static string ReadStream(Stream input, long contentLength)
|
|
||||||
{
|
|
||||||
if (input == null) throw new ArgumentNullException(nameof(input));
|
|
||||||
if (!input.CanRead) throw new InvalidOperationException("Input stream is not readable");
|
|
||||||
if (contentLength < 1) return "";
|
|
||||||
|
|
||||||
byte[] buffer = new byte[65536];
|
|
||||||
long bytesRemaining = contentLength;
|
|
||||||
|
|
||||||
using (MemoryStream ms = new MemoryStream())
|
|
||||||
{
|
|
||||||
int read;
|
|
||||||
|
|
||||||
while (bytesRemaining > 0)
|
|
||||||
{
|
|
||||||
read = input.Read(buffer, 0, buffer.Length);
|
|
||||||
if (read > 0)
|
|
||||||
{
|
|
||||||
ms.Write(buffer, 0, read);
|
|
||||||
bytesRemaining -= read;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
throw new IOException("Connection closed before reading end of stream.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ms.Length < 1) return null;
|
|
||||||
var str = Encoding.Default.GetString(ms.ToArray());
|
|
||||||
return str;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
@ -16,12 +16,12 @@
|
||||||
},
|
},
|
||||||
"Watson.Lite": {
|
"Watson.Lite": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[6.3.5, )",
|
"requested": "[6.3.12, )",
|
||||||
"resolved": "6.3.5",
|
"resolved": "6.3.12",
|
||||||
"contentHash": "YF8+se3IVenn8YlyNeb4wSJK6QMnVD0QHIOEiZ22wS4K2wkwoSDzWS+ZAjk1MaPeB+XO5gRoENUN//pOc+wI2g==",
|
"contentHash": "L/TfJadyOwK9bhhvOnEKXLeyDaTAn8v6hnYPVPIwQ7JlnUXDbDqsUa3qHFdFIHiuK8vMZOnDL7+k/mY10yxdYw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"CavemanTcp": "2.0.5",
|
"CavemanTcp": "2.0.9",
|
||||||
"Watson.Core": "6.3.5"
|
"Watson.Core": "6.3.12"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"App.Metrics": {
|
"App.Metrics": {
|
||||||
|
|
@ -119,8 +119,8 @@
|
||||||
},
|
},
|
||||||
"CavemanTcp": {
|
"CavemanTcp": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.0.5",
|
"resolved": "2.0.9",
|
||||||
"contentHash": "90wywmGpjrj26HMAkufYZwuZI8sVYB1mRwEdqugSR3kgDnPX+3l0jO86gwtFKsPvsEpsS4Dn/1EbhguzUxMU8Q=="
|
"contentHash": "KgIwYhPhGkBTm+wwVAmWonkKPw4xYVnutzzlIeqOLcX1fti+8d+MEGTvbern1smf3S/UpjFjihkf6XRziTddzQ=="
|
||||||
},
|
},
|
||||||
"Dapper": {
|
"Dapper": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
|
|
@ -746,8 +746,8 @@
|
||||||
},
|
},
|
||||||
"Watson.Core": {
|
"Watson.Core": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "6.3.5",
|
"resolved": "6.3.12",
|
||||||
"contentHash": "Y5YxKOCSLe2KDmfwvI/J0qApgmmZR77LwyoufRVfKH7GLdHiE7fY0IfoNxWTG7nNv8knBfgwyOxdehRm+4HaCg==",
|
"contentHash": "lCWv+7rz++z/1ceu+aBdJYw+nO7u/dgXxVYrmdUO/3ylFeEbbPQP19MYjOJbhSQY4+bmQRex79YJ1IneLZhprA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"IpMatcher": "1.0.5",
|
"IpMatcher": "1.0.5",
|
||||||
"RegexMatcher": "1.0.9",
|
"RegexMatcher": "1.0.9",
|
||||||
|
|
|
||||||
|
|
@ -97,7 +97,7 @@ public class DispatchService
|
||||||
|
|
||||||
var repo = _provider.Resolve<ModelRepository>();
|
var repo = _provider.Resolve<ModelRepository>();
|
||||||
var system = await repo.GetSystem(systemId);
|
var system = await repo.GetSystem(systemId);
|
||||||
if (system.WebhookUrl == null)
|
if (system == null || system.WebhookUrl == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
data.SigningToken = system.WebhookToken;
|
data.SigningToken = system.WebhookToken;
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation">
|
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation">
|
||||||
<Exec Command="../ci/dotnet-version.sh" IgnoreExitCode="False">
|
<Exec Command="..\ci\dotnet-version.sh" IgnoreExitCode="False">
|
||||||
</Exec>
|
</Exec>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -130,8 +130,8 @@
|
||||||
},
|
},
|
||||||
"CavemanTcp": {
|
"CavemanTcp": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.0.5",
|
"resolved": "2.0.9",
|
||||||
"contentHash": "90wywmGpjrj26HMAkufYZwuZI8sVYB1mRwEdqugSR3kgDnPX+3l0jO86gwtFKsPvsEpsS4Dn/1EbhguzUxMU8Q=="
|
"contentHash": "KgIwYhPhGkBTm+wwVAmWonkKPw4xYVnutzzlIeqOLcX1fti+8d+MEGTvbern1smf3S/UpjFjihkf6XRziTddzQ=="
|
||||||
},
|
},
|
||||||
"Dapper": {
|
"Dapper": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
|
|
@ -912,8 +912,8 @@
|
||||||
},
|
},
|
||||||
"Watson.Core": {
|
"Watson.Core": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "6.3.5",
|
"resolved": "6.3.12",
|
||||||
"contentHash": "Y5YxKOCSLe2KDmfwvI/J0qApgmmZR77LwyoufRVfKH7GLdHiE7fY0IfoNxWTG7nNv8knBfgwyOxdehRm+4HaCg==",
|
"contentHash": "lCWv+7rz++z/1ceu+aBdJYw+nO7u/dgXxVYrmdUO/3ylFeEbbPQP19MYjOJbhSQY4+bmQRex79YJ1IneLZhprA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"IpMatcher": "1.0.5",
|
"IpMatcher": "1.0.5",
|
||||||
"RegexMatcher": "1.0.9",
|
"RegexMatcher": "1.0.9",
|
||||||
|
|
@ -924,11 +924,11 @@
|
||||||
},
|
},
|
||||||
"Watson.Lite": {
|
"Watson.Lite": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "6.3.5",
|
"resolved": "6.3.12",
|
||||||
"contentHash": "YF8+se3IVenn8YlyNeb4wSJK6QMnVD0QHIOEiZ22wS4K2wkwoSDzWS+ZAjk1MaPeB+XO5gRoENUN//pOc+wI2g==",
|
"contentHash": "L/TfJadyOwK9bhhvOnEKXLeyDaTAn8v6hnYPVPIwQ7JlnUXDbDqsUa3qHFdFIHiuK8vMZOnDL7+k/mY10yxdYw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"CavemanTcp": "2.0.5",
|
"CavemanTcp": "2.0.9",
|
||||||
"Watson.Core": "6.3.5"
|
"Watson.Core": "6.3.12"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"xunit.abstractions": {
|
"xunit.abstractions": {
|
||||||
|
|
@ -1001,7 +1001,7 @@
|
||||||
"Myriad": "[1.0.0, )",
|
"Myriad": "[1.0.0, )",
|
||||||
"PluralKit.Core": "[1.0.0, )",
|
"PluralKit.Core": "[1.0.0, )",
|
||||||
"Sentry": "[4.13.0, )",
|
"Sentry": "[4.13.0, )",
|
||||||
"Watson.Lite": "[6.3.5, )"
|
"Watson.Lite": "[6.3.12, )"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pluralkit.core": {
|
"pluralkit.core": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
#
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.14.36408.4 d17.14
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluralKit.Bot", "PluralKit.Bot\PluralKit.Bot.csproj", "{F2C5562D-FD96-4C11-B54E-93737D127959}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluralKit.Bot", "PluralKit.Bot\PluralKit.Bot.csproj", "{F2C5562D-FD96-4C11-B54E-93737D127959}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluralKit.Core", "PluralKit.Core\PluralKit.Core.csproj", "{5DBE037D-179D-4C05-8A28-35E37129C961}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluralKit.Core", "PluralKit.Core\PluralKit.Core.csproj", "{5DBE037D-179D-4C05-8A28-35E37129C961}"
|
||||||
|
|
@ -11,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluralKit.Tests", "PluralKi
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Myriad", "Myriad\Myriad.csproj", "{ACB9BF37-F29C-4068-A7D1-2EFF2C308C4B}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Myriad", "Myriad\Myriad.csproj", "{ACB9BF37-F29C-4068-A7D1-2EFF2C308C4B}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serilog", "Serilog\src\Serilog\Serilog.csproj", "{4CF74FA7-1417-27D7-76DE-2467733F7E8B}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
|
@ -37,9 +41,12 @@ Global
|
||||||
{ACB9BF37-F29C-4068-A7D1-2EFF2C308C4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{ACB9BF37-F29C-4068-A7D1-2EFF2C308C4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{ACB9BF37-F29C-4068-A7D1-2EFF2C308C4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{ACB9BF37-F29C-4068-A7D1-2EFF2C308C4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{ACB9BF37-F29C-4068-A7D1-2EFF2C308C4B}.Release|Any CPU.Build.0 = Release|Any CPU
|
{ACB9BF37-F29C-4068-A7D1-2EFF2C308C4B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{374A8EB3-655D-4230-982B-459AE3553991}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{4CF74FA7-1417-27D7-76DE-2467733F7E8B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{374A8EB3-655D-4230-982B-459AE3553991}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{4CF74FA7-1417-27D7-76DE-2467733F7E8B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{374A8EB3-655D-4230-982B-459AE3553991}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{4CF74FA7-1417-27D7-76DE-2467733F7E8B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{374A8EB3-655D-4230-982B-459AE3553991}.Release|Any CPU.Build.0 = Release|Any CPU
|
{4CF74FA7-1417-27D7-76DE-2467733F7E8B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
|
||||||
|
|
@ -36,4 +36,6 @@ See [the dev-docs/ directory](./dev-docs/README.md)
|
||||||
See [the docs/ directory](./docs/README.md)
|
See [the docs/ directory](./docs/README.md)
|
||||||
|
|
||||||
# License
|
# License
|
||||||
This project is under the GNU Affero General Public License, Version 3. It is available at the following link: https://www.gnu.org/licenses/agpl-3.0.en.html
|
With the exception of the Myriad library, this project is under the GNU Affero General Public License, Version 3. The license text can be found in the COPYING file.
|
||||||
|
|
||||||
|
Licensing information for the Myriad library can be found in the library's README.md file.
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ WORKDIR /build
|
||||||
|
|
||||||
RUN apk add rustup build-base
|
RUN apk add rustup build-base
|
||||||
# todo: arm64 target
|
# todo: arm64 target
|
||||||
RUN rustup-init --default-host x86_64-unknown-linux-musl --default-toolchain nightly-2024-08-20 --profile default -y
|
RUN rustup-init --default-host x86_64-unknown-linux-musl --default-toolchain nightly-2025-08-22 --profile default -y
|
||||||
|
|
||||||
ENV PATH=/root/.cargo/bin:$PATH
|
ENV PATH=/root/.cargo/bin:$PATH
|
||||||
ENV RUSTFLAGS='-C link-arg=-s'
|
ENV RUSTFLAGS='-C link-arg=-s'
|
||||||
|
|
|
||||||
|
|
@ -42,5 +42,10 @@ build api
|
||||||
build dispatch
|
build dispatch
|
||||||
build gateway
|
build gateway
|
||||||
build avatars "COPY .docker-bin/avatar_cleanup /bin/avatar_cleanup"
|
build avatars "COPY .docker-bin/avatar_cleanup /bin/avatar_cleanup"
|
||||||
build scheduled_tasks
|
build scheduled_tasks "$(cat <<EOF
|
||||||
|
RUN wget https://github.com/wal-g/wal-g/releases/download/v3.0.7/wal-g-pg-ubuntu-22.04-amd64 -O /usr/local/bin/wal-g
|
||||||
|
RUN chmod +x /usr/local/bin/wal-g
|
||||||
|
RUN apk add gcompat
|
||||||
|
EOF
|
||||||
|
)"
|
||||||
build gdpr_worker
|
build gdpr_worker
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "api"
|
name = "api"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pluralkit_models = { path = "../models" }
|
pluralkit_models = { path = "../models" }
|
||||||
|
pk_macros = { path = "../macros" }
|
||||||
libpk = { path = "../libpk" }
|
libpk = { path = "../libpk" }
|
||||||
|
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
|
@ -26,3 +27,4 @@ reverse-proxy-service = { version = "0.2.1", features = ["axum"] }
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
tower = "0.4.13"
|
tower = "0.4.13"
|
||||||
tower-http = { version = "0.5.2", features = ["catch-panic"] }
|
tower-http = { version = "0.5.2", features = ["catch-panic"] }
|
||||||
|
subtle = "2.6.1"
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,16 @@ pub const INTERNAL_APPID_HEADER: &'static str = "x-pluralkit-appid";
|
||||||
pub struct AuthState {
|
pub struct AuthState {
|
||||||
system_id: Option<i32>,
|
system_id: Option<i32>,
|
||||||
app_id: Option<i32>,
|
app_id: Option<i32>,
|
||||||
|
internal: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl AuthState {
|
impl AuthState {
|
||||||
pub fn new(system_id: Option<i32>, app_id: Option<i32>) -> Self {
|
pub fn new(system_id: Option<i32>, app_id: Option<i32>, internal: bool) -> Self {
|
||||||
Self { system_id, app_id }
|
Self {
|
||||||
|
system_id,
|
||||||
|
app_id,
|
||||||
|
internal,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn system_id(&self) -> Option<i32> {
|
pub fn system_id(&self) -> Option<i32> {
|
||||||
|
|
@ -22,6 +27,10 @@ impl AuthState {
|
||||||
self.app_id
|
self.app_id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn internal(&self) -> bool {
|
||||||
|
self.internal
|
||||||
|
}
|
||||||
|
|
||||||
pub fn access_level_for(&self, a: &impl Authable) -> PrivacyLevel {
|
pub fn access_level_for(&self, a: &impl Authable) -> PrivacyLevel {
|
||||||
if self
|
if self
|
||||||
.system_id
|
.system_id
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,12 @@ use crate::ApiContext;
|
||||||
use axum::{extract::State, response::Json};
|
use axum::{extract::State, response::Json};
|
||||||
use fred::interfaces::*;
|
use fred::interfaces::*;
|
||||||
use libpk::state::ShardState;
|
use libpk::state::ShardState;
|
||||||
|
use pk_macros::api_endpoint;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use serde_json::{json, Value};
|
use serde_json::{Value, json};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
#[serde(rename_all = "PascalCase")]
|
#[serde(rename_all = "PascalCase")]
|
||||||
struct ClusterStats {
|
struct ClusterStats {
|
||||||
|
|
@ -13,34 +15,33 @@ struct ClusterStats {
|
||||||
pub channel_count: i32,
|
pub channel_count: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[api_endpoint]
|
||||||
pub async fn discord_state(State(ctx): State<ApiContext>) -> Json<Value> {
|
pub async fn discord_state(State(ctx): State<ApiContext>) -> Json<Value> {
|
||||||
let mut shard_status = ctx
|
let mut shard_status = ctx
|
||||||
.redis
|
.redis
|
||||||
.hgetall::<HashMap<String, String>, &str>("pluralkit:shardstatus")
|
.hgetall::<HashMap<String, String>, &str>("pluralkit:shardstatus")
|
||||||
.await
|
.await?
|
||||||
.unwrap()
|
|
||||||
.values()
|
.values()
|
||||||
.map(|v| serde_json::from_str(v).expect("could not deserialize shard"))
|
.map(|v| serde_json::from_str(v).expect("could not deserialize shard"))
|
||||||
.collect::<Vec<ShardState>>();
|
.collect::<Vec<ShardState>>();
|
||||||
|
|
||||||
shard_status.sort_by(|a, b| b.shard_id.cmp(&a.shard_id));
|
shard_status.sort_by(|a, b| b.shard_id.cmp(&a.shard_id));
|
||||||
|
|
||||||
Json(json!({
|
Ok(Json(json!({
|
||||||
"shards": shard_status,
|
"shards": shard_status,
|
||||||
}))
|
})))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[api_endpoint]
|
||||||
pub async fn meta(State(ctx): State<ApiContext>) -> Json<Value> {
|
pub async fn meta(State(ctx): State<ApiContext>) -> Json<Value> {
|
||||||
let stats = serde_json::from_str::<Value>(
|
let stats = serde_json::from_str::<Value>(
|
||||||
ctx.redis
|
ctx.redis
|
||||||
.get::<String, &'static str>("statsapi")
|
.get::<String, &'static str>("statsapi")
|
||||||
.await
|
.await?
|
||||||
.unwrap()
|
|
||||||
.as_str(),
|
.as_str(),
|
||||||
)
|
)?;
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
Json(stats)
|
Ok(Json(stats))
|
||||||
}
|
}
|
||||||
|
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,18 @@
|
||||||
use axum::{
|
use axum::{Extension, Json, extract::State, response::IntoResponse};
|
||||||
extract::State,
|
use pk_macros::api_endpoint;
|
||||||
http::StatusCode,
|
use serde_json::{Value, json};
|
||||||
response::{IntoResponse, Response},
|
|
||||||
Extension, Json,
|
|
||||||
};
|
|
||||||
use serde_json::json;
|
|
||||||
use sqlx::Postgres;
|
use sqlx::Postgres;
|
||||||
use tracing::error;
|
|
||||||
|
|
||||||
use pluralkit_models::{PKSystem, PKSystemConfig, PrivacyLevel};
|
use pluralkit_models::{PKSystem, PKSystemConfig, PrivacyLevel};
|
||||||
|
|
||||||
use crate::{auth::AuthState, util::json_err, ApiContext};
|
use crate::{ApiContext, auth::AuthState, error::fail};
|
||||||
|
|
||||||
|
#[api_endpoint]
|
||||||
pub async fn get_system_settings(
|
pub async fn get_system_settings(
|
||||||
Extension(auth): Extension<AuthState>,
|
Extension(auth): Extension<AuthState>,
|
||||||
Extension(system): Extension<PKSystem>,
|
Extension(system): Extension<PKSystem>,
|
||||||
State(ctx): State<ApiContext>,
|
State(ctx): State<ApiContext>,
|
||||||
) -> Response {
|
) -> Json<Value> {
|
||||||
let access_level = auth.access_level_for(&system);
|
let access_level = auth.access_level_for(&system);
|
||||||
|
|
||||||
let mut config = match sqlx::query_as::<Postgres, PKSystemConfig>(
|
let mut config = match sqlx::query_as::<Postgres, PKSystemConfig>(
|
||||||
|
|
@ -27,23 +23,11 @@ pub async fn get_system_settings(
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok(Some(config)) => config,
|
Ok(Some(config)) => config,
|
||||||
Ok(None) => {
|
Ok(None) => fail!(
|
||||||
error!(
|
system = system.id,
|
||||||
system = system.id,
|
"failed to find system config for existing system"
|
||||||
"failed to find system config for existing system"
|
),
|
||||||
);
|
Err(err) => fail!(?err, "failed to query system config"),
|
||||||
return json_err(
|
|
||||||
StatusCode::INTERNAL_SERVER_ERROR,
|
|
||||||
r#"{"message": "500: Internal Server Error", "code": 0}"#.to_string(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
error!(?err, "failed to query system config");
|
|
||||||
return json_err(
|
|
||||||
StatusCode::INTERNAL_SERVER_ERROR,
|
|
||||||
r#"{"message": "500: Internal Server Error", "code": 0}"#.to_string(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// fix this
|
// fix this
|
||||||
|
|
@ -51,7 +35,7 @@ pub async fn get_system_settings(
|
||||||
config.name_format = Some("{name} {tag}".to_string());
|
config.name_format = Some("{name} {tag}".to_string());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json(&match access_level {
|
Ok(Json(match access_level {
|
||||||
PrivacyLevel::Private => config.to_json(),
|
PrivacyLevel::Private => config.to_json(),
|
||||||
PrivacyLevel::Public => json!({
|
PrivacyLevel::Public => json!({
|
||||||
"pings_enabled": config.pings_enabled,
|
"pings_enabled": config.pings_enabled,
|
||||||
|
|
@ -64,6 +48,5 @@ pub async fn get_system_settings(
|
||||||
"proxy_switch": config.proxy_switch,
|
"proxy_switch": config.proxy_switch,
|
||||||
"name_format": config.name_format,
|
"name_format": config.name_format,
|
||||||
}),
|
}),
|
||||||
})
|
}))
|
||||||
.into_response()
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,17 @@
|
||||||
use axum::http::StatusCode;
|
use axum::{
|
||||||
|
http::StatusCode,
|
||||||
|
response::{IntoResponse, Response},
|
||||||
|
};
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
|
|
||||||
// todo
|
// todo: model parse errors
|
||||||
#[allow(dead_code)]
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct PKError {
|
pub struct PKError {
|
||||||
pub response_code: StatusCode,
|
pub response_code: StatusCode,
|
||||||
pub json_code: i32,
|
pub json_code: i32,
|
||||||
pub message: &'static str,
|
pub message: &'static str,
|
||||||
|
|
||||||
|
pub inner: Option<anyhow::Error>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Display for PKError {
|
impl fmt::Display for PKError {
|
||||||
|
|
@ -16,17 +20,67 @@ impl fmt::Display for PKError {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl std::error::Error for PKError {}
|
impl Clone for PKError {
|
||||||
|
fn clone(&self) -> PKError {
|
||||||
|
if self.inner.is_some() {
|
||||||
|
panic!("cannot clone PKError with inner error");
|
||||||
|
}
|
||||||
|
PKError {
|
||||||
|
response_code: self.response_code,
|
||||||
|
json_code: self.json_code,
|
||||||
|
message: self.message,
|
||||||
|
inner: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<E> From<E> for PKError
|
||||||
|
where
|
||||||
|
E: std::fmt::Display + Into<anyhow::Error>,
|
||||||
|
{
|
||||||
|
fn from(err: E) -> Self {
|
||||||
|
let mut res = GENERIC_SERVER_ERROR.clone();
|
||||||
|
res.inner = Some(err.into());
|
||||||
|
res
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl IntoResponse for PKError {
|
||||||
|
fn into_response(self) -> Response {
|
||||||
|
if let Some(inner) = self.inner {
|
||||||
|
tracing::error!(?inner, "error returned from handler");
|
||||||
|
}
|
||||||
|
crate::util::json_err(
|
||||||
|
self.response_code,
|
||||||
|
serde_json::to_string(&serde_json::json!({
|
||||||
|
"message": self.message,
|
||||||
|
"code": self.json_code,
|
||||||
|
}))
|
||||||
|
.unwrap(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! fail {
|
||||||
|
($($stuff:tt)+) => {{
|
||||||
|
tracing::error!($($stuff)+);
|
||||||
|
return Err(crate::error::GENERIC_SERVER_ERROR);
|
||||||
|
}};
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) use fail;
|
||||||
|
|
||||||
#[allow(unused_macros)]
|
|
||||||
macro_rules! define_error {
|
macro_rules! define_error {
|
||||||
( $name:ident, $response_code:expr, $json_code:expr, $message:expr ) => {
|
( $name:ident, $response_code:expr, $json_code:expr, $message:expr ) => {
|
||||||
const $name: PKError = PKError {
|
#[allow(dead_code)]
|
||||||
|
pub const $name: PKError = PKError {
|
||||||
response_code: $response_code,
|
response_code: $response_code,
|
||||||
json_code: $json_code,
|
json_code: $json_code,
|
||||||
message: $message,
|
message: $message,
|
||||||
|
inner: None,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// define_error! { GENERIC_BAD_REQUEST, StatusCode::BAD_REQUEST, 0, "400: Bad Request" }
|
define_error! { GENERIC_BAD_REQUEST, StatusCode::BAD_REQUEST, 0, "400: Bad Request" }
|
||||||
|
define_error! { GENERIC_SERVER_ERROR, StatusCode::INTERNAL_SERVER_ERROR, 0, "500: Internal Server Error" }
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,19 @@
|
||||||
#![feature(let_chains)]
|
|
||||||
|
|
||||||
use auth::{AuthState, INTERNAL_APPID_HEADER, INTERNAL_SYSTEMID_HEADER};
|
use auth::{AuthState, INTERNAL_APPID_HEADER, INTERNAL_SYSTEMID_HEADER};
|
||||||
use axum::{
|
use axum::{
|
||||||
|
Extension, Router,
|
||||||
body::Body,
|
body::Body,
|
||||||
extract::{Request as ExtractRequest, State},
|
extract::{Request as ExtractRequest, State},
|
||||||
http::{Response, StatusCode, Uri},
|
http::Uri,
|
||||||
response::IntoResponse,
|
response::{IntoResponse, Response},
|
||||||
routing::{delete, get, patch, post},
|
routing::{delete, get, patch, post},
|
||||||
Extension, Router,
|
|
||||||
};
|
};
|
||||||
use hyper_util::{
|
use hyper_util::{
|
||||||
client::legacy::{connect::HttpConnector, Client},
|
client::legacy::{Client, connect::HttpConnector},
|
||||||
rt::TokioExecutor,
|
rt::TokioExecutor,
|
||||||
};
|
};
|
||||||
use tracing::{error, info};
|
use tracing::info;
|
||||||
|
|
||||||
|
use pk_macros::api_endpoint;
|
||||||
|
|
||||||
mod auth;
|
mod auth;
|
||||||
mod endpoints;
|
mod endpoints;
|
||||||
|
|
@ -30,11 +30,12 @@ pub struct ApiContext {
|
||||||
rproxy_client: Client<HttpConnector, Body>,
|
rproxy_client: Client<HttpConnector, Body>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[api_endpoint]
|
||||||
async fn rproxy(
|
async fn rproxy(
|
||||||
Extension(auth): Extension<AuthState>,
|
Extension(auth): Extension<AuthState>,
|
||||||
State(ctx): State<ApiContext>,
|
State(ctx): State<ApiContext>,
|
||||||
mut req: ExtractRequest<Body>,
|
mut req: ExtractRequest<Body>,
|
||||||
) -> Result<Response<Body>, StatusCode> {
|
) -> Response {
|
||||||
let path = req.uri().path();
|
let path = req.uri().path();
|
||||||
let path_query = req
|
let path_query = req
|
||||||
.uri()
|
.uri()
|
||||||
|
|
@ -59,15 +60,7 @@ async fn rproxy(
|
||||||
headers.append(INTERNAL_APPID_HEADER, aid.into());
|
headers.append(INTERNAL_APPID_HEADER, aid.into());
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(ctx
|
Ok(ctx.rproxy_client.request(req).await?.into_response())
|
||||||
.rproxy_client
|
|
||||||
.request(req)
|
|
||||||
.await
|
|
||||||
.map_err(|error| {
|
|
||||||
error!(?error, "failed to serve reverse proxy to dotnet-api");
|
|
||||||
StatusCode::BAD_GATEWAY
|
|
||||||
})?
|
|
||||||
.into_response())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// this function is manually formatted for easier legibility of route_services
|
// this function is manually formatted for easier legibility of route_services
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,12 @@ use axum::{
|
||||||
response::Response,
|
response::Response,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use subtle::ConstantTimeEq;
|
||||||
|
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
|
|
||||||
use crate::auth::AuthState;
|
use crate::auth::AuthState;
|
||||||
use crate::{util::json_err, ApiContext};
|
use crate::{ApiContext, util::json_err};
|
||||||
|
|
||||||
pub async fn auth(State(ctx): State<ApiContext>, mut req: Request, next: Next) -> Response {
|
pub async fn auth(State(ctx): State<ApiContext>, mut req: Request, next: Next) -> Response {
|
||||||
let mut authed_system_id: Option<i32> = None;
|
let mut authed_system_id: Option<i32> = None;
|
||||||
|
|
@ -48,15 +50,31 @@ pub async fn auth(State(ctx): State<ApiContext>, mut req: Request, next: Next) -
|
||||||
.expect("missing api config")
|
.expect("missing api config")
|
||||||
.temp_token2
|
.temp_token2
|
||||||
.as_ref()
|
.as_ref()
|
||||||
// this is NOT how you validate tokens
|
&& app_auth_header
|
||||||
// but this is low abuse risk so we're keeping it for now
|
.as_bytes()
|
||||||
&& app_auth_header == config_token2
|
.ct_eq(config_token2.as_bytes())
|
||||||
|
.into()
|
||||||
{
|
{
|
||||||
authed_app_id = Some(1);
|
authed_app_id = Some(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// todo: fix syntax
|
||||||
|
let internal = if req.headers().get("x-pluralkit-client-ip").is_none()
|
||||||
|
&& let Some(auth_header) = req
|
||||||
|
.headers()
|
||||||
|
.get("x-pluralkit-internalauth")
|
||||||
|
.map(|h| h.to_str().ok())
|
||||||
|
.flatten()
|
||||||
|
&& let Some(real_token) = libpk::config.internal_auth.clone()
|
||||||
|
&& auth_header.as_bytes().ct_eq(real_token.as_bytes()).into()
|
||||||
|
{
|
||||||
|
true
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
};
|
||||||
|
|
||||||
req.extensions_mut()
|
req.extensions_mut()
|
||||||
.insert(AuthState::new(authed_system_id, authed_app_id));
|
.insert(AuthState::new(authed_system_id, authed_app_id, internal));
|
||||||
|
|
||||||
next.run(req).await
|
next.run(req).await
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ use std::time::Instant;
|
||||||
|
|
||||||
use axum::{extract::MatchedPath, extract::Request, middleware::Next, response::Response};
|
use axum::{extract::MatchedPath, extract::Request, middleware::Next, response::Response};
|
||||||
use metrics::{counter, histogram};
|
use metrics::{counter, histogram};
|
||||||
use tracing::{info, span, warn, Instrument, Level};
|
use tracing::{Instrument, Level, info, span, warn};
|
||||||
|
|
||||||
use crate::{auth::AuthState, util::header_or_unknown};
|
use crate::{auth::AuthState, util::header_or_unknown};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,11 @@ use axum::{
|
||||||
routing::url_params::UrlParams,
|
routing::url_params::UrlParams,
|
||||||
};
|
};
|
||||||
|
|
||||||
use sqlx::{types::Uuid, Postgres};
|
use sqlx::{Postgres, types::Uuid};
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
|
|
||||||
use crate::auth::AuthState;
|
use crate::auth::AuthState;
|
||||||
use crate::{util::json_err, ApiContext};
|
use crate::{ApiContext, util::json_err};
|
||||||
use pluralkit_models::PKSystem;
|
use pluralkit_models::PKSystem;
|
||||||
|
|
||||||
// move this somewhere else
|
// move this somewhere else
|
||||||
|
|
@ -31,7 +31,7 @@ pub async fn params(State(ctx): State<ApiContext>, mut req: Request, next: Next)
|
||||||
StatusCode::BAD_REQUEST,
|
StatusCode::BAD_REQUEST,
|
||||||
r#"{"message":"400: Bad Request","code": 0}"#.to_string(),
|
r#"{"message":"400: Bad Request","code": 0}"#.to_string(),
|
||||||
)
|
)
|
||||||
.into()
|
.into();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -45,21 +45,6 @@ pub fn ratelimiter<F, T>(f: F) -> FromFnLayer<F, Option<RedisPool>, T> {
|
||||||
|
|
||||||
tokio::spawn(async move { handle });
|
tokio::spawn(async move { handle });
|
||||||
|
|
||||||
let rscript = r.clone();
|
|
||||||
tokio::spawn(async move {
|
|
||||||
if let Ok(()) = rscript.wait_for_connect().await {
|
|
||||||
match rscript
|
|
||||||
.script_load::<String, String>(LUA_SCRIPT.to_string())
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
Ok(_) => info!("connected to redis for request rate limiting"),
|
|
||||||
Err(error) => error!(?error, "could not load redis script"),
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
error!("could not wait for connection to load redis script!");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
r
|
r
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -152,12 +137,34 @@ pub async fn do_request_ratelimited(
|
||||||
let period = 1; // seconds
|
let period = 1; // seconds
|
||||||
let cost = 1; // todo: update this for group member endpoints
|
let cost = 1; // todo: update this for group member endpoints
|
||||||
|
|
||||||
|
let script_exists: Vec<usize> =
|
||||||
|
match redis.script_exists(vec![LUA_SCRIPT_SHA.to_string()]).await {
|
||||||
|
Ok(exists) => exists,
|
||||||
|
Err(error) => {
|
||||||
|
error!(?error, "failed to check ratelimit script");
|
||||||
|
return json_err(
|
||||||
|
StatusCode::INTERNAL_SERVER_ERROR,
|
||||||
|
r#"{"message": "500: internal server error", "code": 0}"#.to_string(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if script_exists[0] != 1 {
|
||||||
|
match redis
|
||||||
|
.script_load::<String, String>(LUA_SCRIPT.to_string())
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
Ok(_) => info!("successfully loaded ratelimit script to redis"),
|
||||||
|
Err(error) => {
|
||||||
|
error!(?error, "could not load redis script")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// local rate_limit_key = KEYS[1]
|
// local rate_limit_key = KEYS[1]
|
||||||
// local rate = ARGV[1]
|
// local rate = ARGV[1]
|
||||||
// local period = ARGV[2]
|
// local period = ARGV[2]
|
||||||
// return {remaining, tostring(retry_after), reset_after}
|
// return {remaining, tostring(retry_after), reset_after}
|
||||||
|
|
||||||
// todo: check if error is script not found and reload script
|
|
||||||
let resp = redis
|
let resp = redis
|
||||||
.evalsha::<(i32, String, u64), String, Vec<String>, Vec<i32>>(
|
.evalsha::<(i32, String, u64), String, Vec<String>, Vec<i32>>(
|
||||||
LUA_SCRIPT_SHA.to_string(),
|
LUA_SCRIPT_SHA.to_string(),
|
||||||
|
|
@ -219,7 +226,7 @@ pub async fn do_request_ratelimited(
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
tracing::error!(?error, "error getting ratelimit info");
|
error!(?error, "error getting ratelimit info");
|
||||||
return json_err(
|
return json_err(
|
||||||
StatusCode::INTERNAL_SERVER_ERROR,
|
StatusCode::INTERNAL_SERVER_ERROR,
|
||||||
r#"{"message": "500: internal server error", "code": 0}"#.to_string(),
|
r#"{"message": "500: internal server error", "code": 0}"#.to_string(),
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ use axum::{
|
||||||
http::{HeaderValue, StatusCode},
|
http::{HeaderValue, StatusCode},
|
||||||
response::IntoResponse,
|
response::IntoResponse,
|
||||||
};
|
};
|
||||||
use serde_json::{json, to_string, Value};
|
use serde_json::{Value, json, to_string};
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
|
|
||||||
pub fn header_or_unknown(header: Option<&HeaderValue>) -> &str {
|
pub fn header_or_unknown(header: Option<&HeaderValue>) -> &str {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "avatars"
|
name = "avatars"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "avatar_cleanup"
|
name = "avatar_cleanup"
|
||||||
|
|
|
||||||
|
|
@ -8,10 +8,10 @@ use anyhow::Context;
|
||||||
use axum::extract::State;
|
use axum::extract::State;
|
||||||
use axum::routing::get;
|
use axum::routing::get;
|
||||||
use axum::{
|
use axum::{
|
||||||
|
Json, Router,
|
||||||
http::StatusCode,
|
http::StatusCode,
|
||||||
response::{IntoResponse, Response},
|
response::{IntoResponse, Response},
|
||||||
routing::post,
|
routing::post,
|
||||||
Json, Router,
|
|
||||||
};
|
};
|
||||||
use libpk::_config::AvatarsConfig;
|
use libpk::_config::AvatarsConfig;
|
||||||
use libpk::db::repository::avatars as db;
|
use libpk::db::repository::avatars as db;
|
||||||
|
|
@ -153,7 +153,7 @@ async fn verify(
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let encoded = process::process_async(result.data, req.kind).await?;
|
process::process_async(result.data, req.kind).await?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ use std::io::Cursor;
|
||||||
use std::time::Instant;
|
use std::time::Instant;
|
||||||
use tracing::{debug, error, info, instrument};
|
use tracing::{debug, error, info, instrument};
|
||||||
|
|
||||||
use crate::{hash::Hash, ImageKind, PKAvatarError};
|
use crate::{ImageKind, PKAvatarError, hash::Hash};
|
||||||
|
|
||||||
const MAX_DIMENSION: u32 = 4000;
|
const MAX_DIMENSION: u32 = 4000;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ pub async fn pull(
|
||||||
let size = match response.content_length() {
|
let size = match response.content_length() {
|
||||||
None => return Err(PKAvatarError::MissingHeader("Content-Length")),
|
None => return Err(PKAvatarError::MissingHeader("Content-Length")),
|
||||||
Some(size) if size > MAX_SIZE => {
|
Some(size) if size > MAX_SIZE => {
|
||||||
return Err(PKAvatarError::ImageFileSizeTooLarge(size, MAX_SIZE))
|
return Err(PKAvatarError::ImageFileSizeTooLarge(size, MAX_SIZE));
|
||||||
}
|
}
|
||||||
Some(size) => size,
|
Some(size) => size,
|
||||||
};
|
};
|
||||||
|
|
@ -162,7 +162,7 @@ pub fn parse_url(url: &str) -> anyhow::Result<ParsedUrl> {
|
||||||
attachment_id: 0,
|
attachment_id: 0,
|
||||||
filename: "".to_string(),
|
filename: "".to_string(),
|
||||||
full_url: url.to_string(),
|
full_url: url.to_string(),
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
_ => anyhow::bail!("not a discord cdn url"),
|
_ => anyhow::bail!("not a discord cdn url"),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "dispatch"
|
name = "dispatch"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
use std::time::Instant;
|
use std::time::Instant;
|
||||||
|
|
||||||
use axum::{extract::MatchedPath, extract::Request, middleware::Next, response::Response};
|
use axum::{extract::MatchedPath, extract::Request, middleware::Next, response::Response};
|
||||||
use tracing::{info, span, warn, Instrument, Level};
|
use tracing::{Instrument, Level, info, span, warn};
|
||||||
|
|
||||||
// log any requests that take longer than 2 seconds
|
// log any requests that take longer than 2 seconds
|
||||||
// todo: change as necessary
|
// todo: change as necessary
|
||||||
|
|
|
||||||
|
|
@ -5,17 +5,16 @@ use hickory_client::{
|
||||||
rr::{DNSClass, Name, RData, RecordType},
|
rr::{DNSClass, Name, RData, RecordType},
|
||||||
udp::UdpClientStream,
|
udp::UdpClientStream,
|
||||||
};
|
};
|
||||||
use reqwest::{redirect::Policy, StatusCode};
|
use reqwest::{StatusCode, redirect::Policy};
|
||||||
use std::{
|
use std::{
|
||||||
net::{Ipv4Addr, SocketAddr, SocketAddrV4},
|
net::{Ipv4Addr, SocketAddr, SocketAddrV4},
|
||||||
sync::Arc,
|
sync::Arc,
|
||||||
time::Duration,
|
time::Duration,
|
||||||
};
|
};
|
||||||
use tokio::{net::UdpSocket, sync::RwLock};
|
use tokio::{net::UdpSocket, sync::RwLock};
|
||||||
use tracing::{debug, error, info};
|
use tracing::{debug, error};
|
||||||
use tracing_subscriber::EnvFilter;
|
|
||||||
|
|
||||||
use axum::{extract::State, http::Uri, routing::post, Json, Router};
|
use axum::{Json, Router, extract::State, http::Uri, routing::post};
|
||||||
|
|
||||||
mod logger;
|
mod logger;
|
||||||
|
|
||||||
|
|
@ -128,7 +127,7 @@ async fn dispatch(
|
||||||
|
|
||||||
match res {
|
match res {
|
||||||
Ok(res) if res.status() != 200 => {
|
Ok(res) if res.status() != 200 => {
|
||||||
return DispatchResponse::InvalidResponseCode(res.status()).to_string()
|
return DispatchResponse::InvalidResponseCode(res.status()).to_string();
|
||||||
}
|
}
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
error!(?error, url = req.url.clone(), "failed to fetch");
|
error!(?error, url = req.url.clone(), "failed to fetch");
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gateway"
|
name = "gateway"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
use axum::{
|
use axum::{
|
||||||
|
Router,
|
||||||
extract::{ConnectInfo, Path, State},
|
extract::{ConnectInfo, Path, State},
|
||||||
http::StatusCode,
|
http::StatusCode,
|
||||||
response::{IntoResponse, Response},
|
response::{IntoResponse, Response},
|
||||||
routing::{delete, get, post},
|
routing::{delete, get, post},
|
||||||
Router,
|
|
||||||
};
|
};
|
||||||
use libpk::runtime_config::RuntimeConfig;
|
use libpk::runtime_config::RuntimeConfig;
|
||||||
use serde_json::{json, to_string};
|
use serde_json::{json, to_string};
|
||||||
use tracing::{error, info};
|
use tracing::{error, info};
|
||||||
use twilight_model::id::{marker::ChannelMarker, Id};
|
use twilight_model::id::{Id, marker::ChannelMarker};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
discord::{
|
discord::{
|
||||||
cache::{dm_channel, DiscordCache, DM_PERMISSIONS},
|
cache::{DM_PERMISSIONS, DiscordCache, dm_channel},
|
||||||
gateway::cluster_config,
|
gateway::cluster_config,
|
||||||
shard_state::ShardStateManager,
|
shard_state::ShardStateManager,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -4,18 +4,18 @@ use serde::Serialize;
|
||||||
use std::{collections::HashMap, sync::Arc};
|
use std::{collections::HashMap, sync::Arc};
|
||||||
use tokio::sync::RwLock;
|
use tokio::sync::RwLock;
|
||||||
use twilight_cache_inmemory::{
|
use twilight_cache_inmemory::{
|
||||||
|
InMemoryCache, ResourceType,
|
||||||
model::CachedMember,
|
model::CachedMember,
|
||||||
permission::{MemberRoles, RootError},
|
permission::{MemberRoles, RootError},
|
||||||
traits::CacheableChannel,
|
traits::CacheableChannel,
|
||||||
InMemoryCache, ResourceType,
|
|
||||||
};
|
};
|
||||||
use twilight_gateway::Event;
|
use twilight_gateway::Event;
|
||||||
use twilight_model::{
|
use twilight_model::{
|
||||||
channel::{Channel, ChannelType},
|
channel::{Channel, ChannelType},
|
||||||
guild::{Guild, Member, Permissions},
|
guild::{Guild, Member, Permissions},
|
||||||
id::{
|
id::{
|
||||||
marker::{ChannelMarker, GuildMarker, MessageMarker, UserMarker},
|
|
||||||
Id,
|
Id,
|
||||||
|
marker::{ChannelMarker, GuildMarker, MessageMarker, UserMarker},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use twilight_util::permission_calculator::PermissionCalculator;
|
use twilight_util::permission_calculator::PermissionCalculator;
|
||||||
|
|
|
||||||
|
|
@ -6,17 +6,17 @@ use std::sync::Arc;
|
||||||
use tokio::sync::mpsc::Sender;
|
use tokio::sync::mpsc::Sender;
|
||||||
use tracing::{error, info, warn};
|
use tracing::{error, info, warn};
|
||||||
use twilight_gateway::{
|
use twilight_gateway::{
|
||||||
create_iterator, ConfigBuilder, Event, EventTypeFlags, Message, Shard, ShardId,
|
CloseFrame, ConfigBuilder, Event, EventTypeFlags, Message, Shard, ShardId, create_iterator,
|
||||||
};
|
};
|
||||||
use twilight_model::gateway::{
|
use twilight_model::gateway::{
|
||||||
|
Intents,
|
||||||
payload::outgoing::update_presence::UpdatePresencePayload,
|
payload::outgoing::update_presence::UpdatePresencePayload,
|
||||||
presence::{Activity, ActivityType, Status},
|
presence::{Activity, ActivityType, Status},
|
||||||
Intents,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
discord::identify_queue::{self, RedisQueue},
|
|
||||||
RUNTIME_CONFIG_KEY_EVENT_TARGET,
|
RUNTIME_CONFIG_KEY_EVENT_TARGET,
|
||||||
|
discord::identify_queue::{self, RedisQueue},
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::cache::DiscordCache;
|
use super::cache::DiscordCache;
|
||||||
|
|
@ -116,7 +116,11 @@ pub async fn runner(
|
||||||
let raw_event = match item {
|
let raw_event = match item {
|
||||||
Ok(evt) => match evt {
|
Ok(evt) => match evt {
|
||||||
Message::Close(frame) => {
|
Message::Close(frame) => {
|
||||||
|
let mut state_event = ShardStateEvent::Closed;
|
||||||
let close_code = if let Some(close) = frame {
|
let close_code = if let Some(close) = frame {
|
||||||
|
if close == CloseFrame::RESUME {
|
||||||
|
state_event = ShardStateEvent::Reconnect;
|
||||||
|
}
|
||||||
close.code.to_string()
|
close.code.to_string()
|
||||||
} else {
|
} else {
|
||||||
"unknown".to_string()
|
"unknown".to_string()
|
||||||
|
|
@ -131,9 +135,7 @@ pub async fn runner(
|
||||||
)
|
)
|
||||||
.increment(1);
|
.increment(1);
|
||||||
|
|
||||||
if let Err(error) =
|
if let Err(error) = tx_state.try_send((shard.id(), state_event, None, None)) {
|
||||||
tx_state.try_send((shard.id(), ShardStateEvent::Closed, None, None))
|
|
||||||
{
|
|
||||||
error!("failed to update shard state for socket closure: {error}");
|
error!("failed to update shard state for socket closure: {error}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -227,7 +229,9 @@ pub async fn runner(
|
||||||
}
|
}
|
||||||
|
|
||||||
if runtime_config.exists(RUNTIME_CONFIG_KEY_EVENT_TARGET).await {
|
if runtime_config.exists(RUNTIME_CONFIG_KEY_EVENT_TARGET).await {
|
||||||
tx.send((shard.id(), event, raw_event)).await.unwrap();
|
if let Err(error) = tx.try_send((shard.id(), event, raw_event)) {
|
||||||
|
tracing::error!(?error, "error sending shard event");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ impl ShardStateManager {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn socket_closed(&self, shard_id: u32) -> anyhow::Result<()> {
|
pub async fn socket_closed(&self, shard_id: u32, reconnect: bool) -> anyhow::Result<()> {
|
||||||
gauge!("pluralkit_gateway_shard_up").decrement(1);
|
gauge!("pluralkit_gateway_shard_up").decrement(1);
|
||||||
|
|
||||||
let mut info = self
|
let mut info = self
|
||||||
|
|
@ -97,6 +97,9 @@ impl ShardStateManager {
|
||||||
info.shard_id = shard_id as i32;
|
info.shard_id = shard_id as i32;
|
||||||
info.cluster_id = Some(cluster_config().node_id as i32);
|
info.cluster_id = Some(cluster_config().node_id as i32);
|
||||||
info.up = false;
|
info.up = false;
|
||||||
|
if reconnect {
|
||||||
|
info.last_reconnect = chrono::offset::Utc::now().timestamp() as i32
|
||||||
|
}
|
||||||
info.disconnection_count += 1;
|
info.disconnection_count += 1;
|
||||||
|
|
||||||
self.save_shard(shard_id, info).await?;
|
self.save_shard(shard_id, info).await?;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
// - interaction: (custom_id where not_includes "help-menu")
|
// - interaction: (custom_id where not_includes "help-menu")
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
collections::{hash_map::Entry, HashMap},
|
collections::{HashMap, hash_map::Entry},
|
||||||
net::{IpAddr, SocketAddr},
|
net::{IpAddr, SocketAddr},
|
||||||
time::Duration,
|
time::Duration,
|
||||||
};
|
};
|
||||||
|
|
@ -15,8 +15,8 @@ use twilight_gateway::Event;
|
||||||
use twilight_model::{
|
use twilight_model::{
|
||||||
application::interaction::InteractionData,
|
application::interaction::InteractionData,
|
||||||
id::{
|
id::{
|
||||||
marker::{ChannelMarker, MessageMarker, UserMarker},
|
|
||||||
Id,
|
Id,
|
||||||
|
marker::{ChannelMarker, MessageMarker, UserMarker},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -103,7 +103,13 @@ impl EventAwaiter {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
info!("ran event_awaiter cleanup loop, took {}us, {} reactions, {} messages, {} interactions", Instant::now().duration_since(now).as_micros(), counts.0, counts.1, counts.2);
|
info!(
|
||||||
|
"ran event_awaiter cleanup loop, took {}us, {} reactions, {} messages, {} interactions",
|
||||||
|
Instant::now().duration_since(now).as_micros(),
|
||||||
|
counts.0,
|
||||||
|
counts.1,
|
||||||
|
counts.2
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ use axum::{
|
||||||
extract::MatchedPath, extract::Request, http::StatusCode, middleware::Next, response::Response,
|
extract::MatchedPath, extract::Request, http::StatusCode, middleware::Next, response::Response,
|
||||||
};
|
};
|
||||||
use metrics::{counter, histogram};
|
use metrics::{counter, histogram};
|
||||||
use tracing::{info, span, warn, Instrument, Level};
|
use tracing::{Instrument, Level, info, span, warn};
|
||||||
|
|
||||||
// log any requests that take longer than 2 seconds
|
// log any requests that take longer than 2 seconds
|
||||||
// todo: change as necessary
|
// todo: change as necessary
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
#![feature(let_chains)]
|
|
||||||
#![feature(if_let_guard)]
|
#![feature(if_let_guard)]
|
||||||
#![feature(duration_constructors)]
|
#![feature(duration_constructors)]
|
||||||
|
|
||||||
|
|
@ -10,7 +9,7 @@ use libpk::{runtime_config::RuntimeConfig, state::ShardStateEvent};
|
||||||
use reqwest::{ClientBuilder, StatusCode};
|
use reqwest::{ClientBuilder, StatusCode};
|
||||||
use std::{sync::Arc, time::Duration, vec::Vec};
|
use std::{sync::Arc, time::Duration, vec::Vec};
|
||||||
use tokio::{
|
use tokio::{
|
||||||
signal::unix::{signal, SignalKind},
|
signal::unix::{SignalKind, signal},
|
||||||
sync::mpsc::channel,
|
sync::mpsc::channel,
|
||||||
task::JoinSet,
|
task::JoinSet,
|
||||||
};
|
};
|
||||||
|
|
@ -109,8 +108,16 @@ async fn main() -> anyhow::Result<()> {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
ShardStateEvent::Closed => {
|
ShardStateEvent::Closed => {
|
||||||
if let Err(error) = shard_state.socket_closed(shard_id.number()).await {
|
if let Err(error) =
|
||||||
error!("failed to update shard state for heartbeat: {error}")
|
shard_state.socket_closed(shard_id.number(), false).await
|
||||||
|
{
|
||||||
|
error!("failed to update shard state for closed: {error}")
|
||||||
|
};
|
||||||
|
}
|
||||||
|
ShardStateEvent::Reconnect => {
|
||||||
|
if let Err(error) = shard_state.socket_closed(shard_id.number(), true).await
|
||||||
|
{
|
||||||
|
error!("failed to update shard state for reconnect: {error}")
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
ShardStateEvent::Other => {
|
ShardStateEvent::Other => {
|
||||||
|
|
@ -121,7 +128,7 @@ async fn main() -> anyhow::Result<()> {
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
error!("failed to update shard state for heartbeat: {error}")
|
error!("failed to update shard state for other evt: {error}")
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gdpr_worker"
|
name = "gdpr_worker"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libpk = { path = "../libpk" }
|
libpk = { path = "../libpk" }
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,10 @@
|
||||||
#![feature(let_chains)]
|
|
||||||
|
|
||||||
use sqlx::prelude::FromRow;
|
use sqlx::prelude::FromRow;
|
||||||
use std::{sync::Arc, time::Duration};
|
use std::{sync::Arc, time::Duration};
|
||||||
use tracing::{error, info, warn};
|
use tracing::{error, info, warn};
|
||||||
use twilight_http::api_error::{ApiError, GeneralApiError};
|
use twilight_http::api_error::{ApiError, GeneralApiError};
|
||||||
use twilight_model::id::{
|
use twilight_model::id::{
|
||||||
marker::{ChannelMarker, MessageMarker},
|
|
||||||
Id,
|
Id,
|
||||||
|
marker::{ChannelMarker, MessageMarker},
|
||||||
};
|
};
|
||||||
|
|
||||||
// create table messages_gdpr_jobs (mid bigint not null references messages(mid) on delete cascade, channel bigint not null);
|
// create table messages_gdpr_jobs (mid bigint not null references messages(mid) on delete cascade, channel bigint not null);
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "libpk"
|
name = "libpk"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ use lazy_static::lazy_static;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use twilight_model::id::{marker::UserMarker, Id};
|
use twilight_model::id::{Id, marker::UserMarker};
|
||||||
|
|
||||||
#[derive(Clone, Deserialize, Debug)]
|
#[derive(Clone, Deserialize, Debug)]
|
||||||
pub struct ClusterSettings {
|
pub struct ClusterSettings {
|
||||||
|
|
@ -128,6 +128,9 @@ pub struct PKConfig {
|
||||||
|
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
pub sentry_url: Option<String>,
|
pub sentry_url: Option<String>,
|
||||||
|
|
||||||
|
#[serde(default)]
|
||||||
|
pub internal_auth: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PKConfig {
|
impl PKConfig {
|
||||||
|
|
@ -148,11 +151,11 @@ lazy_static! {
|
||||||
// hacks
|
// hacks
|
||||||
if let Ok(var) = std::env::var("NOMAD_ALLOC_INDEX")
|
if let Ok(var) = std::env::var("NOMAD_ALLOC_INDEX")
|
||||||
&& std::env::var("pluralkit__discord__cluster__total_nodes").is_ok() {
|
&& std::env::var("pluralkit__discord__cluster__total_nodes").is_ok() {
|
||||||
std::env::set_var("pluralkit__discord__cluster__node_id", var);
|
unsafe { std::env::set_var("pluralkit__discord__cluster__node_id", var); }
|
||||||
}
|
}
|
||||||
if let Ok(var) = std::env::var("STATEFULSET_NAME_FOR_INDEX")
|
if let Ok(var) = std::env::var("STATEFULSET_NAME_FOR_INDEX")
|
||||||
&& std::env::var("pluralkit__discord__cluster__total_nodes").is_ok() {
|
&& std::env::var("pluralkit__discord__cluster__total_nodes").is_ok() {
|
||||||
std::env::set_var("pluralkit__discord__cluster__node_id", var.split("-").last().unwrap());
|
unsafe { std::env::set_var("pluralkit__discord__cluster__node_id", var.split("-").last().unwrap()); }
|
||||||
}
|
}
|
||||||
|
|
||||||
Arc::new(Config::builder()
|
Arc::new(Config::builder()
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ pub async fn remove_deletion_queue(pool: &PgPool, attachment_id: u64) -> anyhow:
|
||||||
|
|
||||||
pub async fn pop_queue(
|
pub async fn pop_queue(
|
||||||
pool: &PgPool,
|
pool: &PgPool,
|
||||||
) -> anyhow::Result<Option<(Transaction<Postgres>, ImageQueueEntry)>> {
|
) -> anyhow::Result<Option<(Transaction<'_, Postgres>, ImageQueueEntry)>> {
|
||||||
let mut tx = pool.begin().await?;
|
let mut tx = pool.begin().await?;
|
||||||
let res: Option<ImageQueueEntry> = sqlx::query_as("delete from image_queue where itemid = (select itemid from image_queue order by itemid for update skip locked limit 1) returning *")
|
let res: Option<ImageQueueEntry> = sqlx::query_as("delete from image_queue where itemid = (select itemid from image_queue order by itemid for update skip locked limit 1) returning *")
|
||||||
.fetch_optional(&mut *tx).await?;
|
.fetch_optional(&mut *tx).await?;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use sqlx::{
|
use sqlx::{
|
||||||
types::chrono::{DateTime, Utc},
|
|
||||||
FromRow,
|
FromRow,
|
||||||
|
types::chrono::{DateTime, Utc},
|
||||||
};
|
};
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,8 @@
|
||||||
#![feature(let_chains)]
|
|
||||||
use std::net::SocketAddr;
|
use std::net::SocketAddr;
|
||||||
|
|
||||||
use metrics_exporter_prometheus::PrometheusBuilder;
|
use metrics_exporter_prometheus::PrometheusBuilder;
|
||||||
use sentry::IntoDsn;
|
use sentry::IntoDsn;
|
||||||
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt, EnvFilter};
|
use tracing_subscriber::{EnvFilter, layer::SubscriberExt, util::SubscriberInitExt};
|
||||||
|
|
||||||
use sentry_tracing::event_from_event;
|
use sentry_tracing::event_from_event;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,11 +8,13 @@ pub struct ShardState {
|
||||||
/// unix timestamp
|
/// unix timestamp
|
||||||
pub last_heartbeat: i32,
|
pub last_heartbeat: i32,
|
||||||
pub last_connection: i32,
|
pub last_connection: i32,
|
||||||
|
pub last_reconnect: i32,
|
||||||
pub cluster_id: Option<i32>,
|
pub cluster_id: Option<i32>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum ShardStateEvent {
|
pub enum ShardStateEvent {
|
||||||
Closed,
|
Closed,
|
||||||
Heartbeat,
|
Heartbeat,
|
||||||
|
Reconnect,
|
||||||
Other,
|
Other,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pk_macros"
|
name = "pk_macros"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
@ -10,4 +10,5 @@ proc-macro = true
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
syn = "2.0"
|
syn = "2.0"
|
||||||
|
prettyplease = "0.2.36"
|
||||||
|
|
||||||
|
|
|
||||||
52
crates/macros/src/api.rs
Normal file
52
crates/macros/src/api.rs
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
use quote::quote;
|
||||||
|
use syn::{FnArg, ItemFn, Pat, parse_macro_input};
|
||||||
|
|
||||||
|
fn _pretty_print(ts: &proc_macro2::TokenStream) -> String {
|
||||||
|
let file = syn::parse_file(&ts.to_string()).unwrap();
|
||||||
|
prettyplease::unparse(&file)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn macro_impl(
|
||||||
|
_args: proc_macro::TokenStream,
|
||||||
|
input: proc_macro::TokenStream,
|
||||||
|
) -> proc_macro::TokenStream {
|
||||||
|
let input = parse_macro_input!(input as ItemFn);
|
||||||
|
|
||||||
|
let fn_name = &input.sig.ident;
|
||||||
|
let fn_params = &input.sig.inputs;
|
||||||
|
let fn_body = &input.block;
|
||||||
|
let syn::ReturnType::Type(_, fn_return_type) = &input.sig.output else {
|
||||||
|
panic!("handler return type must not be nothing");
|
||||||
|
};
|
||||||
|
let pms: Vec<proc_macro2::TokenStream> = fn_params
|
||||||
|
.iter()
|
||||||
|
.map(|v| {
|
||||||
|
let FnArg::Typed(pat) = v else {
|
||||||
|
panic!("must not have self param in handler");
|
||||||
|
};
|
||||||
|
let mut pat = pat.pat.clone();
|
||||||
|
if let Pat::Ident(ident) = *pat {
|
||||||
|
let mut ident = ident.clone();
|
||||||
|
ident.mutability = None;
|
||||||
|
pat = Box::new(Pat::Ident(ident));
|
||||||
|
}
|
||||||
|
quote! { #pat }
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let res = quote! {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
pub async fn #fn_name(#fn_params) -> axum::response::Response {
|
||||||
|
async fn inner(#fn_params) -> Result<#fn_return_type, crate::error::PKError> {
|
||||||
|
#fn_body
|
||||||
|
}
|
||||||
|
|
||||||
|
match inner(#(#pms),*).await {
|
||||||
|
Ok(res) => res.into_response(),
|
||||||
|
Err(err) => err.into_response(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
res.into()
|
||||||
|
}
|
||||||
|
|
@ -1,8 +1,14 @@
|
||||||
use proc_macro::TokenStream;
|
use proc_macro::TokenStream;
|
||||||
|
|
||||||
|
mod api;
|
||||||
mod entrypoint;
|
mod entrypoint;
|
||||||
mod model;
|
mod model;
|
||||||
|
|
||||||
|
#[proc_macro_attribute]
|
||||||
|
pub fn api_endpoint(args: TokenStream, input: TokenStream) -> TokenStream {
|
||||||
|
api::macro_impl(args, input)
|
||||||
|
}
|
||||||
|
|
||||||
#[proc_macro_attribute]
|
#[proc_macro_attribute]
|
||||||
pub fn main(args: TokenStream, input: TokenStream) -> TokenStream {
|
pub fn main(args: TokenStream, input: TokenStream) -> TokenStream {
|
||||||
entrypoint::macro_impl(args, input)
|
entrypoint::macro_impl(args, input)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
use proc_macro2::{Span, TokenStream};
|
use proc_macro2::{Span, TokenStream};
|
||||||
use quote::quote;
|
use quote::quote;
|
||||||
use syn::{parse_macro_input, DeriveInput, Expr, Ident, Meta, Type};
|
use syn::{DeriveInput, Expr, Ident, Meta, Type, parse_macro_input};
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
enum ElemPatchability {
|
enum ElemPatchability {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "migrate"
|
name = "migrate"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libpk = { path = "../libpk" }
|
libpk = { path = "../libpk" }
|
||||||
|
|
|
||||||
|
|
@ -8,10 +8,11 @@ use std::{
|
||||||
|
|
||||||
fn main() -> Result<(), Box<dyn Error>> {
|
fn main() -> Result<(), Box<dyn Error>> {
|
||||||
let out_dir = env::var("OUT_DIR")?;
|
let out_dir = env::var("OUT_DIR")?;
|
||||||
|
let manifest_dir = env::var("CARGO_MANIFEST_DIR")?;
|
||||||
let dest_path = Path::new(&out_dir).join("data.rs");
|
let dest_path = Path::new(&out_dir).join("data.rs");
|
||||||
let mut datafile = File::create(&dest_path)?;
|
let mut datafile = File::create(&dest_path)?;
|
||||||
|
|
||||||
let prefix = "../../../../../../crates/migrate/data";
|
let prefix = manifest_dir + "/data";
|
||||||
|
|
||||||
let ct = fs::read_dir("data/migrations")?
|
let ct = fs::read_dir("data/migrations")?
|
||||||
.filter(|p| {
|
.filter(|p| {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
#![feature(let_chains)]
|
|
||||||
|
|
||||||
use tracing::info;
|
use tracing::info;
|
||||||
|
|
||||||
include!(concat!(env!("OUT_DIR"), "/data.rs"));
|
include!(concat!(env!("OUT_DIR"), "/data.rs"));
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pluralkit_models"
|
name = "pluralkit_models"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = { workspace = true, features = ["serde"] }
|
chrono = { workspace = true, features = ["serde"] }
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ pub enum PrivacyLevel {
|
||||||
}
|
}
|
||||||
|
|
||||||
// this sucks, put it somewhere else
|
// this sucks, put it somewhere else
|
||||||
use sqlx::{postgres::PgTypeInfo, Database, Decode, Postgres, Type};
|
use sqlx::{Database, Decode, Postgres, Type, postgres::PgTypeInfo};
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
_util::fake_enum_impls!(PrivacyLevel);
|
_util::fake_enum_impls!(PrivacyLevel);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "scheduled_tasks"
|
name = "scheduled_tasks"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libpk = { path = "../libpk" }
|
libpk = { path = "../libpk" }
|
||||||
|
|
@ -9,6 +9,7 @@ libpk = { path = "../libpk" }
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
chrono = { workspace = true }
|
chrono = { workspace = true }
|
||||||
fred = { workspace = true }
|
fred = { workspace = true }
|
||||||
|
lazy_static = { workspace = true }
|
||||||
metrics = { workspace = true }
|
metrics = { workspace = true }
|
||||||
reqwest = { workspace = true }
|
reqwest = { workspace = true }
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -99,13 +99,25 @@ async fn main() -> anyhow::Result<()> {
|
||||||
update_db_message_meta
|
update_db_message_meta
|
||||||
);
|
);
|
||||||
doforever!("* * * * *", "discord stats updater", update_discord_stats);
|
doforever!("* * * * *", "discord stats updater", update_discord_stats);
|
||||||
// on :00 and :30
|
// on hh:00 and hh:30
|
||||||
doforever!(
|
doforever!(
|
||||||
"0,30 * * * *",
|
"0,30 * * * *",
|
||||||
"queue deleted image cleanup job",
|
"queue deleted image cleanup job",
|
||||||
queue_deleted_image_cleanup
|
queue_deleted_image_cleanup
|
||||||
);
|
);
|
||||||
|
// non-standard cron: at hh:mm:00, hh:mm:30
|
||||||
doforever!("0,30 * * * * *", "stats api updater", update_stats_api);
|
doforever!("0,30 * * * * *", "stats api updater", update_stats_api);
|
||||||
|
// every hour (could probably even be less frequent, basebackups are taken rarely)
|
||||||
|
doforever!(
|
||||||
|
"* * * * *",
|
||||||
|
"data basebackup info updater",
|
||||||
|
update_data_basebackup_prometheus
|
||||||
|
);
|
||||||
|
doforever!(
|
||||||
|
"* * * * *",
|
||||||
|
"messages basebackup info updater",
|
||||||
|
update_messages_basebackup_prometheus
|
||||||
|
);
|
||||||
|
|
||||||
set.join_next()
|
set.join_next()
|
||||||
.await
|
.await
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
use std::time::Duration;
|
use std::{collections::HashMap, time::Duration};
|
||||||
|
|
||||||
use anyhow::anyhow;
|
use anyhow::anyhow;
|
||||||
use fred::prelude::KeysInterface;
|
use fred::prelude::KeysInterface;
|
||||||
|
|
@ -10,10 +10,22 @@ use metrics::gauge;
|
||||||
use num_format::{Locale, ToFormattedString};
|
use num_format::{Locale, ToFormattedString};
|
||||||
use reqwest::ClientBuilder;
|
use reqwest::ClientBuilder;
|
||||||
use sqlx::Executor;
|
use sqlx::Executor;
|
||||||
|
use tokio::{process::Command, sync::Mutex};
|
||||||
|
|
||||||
use crate::AppCtx;
|
use crate::AppCtx;
|
||||||
|
|
||||||
pub async fn update_prometheus(ctx: AppCtx) -> anyhow::Result<()> {
|
pub async fn update_prometheus(ctx: AppCtx) -> anyhow::Result<()> {
|
||||||
|
let data_ts = *BASEBACKUP_TS.lock().await.get("data").unwrap_or(&0) as f64;
|
||||||
|
let messages_ts = *BASEBACKUP_TS.lock().await.get("messages").unwrap_or(&0) as f64;
|
||||||
|
|
||||||
|
let now_ts = chrono::Utc::now().timestamp() as f64;
|
||||||
|
|
||||||
|
gauge!("pluralkit_latest_backup_ts", "repo" => "data").set(data_ts);
|
||||||
|
gauge!("pluralkit_latest_backup_ts", "repo" => "messages").set(messages_ts);
|
||||||
|
|
||||||
|
gauge!("pluralkit_latest_backup_age", "repo" => "data").set(now_ts - data_ts);
|
||||||
|
gauge!("pluralkit_latest_backup_age", "repo" => "messages").set(now_ts - messages_ts);
|
||||||
|
|
||||||
#[derive(sqlx::FromRow)]
|
#[derive(sqlx::FromRow)]
|
||||||
struct Count {
|
struct Count {
|
||||||
count: i64,
|
count: i64,
|
||||||
|
|
@ -41,6 +53,83 @@ pub async fn update_prometheus(ctx: AppCtx) -> anyhow::Result<()> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lazy_static::lazy_static! {
|
||||||
|
static ref BASEBACKUP_TS: Mutex<HashMap<String, i64>> = Mutex::new(HashMap::new());
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn update_data_basebackup_prometheus(_: AppCtx) -> anyhow::Result<()> {
|
||||||
|
update_basebackup_ts("data".to_string()).await
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn update_messages_basebackup_prometheus(_: AppCtx) -> anyhow::Result<()> {
|
||||||
|
update_basebackup_ts("messages".to_string()).await
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn update_basebackup_ts(repo: String) -> anyhow::Result<()> {
|
||||||
|
let mut env = HashMap::new();
|
||||||
|
|
||||||
|
for (key, value) in std::env::vars() {
|
||||||
|
if key.starts_with("AWS") {
|
||||||
|
env.insert(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
env.insert(
|
||||||
|
"WALG_S3_PREFIX".to_string(),
|
||||||
|
format!("s3://pluralkit-backups/{repo}/"),
|
||||||
|
);
|
||||||
|
|
||||||
|
let output = Command::new("wal-g")
|
||||||
|
.arg("backup-list")
|
||||||
|
.arg("--json")
|
||||||
|
.envs(env)
|
||||||
|
.output()
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
if !output.status.success() {
|
||||||
|
// todo: we should return error here
|
||||||
|
tracing::error!(
|
||||||
|
status = output.status.code(),
|
||||||
|
"failed to execute wal-g command"
|
||||||
|
);
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Deserialize)]
|
||||||
|
struct WalgBackupInfo {
|
||||||
|
backup_name: String,
|
||||||
|
time: String,
|
||||||
|
ts_parsed: Option<i64>,
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut info =
|
||||||
|
serde_json::from_str::<Vec<WalgBackupInfo>>(&String::from_utf8_lossy(&output.stdout))?
|
||||||
|
.into_iter()
|
||||||
|
.filter(|v| v.backup_name.contains("base"))
|
||||||
|
.filter_map(|mut v| {
|
||||||
|
chrono::DateTime::parse_from_rfc3339(&v.time)
|
||||||
|
.ok()
|
||||||
|
.map(|dt| {
|
||||||
|
v.ts_parsed = Some(dt.with_timezone(&chrono::Utc).timestamp());
|
||||||
|
v
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.collect::<Vec<WalgBackupInfo>>();
|
||||||
|
|
||||||
|
info.sort_by(|a, b| b.ts_parsed.cmp(&a.ts_parsed));
|
||||||
|
|
||||||
|
let Some(info) = info.first() else {
|
||||||
|
anyhow::bail!("could not find any basebackups in repo {repo}");
|
||||||
|
};
|
||||||
|
|
||||||
|
BASEBACKUP_TS
|
||||||
|
.lock()
|
||||||
|
.await
|
||||||
|
.insert(repo, info.ts_parsed.unwrap());
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn update_db_meta(ctx: AppCtx) -> anyhow::Result<()> {
|
pub async fn update_db_meta(ctx: AppCtx) -> anyhow::Result<()> {
|
||||||
ctx.data
|
ctx.data
|
||||||
.execute(
|
.execute(
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,10 @@ func main() {
|
||||||
createEmbed(rw, r)
|
createEmbed(rw, r)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
r.Get("/status", func(rw http.ResponseWriter, r *http.Request) {
|
||||||
|
http.Redirect(rw, r, "https://status.pluralkit.me/", http.StatusMovedPermanently)
|
||||||
|
})
|
||||||
|
|
||||||
http.ListenAndServe(":8080", r)
|
http.ListenAndServe(":8080", r)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
<Link to="/profile" class="nav-link">Public</Link>
|
<Link to="/profile" class="nav-link">Public</Link>
|
||||||
</NavItem>
|
</NavItem>
|
||||||
<NavItem>
|
<NavItem>
|
||||||
<Link to="/status" class="nav-link">Bot status</Link>
|
<a href="https://status.pluralkit.me/" class="nav-link">Bot status</a>
|
||||||
</NavItem>
|
</NavItem>
|
||||||
</Nav>
|
</Nav>
|
||||||
</Collapse>
|
</Collapse>
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
|
|
||||||
themeConfig: {
|
themeConfig: {
|
||||||
repo: 'PluralKit/PluralKit',
|
repo: false,
|
||||||
docsDir: 'docs/content/',
|
docsDir: 'docs/content/',
|
||||||
docsBranch: 'main',
|
docsBranch: 'main',
|
||||||
editLinks: true,
|
editLinks: true,
|
||||||
|
|
@ -29,7 +29,8 @@ module.exports = {
|
||||||
nav: [
|
nav: [
|
||||||
{ text: "Web dashboard", link: "https://dash.pluralkit.me" },
|
{ text: "Web dashboard", link: "https://dash.pluralkit.me" },
|
||||||
{ text: "Support server", link: "https://discord.gg/PczBt78" },
|
{ text: "Support server", link: "https://discord.gg/PczBt78" },
|
||||||
{ text: "Invite bot", link: "https://discord.com/oauth2/authorize?client_id=466378653216014359&scope=bot%20applications.commands&permissions=536995904" }
|
{ text: "Invite bot", link: "https://discord.com/oauth2/authorize?client_id=466378653216014359&scope=bot%20applications.commands&permissions=536995904" },
|
||||||
|
{ text: "Bot status", link: "https://status.pluralkit.me/" }
|
||||||
],
|
],
|
||||||
sidebar: [
|
sidebar: [
|
||||||
"/",
|
"/",
|
||||||
|
|
|
||||||
91
flake.lock
generated
91
flake.lock
generated
|
|
@ -26,11 +26,11 @@
|
||||||
"pyproject-nix": "pyproject-nix"
|
"pyproject-nix": "pyproject-nix"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1734729217,
|
"lastModified": 1754978539,
|
||||||
"narHash": "sha256-UaBik0h7veLw+VqsK5EP2ucC68BEkHLDJkcfmY+wEuY=",
|
"narHash": "sha256-nrDovydywSKRbWim9Ynmgj8SBm8LK3DI2WuhIqzOHYI=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "dream2nix",
|
"repo": "dream2nix",
|
||||||
"rev": "98c1c2e934995a2c6ce740d4ff43ce0daa19b79f",
|
"rev": "fbec3263cb4895ac86ee9506cdc4e6919a1a2214",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -57,12 +57,12 @@
|
||||||
},
|
},
|
||||||
"flake-compat_2": {
|
"flake-compat_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1696426674,
|
"lastModified": 1733328505,
|
||||||
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
"narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
|
||||||
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
"rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
|
||||||
"revCount": 57,
|
"revCount": 69,
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
"url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.0.1/018afb31-abd1-7bff-a5e4-cff7e18efb7a/source.tar.gz"
|
"url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
|
|
@ -104,11 +104,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1734953472,
|
"lastModified": 1756016279,
|
||||||
"narHash": "sha256-zWPAJFo7NNhSXbOc6YRAXbrWzcJGxNPtutKTTZz46Bs=",
|
"narHash": "sha256-5BhsvOXsoMu4ZNe9HxQSynbbXm2FAZ0TIW5mWKlG5+Q=",
|
||||||
"owner": "yusdacra",
|
"owner": "yusdacra",
|
||||||
"repo": "nix-cargo-integration",
|
"repo": "nix-cargo-integration",
|
||||||
"rev": "e71c873cf3b0dfa52e9550d580531e41eb4b4c6a",
|
"rev": "4714a69e6de235cf750e6cc73f6a989cc7867579",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -119,11 +119,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1734435836,
|
"lastModified": 1755829505,
|
||||||
"narHash": "sha256-kMBQ5PRiFLagltK0sH+08aiNt3zGERC2297iB6vrvlU=",
|
"narHash": "sha256-4/Jd+LkQ2ssw8luQVkqVs9spDBVE6h/u/hC/tzngsPo=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "4989a246d7a390a859852baddb1013f825435cee",
|
"rev": "f937f8ecd1c70efd7e9f90ba13dfb400cf559de4",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -134,14 +134,17 @@
|
||||||
},
|
},
|
||||||
"nixpkgs-lib": {
|
"nixpkgs-lib": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1733096140,
|
"lastModified": 1753579242,
|
||||||
"narHash": "sha256-1qRH7uAUsyQI7R1Uwl4T+XvdNv778H0Nb5njNrqvylY=",
|
"narHash": "sha256-zvaMGVn14/Zz8hnp4VWT9xVnhc8vuL3TStRqwk22biA=",
|
||||||
"type": "tarball",
|
"owner": "nix-community",
|
||||||
"url": "https://github.com/NixOS/nixpkgs/archive/5487e69da40cbd611ab2cadee0b4637225f7cfae.tar.gz"
|
"repo": "nixpkgs.lib",
|
||||||
|
"rev": "0f36c44e01a6129be94e3ade315a5883f0228a6e",
|
||||||
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "tarball",
|
"owner": "nix-community",
|
||||||
"url": "https://github.com/NixOS/nixpkgs/archive/5487e69da40cbd611ab2cadee0b4637225f7cfae.tar.gz"
|
"repo": "nixpkgs.lib",
|
||||||
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"parts": {
|
"parts": {
|
||||||
|
|
@ -149,11 +152,11 @@
|
||||||
"nixpkgs-lib": "nixpkgs-lib"
|
"nixpkgs-lib": "nixpkgs-lib"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1733312601,
|
"lastModified": 1754487366,
|
||||||
"narHash": "sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c=",
|
"narHash": "sha256-pHYj8gUBapuUzKV/kN/tR3Zvqc7o6gdFB9XKXIp1SQ8=",
|
||||||
"owner": "hercules-ci",
|
"owner": "hercules-ci",
|
||||||
"repo": "flake-parts",
|
"repo": "flake-parts",
|
||||||
"rev": "205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9",
|
"rev": "af66ad14b28a127c5c0f3bbb298218fc63528a18",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -164,11 +167,11 @@
|
||||||
},
|
},
|
||||||
"process-compose": {
|
"process-compose": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1733325752,
|
"lastModified": 1749418557,
|
||||||
"narHash": "sha256-79tzPuXNRo1NUllafYW6SjeLtjqfnLGq7tHCM7cAXNg=",
|
"narHash": "sha256-wJHHckWz4Gvj8HXtM5WVJzSKXAEPvskQANVoRiu2w1w=",
|
||||||
"owner": "Platonic-Systems",
|
"owner": "Platonic-Systems",
|
||||||
"repo": "process-compose-flake",
|
"repo": "process-compose-flake",
|
||||||
"rev": "1012530b582f1bd3b102295c799358d95abf42d7",
|
"rev": "91dcc48a6298e47e2441ec76df711f4e38eab94e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -201,18 +204,22 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pyproject-nix": {
|
"pyproject-nix": {
|
||||||
"flake": false,
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"d2n",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1702448246,
|
"lastModified": 1752481895,
|
||||||
"narHash": "sha256-hFg5s/hoJFv7tDpiGvEvXP0UfFvFEDgTdyHIjDVHu1I=",
|
"narHash": "sha256-luVj97hIMpCbwhx3hWiRwjP2YvljWy8FM+4W9njDhLA=",
|
||||||
"owner": "davhau",
|
"owner": "pyproject-nix",
|
||||||
"repo": "pyproject.nix",
|
"repo": "pyproject.nix",
|
||||||
"rev": "5a06a2697b228c04dd2f35659b4b659ca74f7aeb",
|
"rev": "16ee295c25107a94e59a7fc7f2e5322851781162",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "davhau",
|
"owner": "pyproject-nix",
|
||||||
"ref": "dream2nix",
|
|
||||||
"repo": "pyproject.nix",
|
"repo": "pyproject.nix",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
@ -238,11 +245,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1734834660,
|
"lastModified": 1756003222,
|
||||||
"narHash": "sha256-bm8V+Cu8rWJA+vKQnc94mXTpSDgvedyoDKxTVi/uJfw=",
|
"narHash": "sha256-lmEMhIIbjt8Wp1EYbNqCojuU9ygyDFv8Tu0X1k8qIMc=",
|
||||||
"owner": "oxalica",
|
"owner": "oxalica",
|
||||||
"repo": "rust-overlay",
|
"repo": "rust-overlay",
|
||||||
"rev": "b070e6030118680977bc2388868c4b3963872134",
|
"rev": "88ceedecde53e809b4bf8b5fd10d181889d9bac7",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -253,11 +260,11 @@
|
||||||
},
|
},
|
||||||
"services": {
|
"services": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1734242477,
|
"lastModified": 1755996515,
|
||||||
"narHash": "sha256-u+fkdD8+0/0J8k0/YKDc3ReUcYZZGiftGL+Sz2wdRqM=",
|
"narHash": "sha256-1RQQIDhshp1g4PP5teqibcFLfk/ckTDOJRckecAHiU0=",
|
||||||
"owner": "juspay",
|
"owner": "juspay",
|
||||||
"repo": "services-flake",
|
"repo": "services-flake",
|
||||||
"rev": "acc7f3f9f30621b469ca3ee511592a68a4437312",
|
"rev": "e316d6b994fd153f0c35d54bd07d60e53f0ad9a9",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -310,11 +317,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1734704479,
|
"lastModified": 1755934250,
|
||||||
"narHash": "sha256-MMi74+WckoyEWBRcg/oaGRvXC9BVVxDZNRMpL+72wBI=",
|
"narHash": "sha256-CsDojnMgYsfshQw3t4zjRUkmMmUdZGthl16bXVWgRYU=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "treefmt-nix",
|
"repo": "treefmt-nix",
|
||||||
"rev": "65712f5af67234dad91a5a4baee986a8b62dbf8f",
|
"rev": "74e1a52d5bd9430312f8d1b8b0354c92c17453e5",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
16
flake.nix
16
flake.nix
|
|
@ -195,6 +195,22 @@
|
||||||
# TODO: add liveness check
|
# TODO: add liveness check
|
||||||
ready_log_line = "Received Ready";
|
ready_log_line = "Received Ready";
|
||||||
};
|
};
|
||||||
|
### migrations ###
|
||||||
|
pluralkit-migrate-init = mkServiceInitProcess {
|
||||||
|
name = "migrate";
|
||||||
|
};
|
||||||
|
pluralkit-migrate = {
|
||||||
|
command = pkgs.writeShellApplication {
|
||||||
|
name = "pluralkit-migrate";
|
||||||
|
text = ''
|
||||||
|
${sourceDotenv}
|
||||||
|
set -x
|
||||||
|
exec target/debug/migrate
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
depends_on.postgres.condition = "process_healthy";
|
||||||
|
depends_on.pluralkit-migrate-init.condition = "process_completed_successfully";
|
||||||
|
};
|
||||||
### gateway ###
|
### gateway ###
|
||||||
pluralkit-gateway-init = mkServiceInitProcess {
|
pluralkit-gateway-init = mkServiceInitProcess {
|
||||||
name = "gateway";
|
name = "gateway";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue