mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-14 18:54:27 +00:00
Initial import
This commit is contained in:
commit
43e113e420
50 changed files with 4378 additions and 0 deletions
1
.dockerignore
Normal file
1
.dockerignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
data/
|
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
*.sw[op]
|
||||||
|
key_*.pem
|
||||||
|
data/*
|
||||||
|
config/*
|
||||||
|
static/media/*
|
||||||
|
|
||||||
|
.mypy_cache/
|
||||||
|
__pycache__/
|
9
.travis.yml
Normal file
9
.travis.yml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "3.6"
|
||||||
|
install:
|
||||||
|
- pip install pytest mypy flake8
|
||||||
|
script:
|
||||||
|
- flake8
|
||||||
|
- mypy --ignore-missing-imports
|
||||||
|
- pytest -v
|
6
Dockerfile
Normal file
6
Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
FROM python:3.6
|
||||||
|
ADD . /app
|
||||||
|
WORKDIR /app
|
||||||
|
RUN pip install -r requirements.txt
|
||||||
|
ENV FLASK_APP=app.py
|
||||||
|
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:5005", "app:app"]
|
661
LICENSE
Normal file
661
LICENSE
Normal file
|
@ -0,0 +1,661 @@
|
||||||
|
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 19 November 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU Affero General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works, specifically designed to ensure
|
||||||
|
cooperation with the community in the case of network server software.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
our General Public Licenses are intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
Developers that use our General Public Licenses protect your rights
|
||||||
|
with two steps: (1) assert copyright on the software, and (2) offer
|
||||||
|
you this License which gives you legal permission to copy, distribute
|
||||||
|
and/or modify the software.
|
||||||
|
|
||||||
|
A secondary benefit of defending all users' freedom is that
|
||||||
|
improvements made in alternate versions of the program, if they
|
||||||
|
receive widespread use, become available for other developers to
|
||||||
|
incorporate. Many developers of free software are heartened and
|
||||||
|
encouraged by the resulting cooperation. However, in the case of
|
||||||
|
software used on network servers, this result may fail to come about.
|
||||||
|
The GNU General Public License permits making a modified version and
|
||||||
|
letting the public access it on a server without ever releasing its
|
||||||
|
source code to the public.
|
||||||
|
|
||||||
|
The GNU Affero General Public License is designed specifically to
|
||||||
|
ensure that, in such cases, the modified source code becomes available
|
||||||
|
to the community. It requires the operator of a network server to
|
||||||
|
provide the source code of the modified version running there to the
|
||||||
|
users of that server. Therefore, public use of a modified version, on
|
||||||
|
a publicly accessible server, gives the public access to the source
|
||||||
|
code of the modified version.
|
||||||
|
|
||||||
|
An older license, called the Affero General Public License and
|
||||||
|
published by Affero, was designed to accomplish similar goals. This is
|
||||||
|
a different license, not a version of the Affero GPL, but Affero has
|
||||||
|
released a new version of the Affero GPL which permits relicensing under
|
||||||
|
this license.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, if you modify the
|
||||||
|
Program, your modified version must prominently offer all users
|
||||||
|
interacting with it remotely through a computer network (if your version
|
||||||
|
supports such interaction) an opportunity to receive the Corresponding
|
||||||
|
Source of your version by providing access to the Corresponding Source
|
||||||
|
from a network server at no charge, through some standard or customary
|
||||||
|
means of facilitating copying of software. This Corresponding Source
|
||||||
|
shall include the Corresponding Source for any work covered by version 3
|
||||||
|
of the GNU General Public License that is incorporated pursuant to the
|
||||||
|
following paragraph.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the work with which it is combined will remain governed by version
|
||||||
|
3 of the GNU General Public License.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU Affero General Public License from time to time. Such new versions
|
||||||
|
will be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU Affero General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU Affero General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU Affero General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If your software can interact with users remotely through a computer
|
||||||
|
network, you should also make sure that it provides a way for users to
|
||||||
|
get its source. For example, if your program is a web application, its
|
||||||
|
interface could display a "Source" link that leads users to an archive
|
||||||
|
of the code. There are many ways you could offer source, and different
|
||||||
|
solutions will be better for different programs; see section 13 for the
|
||||||
|
specific requirements.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||||
|
<https://www.gnu.org/licenses/>.
|
5
Makefile
Normal file
5
Makefile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
css:
|
||||||
|
python -c "import sass; sass.compile(dirname=('sass', 'static/css'), output_style='compressed')"
|
||||||
|
|
||||||
|
password:
|
||||||
|
python -c "import bcrypt; from getpass import getpass; print(bcrypt.hashpw(getpass().encode('utf-8'), bcrypt.gensalt()).decode('utf-8'))"
|
74
README.md
Normal file
74
README.md
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
# microblog.pub
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img
|
||||||
|
src="https://sos-ch-dk-2.exo.io/microblogpub/microblobpub.png"
|
||||||
|
width="200" height="200" border="0" alt="microblog.pub">
|
||||||
|
</p>
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://github.com/tsileo/microblog.pub/releases"><img src="https://img.shields.io/badge/version-1.0.0-green.svg?" alt="Version"></a>
|
||||||
|
<a href="https://travis-ci.org/tsileo/microblog.pub"><img src="https://travis-ci.org/tsileo/microblog.pub.svg?branch=master" alt="Build Status"></a>
|
||||||
|
<a href="https://github.com/tsileo/microblog.pub/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-AGPL_3.0-green.svg?style=flat" alt="License"></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p align="center">A self-hosted, single-user, <a href="https://activitypub.rocks">ActivityPub</a> powered microblog.</p>
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- Implements a basic [ActivityPub](https://activitypub.rocks/) server (with federation)
|
||||||
|
- Compatible with [Mastodon](https://github.com/tootsuite/mastodon) and others (Pleroma, Hubzilla...)
|
||||||
|
- Also implements a remote follow compatible with Mastodon instances
|
||||||
|
- Expose your outbox as a basic microblog
|
||||||
|
- [IndieAuth](https://indieauth.spec.indieweb.org/) endpoints (authorization and token endpoint)
|
||||||
|
- U2F support
|
||||||
|
- You can use your ActivityPub identity to login to other websites/app
|
||||||
|
- Admin UI with notifications and the stream of people you follow
|
||||||
|
- Attach files to your notes
|
||||||
|
- Privacy-aware upload that strip EXIF meta data before storing the file
|
||||||
|
- No JavaScript, that's it, even the admin UI is pure HTML/CSS
|
||||||
|
- Easy to customize (the theme is written Sass)
|
||||||
|
- Microformats aware (exports `h-feed`, `h-entry`, `h-cards`, ...)
|
||||||
|
- Exports RSS/Atom feeds
|
||||||
|
- Comes with a tiny HTTP API to help posting new content and performing basic actions
|
||||||
|
- Deployable with Docker
|
||||||
|
|
||||||
|
## Running your instance
|
||||||
|
|
||||||
|
### Installation
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ git clone
|
||||||
|
$ make css
|
||||||
|
```
|
||||||
|
|
||||||
|
### Configuration
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ make password
|
||||||
|
```
|
||||||
|
|
||||||
|
### Deployment
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ docker-compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
You should use a reverse proxy...
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
The most convenient way to hack on microblog.pub is to run the server locally, and run
|
||||||
|
|
||||||
|
|
||||||
|
```shell
|
||||||
|
# One-time setup
|
||||||
|
$ pip install -r requirements.txt
|
||||||
|
# Start the Celery worker, RabbitMQ and MongoDB
|
||||||
|
$ docker-compose -f docker-compose-dev.yml up -d
|
||||||
|
# Run the server locally
|
||||||
|
$ FLASK_APP=app.py flask run -p 5005 --with-threads
|
||||||
|
```
|
||||||
|
|
||||||
|
## Contributions
|
||||||
|
|
||||||
|
PRs are welcome, please open an issue to start a discussion before your start any work.
|
978
activitypub.py
Normal file
978
activitypub.py
Normal file
|
@ -0,0 +1,978 @@
|
||||||
|
import typing
|
||||||
|
import re
|
||||||
|
import json
|
||||||
|
import binascii
|
||||||
|
import os
|
||||||
|
from datetime import datetime
|
||||||
|
from enum import Enum
|
||||||
|
|
||||||
|
import requests
|
||||||
|
from bleach.linkifier import Linker
|
||||||
|
from bson.objectid import ObjectId
|
||||||
|
from html2text import html2text
|
||||||
|
from feedgen.feed import FeedGenerator
|
||||||
|
from markdown import markdown
|
||||||
|
|
||||||
|
from utils.linked_data_sig import generate_signature
|
||||||
|
from utils.actor_service import NotAnActorError
|
||||||
|
from utils.webfinger import get_actor_url
|
||||||
|
from utils.content_helper import parse_markdown
|
||||||
|
from config import USERNAME, BASE_URL, ID
|
||||||
|
from config import CTX_AS, CTX_SECURITY, AS_PUBLIC
|
||||||
|
from config import KEY, DB, ME, ACTOR_SERVICE
|
||||||
|
from config import OBJECT_SERVICE
|
||||||
|
from config import PUBLIC_INSTANCES
|
||||||
|
import tasks
|
||||||
|
|
||||||
|
from typing import List, Optional, Tuple, Dict, Any, Union, Type
|
||||||
|
from typing import TypeVar
|
||||||
|
|
||||||
|
A = TypeVar('A', bound='BaseActivity')
|
||||||
|
ObjectType = Dict[str, Any]
|
||||||
|
ObjectOrIDType = Union[str, ObjectType]
|
||||||
|
|
||||||
|
|
||||||
|
# Pleroma sample
|
||||||
|
# {'@context': ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1', {'Emoji': 'toot:Emoji', 'Hashtag': 'as:Hashtag', 'atomUri': 'ostatus:atomUri', 'conversation': 'ostatus:conversation', 'inReplyToAtomUri': 'ostatus:inReplyToAtomUri', 'manuallyApprovesFollowers': 'as:manuallyApprovesFollowers', 'ostatus': 'http://ostatus.org#', 'sensitive': 'as:sensitive', 'toot': 'http://joinmastodon.org/ns#'}], 'actor': 'https://soc.freedombone.net/users/bob', 'attachment': [{'mediaType': 'image/jpeg', 'name': 'stallmanlemote.jpg', 'type': 'Document', 'url': 'https://soc.freedombone.net/media/e1a3ca6f-df73-4f2d-a931-c389a221b008/stallmanlemote.jpg'}], 'attributedTo': 'https://soc.freedombone.net/users/bob', 'cc': ['https://cybre.space/users/vantablack', 'https://soc.freedombone.net/users/bob/followers'], 'content': '<span><a href=\'https://cybre.space/users/vantablack\'>@<span>vantablack</span></a></span><br><a href="https://soc.freedombone.net/media/e1a3ca6f-df73-4f2d-a931-c389a221b008/stallmanlemote.jpg" class=\'attachment\'>stallmanlemote.jpg</a>', 'context': 'tag:cybre.space,2018-04-05:objectId=5756519:objectType=Conversation', 'conversation': 'tag:cybre.space,2018-04-05:objectId=5756519:objectType=Conversation', 'emoji': {}, 'id': 'https://soc.freedombone.net/objects/3f0faeca-4d37-4acf-b990-6a50146d23cc', 'inReplyTo': 'https://cybre.space/users/vantablack/statuses/99808953472969467', 'inReplyToStatusId': 300713, 'like_count': 1, 'likes': ['https://cybre.space/users/vantablack'], 'published': '2018-04-05T21:30:52.658817Z', 'sensitive': False, 'summary': None, 'tag': [{'href': 'https://cybre.space/users/vantablack', 'name': '@vantablack@cybre.space', 'type': 'Mention'}], 'to': ['https://www.w3.org/ns/activitystreams#Public'], 'type': 'Note'}
|
||||||
|
|
||||||
|
|
||||||
|
class ActivityTypes(Enum):
|
||||||
|
ANNOUNCE = 'Announce'
|
||||||
|
BLOCK = 'Block'
|
||||||
|
LIKE = 'Like'
|
||||||
|
CREATE = 'Create'
|
||||||
|
UPDATE = 'Update'
|
||||||
|
PERSON = 'Person'
|
||||||
|
ORDERED_COLLECTION = 'OrderedCollection'
|
||||||
|
ORDERED_COLLECTION_PAGE = 'OrderedCollectionPage'
|
||||||
|
COLLECTION_PAGE = 'CollectionPage'
|
||||||
|
COLLECTION = 'Collection'
|
||||||
|
NOTE = 'Note'
|
||||||
|
ACCEPT = 'Accept'
|
||||||
|
REJECT = 'Reject'
|
||||||
|
FOLLOW = 'Follow'
|
||||||
|
DELETE = 'Delete'
|
||||||
|
UNDO = 'Undo'
|
||||||
|
IMAGE = 'Image'
|
||||||
|
TOMBSTONE = 'Tombstone'
|
||||||
|
|
||||||
|
|
||||||
|
def random_object_id() -> str:
|
||||||
|
return binascii.hexlify(os.urandom(8)).decode('utf-8')
|
||||||
|
|
||||||
|
|
||||||
|
def _remove_id(doc: ObjectType) -> ObjectType:
|
||||||
|
doc = doc.copy()
|
||||||
|
if '_id' in doc:
|
||||||
|
del(doc['_id'])
|
||||||
|
return doc
|
||||||
|
|
||||||
|
|
||||||
|
def _to_list(data: Union[List[Any], Any]) -> List[Any]:
|
||||||
|
if isinstance(data, list):
|
||||||
|
return data
|
||||||
|
return [data]
|
||||||
|
|
||||||
|
|
||||||
|
def clean_activity(activity: ObjectType) -> Dict[str, Any]:
|
||||||
|
# Remove the hidden bco and bcc field
|
||||||
|
for field in ['bto', 'bcc']:
|
||||||
|
if field in activity:
|
||||||
|
del(activity[field])
|
||||||
|
if activity['type'] == 'Create' and field in activity['object']:
|
||||||
|
del(activity['object'][field])
|
||||||
|
return activity
|
||||||
|
|
||||||
|
|
||||||
|
def _get_actor_id(actor: ObjectOrIDType) -> str:
|
||||||
|
if isinstance(actor, dict):
|
||||||
|
return actor['id']
|
||||||
|
return actor
|
||||||
|
|
||||||
|
|
||||||
|
class BaseActivity(object):
|
||||||
|
ACTIVITY_TYPE = None # type: Optional[ActivityTypes]
|
||||||
|
NO_CONTEXT = False
|
||||||
|
ALLOWED_OBJECT_TYPES = None # type: List[ActivityTypes]
|
||||||
|
|
||||||
|
def __init__(self, **kwargs) -> None:
|
||||||
|
if not self.ACTIVITY_TYPE:
|
||||||
|
raise ValueError('Missing ACTIVITY_TYPE')
|
||||||
|
|
||||||
|
if kwargs.get('type') is not None and kwargs.pop('type') != self.ACTIVITY_TYPE.value:
|
||||||
|
raise ValueError('Expect the type to be {}'.format(self.ACTIVITY_TYPE))
|
||||||
|
|
||||||
|
self._data = {'type': self.ACTIVITY_TYPE.value} # type: Dict[str, Any]
|
||||||
|
|
||||||
|
if 'id' in kwargs:
|
||||||
|
self._data['id'] = kwargs.pop('id')
|
||||||
|
|
||||||
|
if self.ACTIVITY_TYPE != ActivityTypes.PERSON:
|
||||||
|
actor = kwargs.get('actor')
|
||||||
|
if actor:
|
||||||
|
kwargs.pop('actor')
|
||||||
|
actor = self._validate_person(actor)
|
||||||
|
self._data['actor'] = actor
|
||||||
|
else:
|
||||||
|
if not self.NO_CONTEXT:
|
||||||
|
actor = ID
|
||||||
|
self._data['actor'] = actor
|
||||||
|
|
||||||
|
if 'object' in kwargs:
|
||||||
|
obj = kwargs.pop('object')
|
||||||
|
if isinstance(obj, str):
|
||||||
|
self._data['object'] = obj
|
||||||
|
else:
|
||||||
|
if not self.ALLOWED_OBJECT_TYPES:
|
||||||
|
raise ValueError('unexpected object')
|
||||||
|
if 'type' not in obj or (self.ACTIVITY_TYPE != ActivityTypes.CREATE and 'id' not in obj):
|
||||||
|
raise ValueError('invalid object')
|
||||||
|
if ActivityTypes(obj['type']) not in self.ALLOWED_OBJECT_TYPES:
|
||||||
|
print(self, kwargs)
|
||||||
|
raise ValueError(f'unexpected object type {obj["type"]} (allowed={self.ALLOWED_OBJECT_TYPES})')
|
||||||
|
self._data['object'] = obj
|
||||||
|
|
||||||
|
if '@context' not in kwargs:
|
||||||
|
if not self.NO_CONTEXT:
|
||||||
|
self._data['@context'] = CTX_AS
|
||||||
|
else:
|
||||||
|
self._data['@context'] = kwargs.pop('@context')
|
||||||
|
|
||||||
|
# @context check
|
||||||
|
if not self.NO_CONTEXT:
|
||||||
|
if not isinstance(self._data['@context'], list):
|
||||||
|
self._data['@context'] = [self._data['@context']]
|
||||||
|
if not CTX_SECURITY in self._data['@context']:
|
||||||
|
self._data['@context'].append(CTX_SECURITY)
|
||||||
|
if isinstance(self._data['@context'][-1], dict):
|
||||||
|
self._data['@context'][-1]['Hashtag'] = 'as:Hashtag'
|
||||||
|
self._data['@context'][-1]['sensitive'] = 'as:sensitive'
|
||||||
|
else:
|
||||||
|
self._data['@context'].append({'Hashtag': 'as:Hashtag', 'sensitive': 'as:sensitive'})
|
||||||
|
|
||||||
|
allowed_keys = None
|
||||||
|
try:
|
||||||
|
allowed_keys = self._init(**kwargs)
|
||||||
|
except NotImplementedError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if allowed_keys:
|
||||||
|
# Allows an extra to (like for Accept and Follow)
|
||||||
|
kwargs.pop('to', None)
|
||||||
|
if len(set(kwargs.keys()) - set(allowed_keys)) > 0:
|
||||||
|
raise ValueError('extra data left: {}'.format(kwargs))
|
||||||
|
else:
|
||||||
|
self._data.update(**kwargs)
|
||||||
|
|
||||||
|
def _init(self, **kwargs) -> Optional[List[str]]:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def _verify(self) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def verify(self) -> None:
|
||||||
|
try:
|
||||||
|
self._verify()
|
||||||
|
except NotImplementedError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def __repr__(self) -> str:
|
||||||
|
return '{}({!r})'.format(self.__class__.__qualname__, self._data.get('id'))
|
||||||
|
|
||||||
|
def __str__(self) -> str:
|
||||||
|
return str(self._data['id'])
|
||||||
|
|
||||||
|
def __getattr__(self, name: str) -> Any:
|
||||||
|
if self._data.get(name):
|
||||||
|
return self._data.get(name)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def type_enum(self) -> ActivityTypes:
|
||||||
|
return ActivityTypes(self.type)
|
||||||
|
|
||||||
|
def set_id(self, uri: str, obj_id: str) -> None:
|
||||||
|
self._data['id'] = uri
|
||||||
|
|
||||||
|
def _actor_id(self, obj: ObjectOrIDType) -> str:
|
||||||
|
if isinstance(obj, dict) and obj['type'] == ActivityTypes.PERSON.value:
|
||||||
|
obj_id = obj.get('id')
|
||||||
|
if not obj_id:
|
||||||
|
raise ValueError('missing object id')
|
||||||
|
return obj_id
|
||||||
|
else:
|
||||||
|
return str(obj)
|
||||||
|
|
||||||
|
def _validate_person(self, obj: ObjectOrIDType) -> str:
|
||||||
|
obj_id = self._actor_id(obj)
|
||||||
|
try:
|
||||||
|
actor = ACTOR_SERVICE.get(obj_id)
|
||||||
|
except Exception:
|
||||||
|
return obj_id # FIXME(tsileo): handle this
|
||||||
|
if not actor:
|
||||||
|
raise ValueError('Invalid actor')
|
||||||
|
return actor['id']
|
||||||
|
|
||||||
|
def get_object(self) -> 'BaseActivity':
|
||||||
|
if self.__obj:
|
||||||
|
return self.__obj
|
||||||
|
if isinstance(self._data['object'], dict):
|
||||||
|
p = parse_activity(self._data['object'])
|
||||||
|
else:
|
||||||
|
if self.ACTIVITY_TYPE == ActivityTypes.FOLLOW:
|
||||||
|
p = Person(**ACTOR_SERVICE.get(self._data['object']))
|
||||||
|
else:
|
||||||
|
obj = OBJECT_SERVICE.get(self._data['object'])
|
||||||
|
if ActivityTypes(obj.get('type')) not in self.ALLOWED_OBJECT_TYPES:
|
||||||
|
raise ValueError('invalid object type')
|
||||||
|
|
||||||
|
p = parse_activity(obj)
|
||||||
|
|
||||||
|
self.__obj = p # type: BaseActivity
|
||||||
|
return p
|
||||||
|
|
||||||
|
def _to_dict(self, data: ObjectType) -> ObjectType:
|
||||||
|
return data
|
||||||
|
|
||||||
|
def to_dict(self, embed: bool = False) -> ObjectType:
|
||||||
|
data = dict(self._data)
|
||||||
|
if embed:
|
||||||
|
for k in ['@context', 'signature']:
|
||||||
|
if k in data:
|
||||||
|
del(data[k])
|
||||||
|
return self._to_dict(data)
|
||||||
|
|
||||||
|
def get_actor(self) -> 'BaseActivity':
|
||||||
|
actor = self._data.get('actor')
|
||||||
|
if not actor:
|
||||||
|
if self.type_enum == ActivityTypes.NOTE:
|
||||||
|
actor = str(self._data.get('attributedTo'))
|
||||||
|
else:
|
||||||
|
raise ValueError('failed to fetch actor')
|
||||||
|
|
||||||
|
actor_id = self._actor_id(actor)
|
||||||
|
return Person(**ACTOR_SERVICE.get(actor_id))
|
||||||
|
|
||||||
|
def _post_to_outbox(self, obj_id: str, activity: ObjectType, recipients: List[str]) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def _undo_outbox(self) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def _process_from_inbox(self) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def _undo_inbox(self) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def process_from_inbox(self) -> None:
|
||||||
|
self.verify()
|
||||||
|
actor = self.get_actor()
|
||||||
|
|
||||||
|
if DB.outbox.find_one({'type': ActivityTypes.BLOCK.value,
|
||||||
|
'activity.object': actor.id,
|
||||||
|
'meta.undo': False}):
|
||||||
|
print('actor is blocked, drop activity')
|
||||||
|
return
|
||||||
|
|
||||||
|
if DB.inbox.find_one({'remote_id': self.id}):
|
||||||
|
# The activity is already in the inbox
|
||||||
|
print('received duplicate activity')
|
||||||
|
return
|
||||||
|
|
||||||
|
activity = self.to_dict()
|
||||||
|
DB.inbox.insert_one({
|
||||||
|
'activity': activity,
|
||||||
|
'type': self.type,
|
||||||
|
'remote_id': self.id,
|
||||||
|
'meta': {'undo': False, 'deleted': False},
|
||||||
|
})
|
||||||
|
|
||||||
|
try:
|
||||||
|
self._process_from_inbox()
|
||||||
|
except NotImplementedError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def post_to_outbox(self) -> None:
|
||||||
|
obj_id = random_object_id()
|
||||||
|
self.set_id(f'{ID}/outbox/{obj_id}', obj_id)
|
||||||
|
self.verify()
|
||||||
|
activity = self.to_dict()
|
||||||
|
DB.outbox.insert_one({
|
||||||
|
'id': obj_id,
|
||||||
|
'activity': activity,
|
||||||
|
'type': self.type,
|
||||||
|
'remote_id': self.id,
|
||||||
|
'meta': {'undo': False, 'deleted': False},
|
||||||
|
})
|
||||||
|
|
||||||
|
recipients = self.recipients()
|
||||||
|
activity = clean_activity(activity)
|
||||||
|
|
||||||
|
try:
|
||||||
|
self._post_to_outbox(obj_id, activity, recipients)
|
||||||
|
except NotImplementedError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
#return
|
||||||
|
generate_signature(activity, KEY.privkey)
|
||||||
|
payload = json.dumps(activity)
|
||||||
|
print('will post')
|
||||||
|
for recp in recipients:
|
||||||
|
self._post_to_inbox(payload, recp)
|
||||||
|
print('done')
|
||||||
|
|
||||||
|
def _post_to_inbox(self, payload: str, to: str):
|
||||||
|
tasks.post_to_inbox.delay(payload, to)
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
def recipients(self) -> List[str]:
|
||||||
|
recipients = self._recipients()
|
||||||
|
|
||||||
|
out = [] # type: List[str]
|
||||||
|
for recipient in recipients:
|
||||||
|
if recipient in PUBLIC_INSTANCES:
|
||||||
|
if recipient not in out:
|
||||||
|
out.append(str(recipient))
|
||||||
|
continue
|
||||||
|
if recipient in [ME, AS_PUBLIC, None]:
|
||||||
|
continue
|
||||||
|
if isinstance(recipient, Person):
|
||||||
|
if recipient.id == ME:
|
||||||
|
continue
|
||||||
|
actor = recipient
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
actor = Person(**ACTOR_SERVICE.get(recipient))
|
||||||
|
except NotAnActorError as error:
|
||||||
|
# Is the activity a `Collection`/`OrderedCollection`?
|
||||||
|
if error.activity and error.activity['type'] in [ActivityTypes.COLLECTION.value,
|
||||||
|
ActivityTypes.ORDERED_COLLECTION.value]:
|
||||||
|
for item in parse_collection(error.activity):
|
||||||
|
if item in [ME, AS_PUBLIC]:
|
||||||
|
continue
|
||||||
|
try:
|
||||||
|
col_actor = Person(**ACTOR_SERVICE.get(item))
|
||||||
|
except NotAnActorError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if col_actor.endpoints:
|
||||||
|
shared_inbox = col_actor.endpoints.get('sharedInbox')
|
||||||
|
if shared_inbox not in out:
|
||||||
|
out.append(shared_inbox)
|
||||||
|
continue
|
||||||
|
if col_actor.inbox and col_actor.inbox not in out:
|
||||||
|
out.append(col_actor.inbox)
|
||||||
|
|
||||||
|
continue
|
||||||
|
|
||||||
|
if actor.endpoints:
|
||||||
|
shared_inbox = actor.endpoints.get('sharedInbox')
|
||||||
|
if shared_inbox not in out:
|
||||||
|
out.append(shared_inbox)
|
||||||
|
continue
|
||||||
|
|
||||||
|
if actor.inbox and actor.inbox not in out:
|
||||||
|
out.append(actor.inbox)
|
||||||
|
|
||||||
|
return out
|
||||||
|
|
||||||
|
def build_undo(self) -> 'BaseActivity':
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
||||||
|
class Person(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.PERSON
|
||||||
|
|
||||||
|
def _init(self, **kwargs):
|
||||||
|
#if 'icon' in kwargs:
|
||||||
|
# self._data['icon'] = Image(**kwargs.pop('icon'))
|
||||||
|
pass
|
||||||
|
|
||||||
|
def _verify(self) -> None:
|
||||||
|
ACTOR_SERVICE.get(self._data['id'])
|
||||||
|
|
||||||
|
def _to_dict(self, data):
|
||||||
|
#if 'icon' in data:
|
||||||
|
# data['icon'] = data['icon'].to_dict()
|
||||||
|
#
|
||||||
|
return data
|
||||||
|
|
||||||
|
|
||||||
|
class Block(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.BLOCK
|
||||||
|
|
||||||
|
|
||||||
|
class Collection(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.COLLECTION
|
||||||
|
|
||||||
|
|
||||||
|
class Image(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.IMAGE
|
||||||
|
NO_CONTEXT = True
|
||||||
|
|
||||||
|
def _init(self, **kwargs):
|
||||||
|
self._data.update(
|
||||||
|
url=kwargs.pop('url'),
|
||||||
|
)
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return 'Image({!r})'.format(self._data.get('url'))
|
||||||
|
|
||||||
|
|
||||||
|
class Follow(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.FOLLOW
|
||||||
|
ALLOWED_OBJECT_TYPES = [ActivityTypes.PERSON]
|
||||||
|
|
||||||
|
def _build_reply(self, reply_type: ActivityTypes) -> BaseActivity:
|
||||||
|
if reply_type == ActivityTypes.ACCEPT:
|
||||||
|
return Accept(
|
||||||
|
object=self.to_dict(embed=True),
|
||||||
|
)
|
||||||
|
|
||||||
|
raise ValueError(f'type {reply_type} is invalid for building a reply')
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
return [self.get_object().id]
|
||||||
|
|
||||||
|
def _process_from_inbox(self) -> None:
|
||||||
|
accept = self.build_accept()
|
||||||
|
accept.post_to_outbox()
|
||||||
|
|
||||||
|
remote_actor = self.get_actor().id
|
||||||
|
|
||||||
|
if DB.followers.find({'remote_actor': remote_actor}).count() == 0:
|
||||||
|
DB.followers.insert_one({'remote_actor': remote_actor})
|
||||||
|
|
||||||
|
def _undo_inbox(self) -> None:
|
||||||
|
DB.followers.delete_one({'remote_actor': self.get_actor().id})
|
||||||
|
|
||||||
|
def build_accept(self) -> BaseActivity:
|
||||||
|
return self._build_reply(ActivityTypes.ACCEPT)
|
||||||
|
|
||||||
|
def build_undo(self) -> BaseActivity:
|
||||||
|
return Undo(object=self.to_dict(embed=True))
|
||||||
|
|
||||||
|
|
||||||
|
class Accept(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.ACCEPT
|
||||||
|
ALLOWED_OBJECT_TYPES = [ActivityTypes.FOLLOW]
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
return [self.get_object().get_actor().id]
|
||||||
|
|
||||||
|
def _process_from_inbox(self) -> None:
|
||||||
|
remote_actor = self.get_actor().id
|
||||||
|
if DB.following.find({'remote_actor': remote_actor}).count() == 0:
|
||||||
|
DB.following.insert_one({'remote_actor': remote_actor})
|
||||||
|
|
||||||
|
|
||||||
|
class Undo(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.UNDO
|
||||||
|
ALLOWED_OBJECT_TYPES = [ActivityTypes.FOLLOW, ActivityTypes.LIKE, ActivityTypes.ANNOUNCE]
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
obj = self.get_object()
|
||||||
|
if obj.type_enum == ActivityTypes.FOLLOW:
|
||||||
|
return [obj.get_object().id]
|
||||||
|
else:
|
||||||
|
return [obj.get_object().get_actor().id]
|
||||||
|
# TODO(tsileo): handle like and announce
|
||||||
|
raise Exception('TODO')
|
||||||
|
|
||||||
|
def _process_from_inbox(self) -> None:
|
||||||
|
obj = self.get_object()
|
||||||
|
DB.inbox.update_one({'remote_id': obj.id}, {'$set': {'meta.undo': True}})
|
||||||
|
|
||||||
|
try:
|
||||||
|
obj._undo_inbox()
|
||||||
|
except NotImplementedError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def _post_to_outbox(self, obj_id: str, activity: ObjectType, recipients: List[str]) -> None:
|
||||||
|
obj = self.get_object()
|
||||||
|
DB.outbox.update_one({'remote_id': obj.id}, {'$set': {'meta.undo': True}})
|
||||||
|
|
||||||
|
try:
|
||||||
|
obj._undo_outbox()
|
||||||
|
except NotImplementedError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
class Like(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.LIKE
|
||||||
|
ALLOWED_OBJECT_TYPES = [ActivityTypes.NOTE]
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
return [self.get_object().get_actor().id]
|
||||||
|
|
||||||
|
def _process_from_inbox(self):
|
||||||
|
obj = self.get_object()
|
||||||
|
# Update the meta counter if the object is published by the server
|
||||||
|
DB.outbox.update_one({'activity.object.id': obj.id}, {'$inc': {'meta.count_like': 1}})
|
||||||
|
|
||||||
|
def _undo_inbox(self) -> None:
|
||||||
|
obj = self.get_object()
|
||||||
|
# Update the meta counter if the object is published by the server
|
||||||
|
DB.outbox.update_one({'activity.object.id': obj.id}, {'$inc': {'meta.count_like': -1}})
|
||||||
|
|
||||||
|
def _post_to_outbox(self, obj_id: str, activity: ObjectType, recipients: List[str]):
|
||||||
|
obj = self.get_object()
|
||||||
|
# Unlikely, but an actor can like it's own post
|
||||||
|
DB.outbox.update_one({'activity.object.id': obj.id}, {'$inc': {'meta.count_like': 1}})
|
||||||
|
|
||||||
|
DB.inbox.update_one({'activity.object.id': obj.id}, {'$set': {'meta.liked': obj_id}})
|
||||||
|
|
||||||
|
def _undo_outbox(self) -> None:
|
||||||
|
obj = self.get_object()
|
||||||
|
# Unlikely, but an actor can like it's own post
|
||||||
|
DB.outbox.update_one({'activity.object.id': obj.id}, {'$inc': {'meta.count_like': -1}})
|
||||||
|
|
||||||
|
DB.inbox.update_one({'activity.object.id': obj.id}, {'$set': {'meta.liked': False}})
|
||||||
|
|
||||||
|
def build_undo(self) -> BaseActivity:
|
||||||
|
return Undo(object=self.to_dict(embed=True))
|
||||||
|
|
||||||
|
|
||||||
|
class Announce(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.ANNOUNCE
|
||||||
|
ALLOWED_OBJECT_TYPES = [ActivityTypes.NOTE]
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
recipients = []
|
||||||
|
|
||||||
|
for field in ['to', 'cc']:
|
||||||
|
if field in self._data:
|
||||||
|
recipients.extend(_to_list(self._data[field]))
|
||||||
|
|
||||||
|
return recipients
|
||||||
|
|
||||||
|
def _process_from_inbox(self) -> None:
|
||||||
|
if isinstance(self._data['object'], str) and not self._data['object'].startswith('http'):
|
||||||
|
# TODO(tsileo): actually drop it without storing it and better logging, also move the check somewhere else
|
||||||
|
print(f'received an Annouce referencing an OStatus notice ({self._data["object"]}), dropping the message')
|
||||||
|
return
|
||||||
|
# Save/cache the object, and make it part of the stream so we can fetch it
|
||||||
|
if isinstance(self._data['object'], str):
|
||||||
|
raw_obj = OBJECT_SERVICE.get(self._data['object'], reload_cache=True, part_of_stream=True, announce_published=self._data['published'])
|
||||||
|
obj = parse_activity(raw_obj)
|
||||||
|
else:
|
||||||
|
obj = self.get_object()
|
||||||
|
DB.outbox.update_one({'activity.object.id': obj.id}, {'$inc': {'meta.count_boost': 1}})
|
||||||
|
|
||||||
|
def _undo_inbox(self) -> None:
|
||||||
|
obj = self.get_object()
|
||||||
|
DB.inbox.update_one({'remote_id': obj.id}, {'$set': {'meta.undo': True}})
|
||||||
|
DB.outbox.update_one({'activity.object.id': obj.id}, {'$inc': {'meta.count_boost': -1}})
|
||||||
|
|
||||||
|
def _post_to_outbox(self, obj_id: str, activity: ObjectType, recipients: List[str]) -> None:
|
||||||
|
if isinstance(self._data['object'], str):
|
||||||
|
# Put the object in the cache
|
||||||
|
OBJECT_SERVICE.get(self._data['object'], reload_cache=True, part_of_stream=True, announce_published=self._data['published'])
|
||||||
|
|
||||||
|
obj = self.get_object()
|
||||||
|
DB.inbox.update_one({'activity.object.id': obj.id}, {'$set': {'meta.boosted': obj_id}})
|
||||||
|
|
||||||
|
def _undo_outbox(self) -> None:
|
||||||
|
obj = self.get_object()
|
||||||
|
DB.inbox.update_one({'activity.object.id': obj.id}, {'$set': {'meta.boosted': False}})
|
||||||
|
|
||||||
|
def build_undo(self) -> BaseActivity:
|
||||||
|
return Undo(object=self.to_dict(embed=True))
|
||||||
|
|
||||||
|
|
||||||
|
class Delete(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.DELETE
|
||||||
|
ALLOWED_OBJECT_TYPES = [ActivityTypes.NOTE, ActivityTypes.TOMBSTONE]
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
return self.get_object().recipients()
|
||||||
|
|
||||||
|
def _process_from_inbox(self):
|
||||||
|
DB.inbox.update_one({'activity.object.id': self.get_object().id}, {'$set': {'meta.deleted': True}})
|
||||||
|
# TODO(tsileo): also delete copies stored in parents' `meta.replies`
|
||||||
|
|
||||||
|
def _post_to_outbox(self, obj_id, activity, recipients):
|
||||||
|
DB.outbox.update_one({'activity.object.id': self.get_object().id}, {'$set': {'meta.deleted': True}})
|
||||||
|
|
||||||
|
|
||||||
|
class Update(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.UPDATE
|
||||||
|
ALLOWED_OBJECT_TYPES = [ActivityTypes.NOTE, ActivityTypes.PERSON]
|
||||||
|
|
||||||
|
# TODO(tsileo): ensure the actor updating is the same as the orinial activity
|
||||||
|
# (ensuring that the Update and its object are of same origin)
|
||||||
|
|
||||||
|
def _process_from_inbox(self):
|
||||||
|
obj = self.get_object()
|
||||||
|
if obj.type_enum == ActivityTypes.NOTE:
|
||||||
|
DB.inbox.update_one({'activity.object.id': obj.id}, {'$set': {'activity.object': obj.to_dict()}})
|
||||||
|
return
|
||||||
|
|
||||||
|
# If the object is a Person, it means the profile was updated, we just refresh our local cache
|
||||||
|
ACTOR_SERVICE.get(obj.id, reload_cache=True)
|
||||||
|
|
||||||
|
def _post_to_outbox(self, obj_id, activity, recipients):
|
||||||
|
obj = self.get_object()
|
||||||
|
|
||||||
|
update_prefix = 'activity.object.'
|
||||||
|
update = {'$set': dict(), '$unset': dict()}
|
||||||
|
update['$set'][f'{update_prefix}updated'] = datetime.utcnow().replace(microsecond=0).isoformat() + 'Z'
|
||||||
|
for k, v in obj._data.items():
|
||||||
|
if k in ['id', 'type']:
|
||||||
|
continue
|
||||||
|
if v is None:
|
||||||
|
update['$unset'][f'{update_prefix}{k}'] = ''
|
||||||
|
else:
|
||||||
|
update['$set'][f'{update_prefix}{k}'] = v
|
||||||
|
|
||||||
|
if len(update['$unset']) == 0:
|
||||||
|
del(update['$unset'])
|
||||||
|
|
||||||
|
DB.outbox.update_one({'remote_id': obj.id.replace('/activity', '')}, update)
|
||||||
|
# FIXME(tsileo): should send an Update (but not a partial one, to all the note's recipients
|
||||||
|
# (create a new Update with the result of the update, and send it without saving it?)
|
||||||
|
|
||||||
|
|
||||||
|
class Create(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.CREATE
|
||||||
|
ALLOWED_OBJECT_TYPES = [ActivityTypes.NOTE]
|
||||||
|
|
||||||
|
def _set_id(self, uri, obj_id):
|
||||||
|
self._data['object']['id'] = uri + '/activity'
|
||||||
|
self._data['object']['url'] = ID + '/' + self.get_object().type.lower() + '/' + obj_id
|
||||||
|
|
||||||
|
def _init(self, **kwargs):
|
||||||
|
obj = self.get_object()
|
||||||
|
if not obj.attributedTo:
|
||||||
|
self._data['object']['attributedTo'] = self.get_actor().id
|
||||||
|
if not obj.published:
|
||||||
|
if self.published:
|
||||||
|
self._data['object']['published'] = self.published
|
||||||
|
else:
|
||||||
|
now = datetime.utcnow().replace(microsecond=0).isoformat() + 'Z'
|
||||||
|
self._data['published'] = now
|
||||||
|
self._data['object']['published'] = now
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
# TODO(tsileo): audience support?
|
||||||
|
recipients = []
|
||||||
|
for field in ['to', 'cc', 'bto', 'bcc']:
|
||||||
|
if field in self._data:
|
||||||
|
recipients.extend(_to_list(self._data[field]))
|
||||||
|
|
||||||
|
recipients.extend(self.get_object()._recipients())
|
||||||
|
|
||||||
|
return recipients
|
||||||
|
|
||||||
|
def _process_from_inbox(self):
|
||||||
|
obj = self.get_object()
|
||||||
|
|
||||||
|
tasks.fetch_og.delay('INBOX', self.id)
|
||||||
|
|
||||||
|
in_reply_to = obj.inReplyTo
|
||||||
|
if in_reply_to:
|
||||||
|
parent = DB.inbox.find_one({'activity.type': 'Create', 'activity.object.id': in_reply_to})
|
||||||
|
if not parent:
|
||||||
|
DB.outbox.update_one(
|
||||||
|
{'activity.object.id': in_reply_to},
|
||||||
|
{'$inc': {'meta.count_reply': 1}},
|
||||||
|
)
|
||||||
|
return
|
||||||
|
|
||||||
|
# If the note is a "reply of a reply" update the parent message
|
||||||
|
# TODO(tsileo): review this code
|
||||||
|
while parent:
|
||||||
|
DB.inbox.update_one({'_id': parent['_id']}, {'$push': {'meta.replies': self.to_dict()}})
|
||||||
|
in_reply_to = parent.get('activity', {}).get('object', {}).get('inReplyTo')
|
||||||
|
if in_reply_to:
|
||||||
|
parent = DB.inbox.find_one({'activity.type': 'Create', 'activity.object.id': in_reply_to})
|
||||||
|
if parent is None:
|
||||||
|
# The reply is a note from the outbox
|
||||||
|
data = DB.outbox.update_one(
|
||||||
|
{'activity.object.id': in_reply_to},
|
||||||
|
{'$inc': {'meta.count_reply': 1}},
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
parent = None
|
||||||
|
|
||||||
|
|
||||||
|
class Tombstone(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.TOMBSTONE
|
||||||
|
|
||||||
|
|
||||||
|
class Note(BaseActivity):
|
||||||
|
ACTIVITY_TYPE = ActivityTypes.NOTE
|
||||||
|
|
||||||
|
def _init(self, **kwargs):
|
||||||
|
print(self._data)
|
||||||
|
# Remove the `actor` field as `attributedTo` is used for `Note` instead
|
||||||
|
if 'actor' in self._data:
|
||||||
|
del(self._data['actor'])
|
||||||
|
# FIXME(tsileo): use kwarg
|
||||||
|
# TODO(tsileo): support mention tag
|
||||||
|
# TODO(tisleo): implement the tag endpoint
|
||||||
|
if 'sensitive' not in kwargs:
|
||||||
|
self._data['sensitive'] = False
|
||||||
|
|
||||||
|
# FIXME(tsileo): add the tag in CC
|
||||||
|
# for t in kwargs.get('tag', []):
|
||||||
|
# if t['type'] == 'Mention':
|
||||||
|
# cc -> c['href']
|
||||||
|
|
||||||
|
def _recipients(self) -> List[str]:
|
||||||
|
# TODO(tsileo): audience support?
|
||||||
|
recipients = [] # type: List[str]
|
||||||
|
|
||||||
|
# If the note is public, we publish it to the defined "public instances"
|
||||||
|
if AS_PUBLIC in self._data.get('to', []):
|
||||||
|
recipients.extend(PUBLIC_INSTANCES)
|
||||||
|
print('publishing to public instances')
|
||||||
|
print(recipients)
|
||||||
|
|
||||||
|
for field in ['to', 'cc', 'bto', 'bcc']:
|
||||||
|
if field in self._data:
|
||||||
|
recipients.extend(_to_list(self._data[field]))
|
||||||
|
|
||||||
|
return recipients
|
||||||
|
|
||||||
|
def build_create(self) -> BaseActivity:
|
||||||
|
"""Wraps an activity in a Create activity."""
|
||||||
|
create_payload = {
|
||||||
|
'object': self.to_dict(embed=True),
|
||||||
|
'actor': self.attributedTo or ME,
|
||||||
|
}
|
||||||
|
for field in ['published', 'to', 'bto', 'cc', 'bcc', 'audience']:
|
||||||
|
if field in self._data:
|
||||||
|
create_payload[field] = self._data[field]
|
||||||
|
|
||||||
|
return Create(**create_payload)
|
||||||
|
|
||||||
|
def build_like(self) -> BaseActivity:
|
||||||
|
return Like(object=self.id)
|
||||||
|
|
||||||
|
def build_announce(self) -> BaseActivity:
|
||||||
|
return Announce(
|
||||||
|
object=self.id,
|
||||||
|
to=[AS_PUBLIC],
|
||||||
|
cc=[ID+'/followers', self.attributedTo],
|
||||||
|
published=datetime.utcnow().replace(microsecond=0).isoformat() + 'Z',
|
||||||
|
)
|
||||||
|
|
||||||
|
_ACTIVITY_TYPE_TO_CLS = {
|
||||||
|
ActivityTypes.IMAGE: Image,
|
||||||
|
ActivityTypes.PERSON: Person,
|
||||||
|
ActivityTypes.FOLLOW: Follow,
|
||||||
|
ActivityTypes.ACCEPT: Accept,
|
||||||
|
ActivityTypes.UNDO: Undo,
|
||||||
|
ActivityTypes.LIKE: Like,
|
||||||
|
ActivityTypes.ANNOUNCE: Announce,
|
||||||
|
ActivityTypes.UPDATE: Update,
|
||||||
|
ActivityTypes.DELETE: Delete,
|
||||||
|
ActivityTypes.CREATE: Create,
|
||||||
|
ActivityTypes.NOTE: Note,
|
||||||
|
ActivityTypes.BLOCK: Block,
|
||||||
|
ActivityTypes.COLLECTION: Collection,
|
||||||
|
ActivityTypes.TOMBSTONE: Tombstone,
|
||||||
|
}
|
||||||
|
|
||||||
|
def parse_activity(payload: ObjectType) -> BaseActivity:
|
||||||
|
t = ActivityTypes(payload['type'])
|
||||||
|
if t not in _ACTIVITY_TYPE_TO_CLS:
|
||||||
|
raise ValueError('unsupported activity type')
|
||||||
|
|
||||||
|
return _ACTIVITY_TYPE_TO_CLS[t](**payload)
|
||||||
|
|
||||||
|
|
||||||
|
def gen_feed():
|
||||||
|
fg = FeedGenerator()
|
||||||
|
fg.id(f'{ID}')
|
||||||
|
fg.title(f'{USERNAME} notes')
|
||||||
|
fg.author( {'name': USERNAME,'email':'t@a4.io'} )
|
||||||
|
fg.link(href=ID, rel='alternate')
|
||||||
|
fg.description(f'{USERNAME} notes')
|
||||||
|
fg.logo(ME.get('icon', {}).get('url'))
|
||||||
|
#fg.link( href='http://larskiesow.de/test.atom', rel='self' )
|
||||||
|
fg.language('en')
|
||||||
|
for item in DB.outbox.find({'type': 'Create'}, limit=50):
|
||||||
|
fe = fg.add_entry()
|
||||||
|
fe.id(item['activity']['object'].get('url'))
|
||||||
|
fe.link(href=item['activity']['object'].get('url'))
|
||||||
|
fe.title(item['activity']['object']['content'])
|
||||||
|
fe.description(item['activity']['object']['content'])
|
||||||
|
return fg
|
||||||
|
|
||||||
|
|
||||||
|
def json_feed(path: str) -> Dict[str, Any]:
|
||||||
|
"""JSON Feed (https://jsonfeed.org/) document."""
|
||||||
|
data = []
|
||||||
|
for item in DB.outbox.find({'type': 'Create'}, limit=50):
|
||||||
|
data.append({
|
||||||
|
"id": item["id"],
|
||||||
|
"url": item['activity']['object'].get('url'),
|
||||||
|
"content_html": item['activity']['object']['content'],
|
||||||
|
"content_text": html2text(item['activity']['object']['content']),
|
||||||
|
"date_published": item['activity']['object'].get('published'),
|
||||||
|
})
|
||||||
|
return {
|
||||||
|
"version": "https://jsonfeed.org/version/1",
|
||||||
|
"user_comment": "This is a microblog feed. You can add this to your feed reader using the following URL: " + ID + path,
|
||||||
|
"title": USERNAME,
|
||||||
|
"home_page_url": ID,
|
||||||
|
"feed_url": ID + path,
|
||||||
|
"author": {
|
||||||
|
"name": USERNAME,
|
||||||
|
"url": ID,
|
||||||
|
"avatar": ME.get('icon', {}).get('url'),
|
||||||
|
},
|
||||||
|
"items": data,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def build_inbox_json_feed(path: str, request_cursor: Optional[str] = None) -> Dict[str, Any]:
|
||||||
|
data = []
|
||||||
|
cursor = None
|
||||||
|
|
||||||
|
q = {'type': 'Create'} # type: Dict[str, Any]
|
||||||
|
if request_cursor:
|
||||||
|
q['_id'] = {'$lt': request_cursor}
|
||||||
|
|
||||||
|
for item in DB.inbox.find(q, limit=50).sort('_id', -1):
|
||||||
|
actor = ACTOR_SERVICE.get(item['activity']['actor'])
|
||||||
|
data.append({
|
||||||
|
"id": item["activity"]["id"],
|
||||||
|
"url": item['activity']['object'].get('url'),
|
||||||
|
"content_html": item['activity']['object']['content'],
|
||||||
|
"content_text": html2text(item['activity']['object']['content']),
|
||||||
|
"date_published": item['activity']['object'].get('published'),
|
||||||
|
"author": {
|
||||||
|
"name": actor.get('name', actor.get('preferredUsername')),
|
||||||
|
"url": actor.get('url'),
|
||||||
|
'avatar': actor.get('icon', {}).get('url'),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
cursor = str(item['_id'])
|
||||||
|
|
||||||
|
resp = {
|
||||||
|
"version": "https://jsonfeed.org/version/1",
|
||||||
|
"title": f'{USERNAME}\'s stream',
|
||||||
|
"home_page_url": ID,
|
||||||
|
"feed_url": ID + path,
|
||||||
|
"items": data,
|
||||||
|
}
|
||||||
|
if cursor and len(data) == 50:
|
||||||
|
resp['next_url'] = ID + path + '?cursor=' + cursor
|
||||||
|
|
||||||
|
return resp
|
||||||
|
|
||||||
|
|
||||||
|
def parse_collection(payload: Optional[Dict[str, Any]] = None, url: Optional[str] = None) -> List[str]:
|
||||||
|
"""Resolve/fetch a `Collection`/`OrderedCollection`."""
|
||||||
|
# Resolve internal collections via MongoDB directly
|
||||||
|
if url == ID + '/followers':
|
||||||
|
return [doc['remote_actor'] for doc in DB.followers.find()]
|
||||||
|
elif url == ID + '/following':
|
||||||
|
return [doc['remote_actor'] for doc in DB.following.find()]
|
||||||
|
|
||||||
|
# Go through all the pages
|
||||||
|
out = [] # type: List[str]
|
||||||
|
if url:
|
||||||
|
resp = requests.get(url, headers={'Accept': 'application/activity+json'})
|
||||||
|
resp.raise_for_status()
|
||||||
|
payload = resp.json()
|
||||||
|
|
||||||
|
if not payload:
|
||||||
|
raise ValueError('must at least prove a payload or an URL')
|
||||||
|
|
||||||
|
if payload['type'] in ['Collection', 'OrderedCollection']:
|
||||||
|
if 'orderedItems' in payload:
|
||||||
|
return payload['orderedItems']
|
||||||
|
if 'items' in payload:
|
||||||
|
return payload['items']
|
||||||
|
if 'first' in payload:
|
||||||
|
if 'orderedItems' in payload['first']:
|
||||||
|
out.extend(payload['first']['orderedItems'])
|
||||||
|
if 'items' in payload['first']:
|
||||||
|
out.extend(payload['first']['items'])
|
||||||
|
n = payload['first'].get('next')
|
||||||
|
if n:
|
||||||
|
out.extend(parse_collection(url=n))
|
||||||
|
return out
|
||||||
|
|
||||||
|
while payload:
|
||||||
|
if payload['type'] in ['CollectionPage', 'OrderedCollectionPage']:
|
||||||
|
if 'orderedItems' in payload:
|
||||||
|
out.extend(payload['orderedItems'])
|
||||||
|
if 'items' in payload:
|
||||||
|
out.extend(payload['items'])
|
||||||
|
n = payload.get('next')
|
||||||
|
if n is None:
|
||||||
|
break
|
||||||
|
resp = requests.get(n, headers={'Accept': 'application/activity+json'})
|
||||||
|
resp.raise_for_status()
|
||||||
|
payload = resp.json()
|
||||||
|
else:
|
||||||
|
raise Exception('unexpected activity type {}'.format(payload['type']))
|
||||||
|
|
||||||
|
return out
|
||||||
|
|
||||||
|
|
||||||
|
def build_ordered_collection(col, q=None, cursor=None, map_func=None, limit=50, col_name=None):
|
||||||
|
col_name = col_name or col.name
|
||||||
|
if q is None:
|
||||||
|
q = {}
|
||||||
|
|
||||||
|
if cursor:
|
||||||
|
q['_id'] = {'$lt': ObjectId(cursor)}
|
||||||
|
data = list(col.find(q, limit=limit).sort('_id', -1))
|
||||||
|
|
||||||
|
if not data:
|
||||||
|
return {
|
||||||
|
'id': BASE_URL + '/' + col_name,
|
||||||
|
'totalItems': 0,
|
||||||
|
'type': 'OrderedCollection',
|
||||||
|
'orederedItems': [],
|
||||||
|
}
|
||||||
|
|
||||||
|
start_cursor = str(data[0]['_id'])
|
||||||
|
next_page_cursor = str(data[-1]['_id'])
|
||||||
|
total_items = col.find(q).count()
|
||||||
|
|
||||||
|
data = [_remove_id(doc) for doc in data]
|
||||||
|
if map_func:
|
||||||
|
data = [map_func(doc) for doc in data]
|
||||||
|
|
||||||
|
# No cursor, this is the first page and we return an OrderedCollection
|
||||||
|
if not cursor:
|
||||||
|
resp = {
|
||||||
|
'@context': CTX_AS,
|
||||||
|
'first': {
|
||||||
|
'id': BASE_URL + '/' + col_name + '?cursor=' + start_cursor,
|
||||||
|
'orderedItems': data,
|
||||||
|
'partOf': BASE_URL + '/' + col_name,
|
||||||
|
'totalItems': total_items,
|
||||||
|
'type': 'OrderedCollectionPage'
|
||||||
|
},
|
||||||
|
'id': BASE_URL + '/' + col_name,
|
||||||
|
'totalItems': total_items,
|
||||||
|
'type': 'OrderedCollection'
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(data) == limit:
|
||||||
|
resp['first']['next'] = BASE_URL + '/' + col_name + '?cursor=' + next_page_cursor
|
||||||
|
|
||||||
|
return resp
|
||||||
|
|
||||||
|
# If there's a cursor, then we return an OrderedCollectionPage
|
||||||
|
resp = {
|
||||||
|
'@context': CTX_AS,
|
||||||
|
'type': 'OrderedCollectionPage',
|
||||||
|
'id': BASE_URL + '/' + col_name + '?cursor=' + start_cursor,
|
||||||
|
'totalItems': total_items,
|
||||||
|
'partOf': BASE_URL + '/' + col_name,
|
||||||
|
'orderedItems': data,
|
||||||
|
}
|
||||||
|
if len(data) == limit:
|
||||||
|
resp['next'] = BASE_URL + '/' + col_name + '?cursor=' + next_page_cursor
|
||||||
|
|
||||||
|
return resp
|
83
config.py
Normal file
83
config.py
Normal file
|
@ -0,0 +1,83 @@
|
||||||
|
import os
|
||||||
|
import yaml
|
||||||
|
from pymongo import MongoClient
|
||||||
|
import requests
|
||||||
|
|
||||||
|
from utils.key import Key
|
||||||
|
from utils.actor_service import ActorService
|
||||||
|
from utils.object_service import ObjectService
|
||||||
|
|
||||||
|
|
||||||
|
VERSION = '1.0.0'
|
||||||
|
|
||||||
|
CTX_AS = 'https://www.w3.org/ns/activitystreams'
|
||||||
|
CTX_SECURITY = 'https://w3id.org/security/v1'
|
||||||
|
AS_PUBLIC = 'https://www.w3.org/ns/activitystreams#Public'
|
||||||
|
HEADERS = [
|
||||||
|
'application/activity+json',
|
||||||
|
'application/ld+json;profile=https://www.w3.org/ns/activitystreams',
|
||||||
|
'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
|
||||||
|
'application/ld+json',
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
with open('config/me.yml') as f:
|
||||||
|
conf = yaml.load(f)
|
||||||
|
|
||||||
|
USERNAME = conf['username']
|
||||||
|
NAME = conf['name']
|
||||||
|
DOMAIN = conf['domain']
|
||||||
|
SCHEME = 'https' if conf.get('https', True) else 'http'
|
||||||
|
BASE_URL = SCHEME + '://' + DOMAIN
|
||||||
|
ID = BASE_URL
|
||||||
|
SUMMARY = conf['summary']
|
||||||
|
ICON_URL = conf['icon_url']
|
||||||
|
PASS = conf['pass']
|
||||||
|
PUBLIC_INSTANCES = conf.get('public_instances')
|
||||||
|
|
||||||
|
USER_AGENT = (
|
||||||
|
f'{requests.utils.default_user_agent()} '
|
||||||
|
f'(microblog.pub/{VERSION}; +{BASE_URL})'
|
||||||
|
)
|
||||||
|
|
||||||
|
# TODO(tsileo): use 'mongo:27017;
|
||||||
|
# mongo_client = MongoClient(host=['mongo:27017'])
|
||||||
|
mongo_client = MongoClient(
|
||||||
|
host=[os.getenv('MICROBLOGPUB_MONGODB_HOST', 'localhost:27017')],
|
||||||
|
)
|
||||||
|
|
||||||
|
DB = mongo_client['{}_{}'.format(USERNAME, DOMAIN.replace('.', '_'))]
|
||||||
|
KEY = Key(USERNAME, DOMAIN, create=True)
|
||||||
|
|
||||||
|
ME = {
|
||||||
|
"@context": [
|
||||||
|
CTX_AS,
|
||||||
|
CTX_SECURITY,
|
||||||
|
],
|
||||||
|
"type": "Person",
|
||||||
|
"id": ID,
|
||||||
|
"following": ID+"/following",
|
||||||
|
"followers": ID+"/followers",
|
||||||
|
"liked": ID+"/liked",
|
||||||
|
"inbox": ID+"/inbox",
|
||||||
|
"outbox": ID+"/outbox",
|
||||||
|
"preferredUsername": USERNAME,
|
||||||
|
"name": NAME,
|
||||||
|
"summary": SUMMARY,
|
||||||
|
"endpoints": {},
|
||||||
|
"url": ID,
|
||||||
|
"icon": {
|
||||||
|
"mediaType": "image/png",
|
||||||
|
"type": "Image",
|
||||||
|
"url": ICON_URL,
|
||||||
|
},
|
||||||
|
"publicKey": {
|
||||||
|
"id": ID+"#main-key",
|
||||||
|
"owner": ID,
|
||||||
|
"publicKeyPem": KEY.pubkey_pem,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
print(ME)
|
||||||
|
|
||||||
|
ACTOR_SERVICE = ActorService(USER_AGENT, DB.actors_cache, ID, ME, DB.instances)
|
||||||
|
OBJECT_SERVICE = ObjectService(USER_AGENT, DB.objects_cache, DB.inbox, DB.outbox, DB.instances)
|
6
config/me.sample.yml
Normal file
6
config/me.sample.yml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
username: 'username'
|
||||||
|
name: 'You Name'
|
||||||
|
icon_url: 'https://you-avatar-url'
|
||||||
|
domain: 'your-domain.tld'
|
||||||
|
summary: 'your summary'
|
||||||
|
https: true
|
2
data/.gitignore
vendored
Normal file
2
data/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
21
docker-compose-dev.yml
Normal file
21
docker-compose-dev.yml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
celery:
|
||||||
|
build: .
|
||||||
|
links:
|
||||||
|
- mongo
|
||||||
|
- rabbitmq
|
||||||
|
command: 'celery worker -l info -A tasks'
|
||||||
|
environment:
|
||||||
|
- MICROBLOGPUB_AMQP_BORKER=pyamqp://guest@rabbitmq//
|
||||||
|
- MICROBLOGPUB_MONGODB_HOST=mongo:27017
|
||||||
|
mongo:
|
||||||
|
image: "mongo:latest"
|
||||||
|
volumes:
|
||||||
|
- "./data:/data/db"
|
||||||
|
ports:
|
||||||
|
- "27017:27017"
|
||||||
|
rabbitmq:
|
||||||
|
image: "rabbitmq:latest"
|
||||||
|
ports:
|
||||||
|
- "5672:5672"
|
30
docker-compose.yml
Normal file
30
docker-compose.yml
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
build: .
|
||||||
|
ports:
|
||||||
|
- "5005:5005"
|
||||||
|
links:
|
||||||
|
- mongo
|
||||||
|
- rabbitmq
|
||||||
|
volumes:
|
||||||
|
- "./config:/app/config"
|
||||||
|
- "./static:/app/static"
|
||||||
|
environment:
|
||||||
|
- MICROBLOGPUB_AMQP_BORKER=pyamqp://guest@rabbitmq//
|
||||||
|
- MICROBLOGPUB_MONGODB_HOST=mongo:27017
|
||||||
|
celery:
|
||||||
|
build: .
|
||||||
|
links:
|
||||||
|
- mongo
|
||||||
|
- rabbitmq
|
||||||
|
command: 'celery worker -l info -A tasks'
|
||||||
|
environment:
|
||||||
|
- MICROBLOGPUB_AMQP_BORKER=pyamqp://guest@rabbitmq//
|
||||||
|
- MICROBLOGPUB_MONGODB_HOST=mongo:27017
|
||||||
|
mongo:
|
||||||
|
image: "mongo:latest"
|
||||||
|
volumes:
|
||||||
|
- "./data:/data/db"
|
||||||
|
rabbitmq:
|
||||||
|
image: "rabbitmq:latest"
|
21
requirements.txt
Normal file
21
requirements.txt
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
libsass
|
||||||
|
gunicorn
|
||||||
|
piexif
|
||||||
|
requests
|
||||||
|
markdown
|
||||||
|
python-u2flib-server
|
||||||
|
Flask
|
||||||
|
Celery
|
||||||
|
pymongo
|
||||||
|
pyld
|
||||||
|
timeago
|
||||||
|
bleach
|
||||||
|
pycryptodome
|
||||||
|
html2text
|
||||||
|
feedgen
|
||||||
|
itsdangerous
|
||||||
|
bcrypt
|
||||||
|
mf2py
|
||||||
|
passlib
|
||||||
|
pyyaml
|
||||||
|
git+https://github.com/erikriver/opengraph.git
|
207
sass/base_theme.scss
Normal file
207
sass/base_theme.scss
Normal file
|
@ -0,0 +1,207 @@
|
||||||
|
// a4.io dark theme
|
||||||
|
$background-color: #060606;
|
||||||
|
$background-light: #222;
|
||||||
|
$color: #808080;
|
||||||
|
$color-title-link: #fefefe;
|
||||||
|
$color-summary: #ddd;
|
||||||
|
$color-light: #bbb;
|
||||||
|
$color-menu-background: #222;
|
||||||
|
$color-note-link: #666;
|
||||||
|
$primary-color: #f7ca18;
|
||||||
|
|
||||||
|
$background-color: #eee;
|
||||||
|
$background-light: #ccc;
|
||||||
|
$color: #111;
|
||||||
|
$color-title-link: #333;
|
||||||
|
$color-light: #555;
|
||||||
|
$color-summary: #111;
|
||||||
|
$color-note-link: #333;
|
||||||
|
$color-menu-background: #ddd;
|
||||||
|
$primary-color: #1d781d;
|
||||||
|
|
||||||
|
.note-container p:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-color: $background-color;
|
||||||
|
color: $color;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.base-container {
|
||||||
|
flex: 1 0 auto;
|
||||||
|
}
|
||||||
|
.footer {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
a, h1, h2, h3, h4, h5, h6 {
|
||||||
|
color: $color-title-link;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.gold {
|
||||||
|
color: $primary-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 1.2em;
|
||||||
|
padding-right: 15px;
|
||||||
|
color: $color-title-link;
|
||||||
|
}
|
||||||
|
.title:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.subtitle-username {
|
||||||
|
color: $color;
|
||||||
|
}
|
||||||
|
.menu {
|
||||||
|
padding: 20px 0 10px 0;
|
||||||
|
ul {
|
||||||
|
display: inline;
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
li {
|
||||||
|
float:left;
|
||||||
|
padding-right:10px;
|
||||||
|
margin-bottom:10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
padding: 2px 7px;
|
||||||
|
}
|
||||||
|
a.selected {
|
||||||
|
background: $primary-color;
|
||||||
|
color: $background-color;
|
||||||
|
border-radius:2px;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
background: $primary-color;
|
||||||
|
color: $background-color;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#container {
|
||||||
|
width: 90%;
|
||||||
|
max-width: 720px;
|
||||||
|
margin: 40px auto;
|
||||||
|
}
|
||||||
|
#container #notes {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
.actor-box {
|
||||||
|
display: block;
|
||||||
|
text-decoration: none;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
|
||||||
|
.actor-icon {
|
||||||
|
width: 100%;
|
||||||
|
max-width:120px;
|
||||||
|
border-radius:2px;
|
||||||
|
}
|
||||||
|
h3 { margin: 0; }
|
||||||
|
}
|
||||||
|
.note {
|
||||||
|
display: flex;
|
||||||
|
margin-bottom: 70px;
|
||||||
|
.l {
|
||||||
|
color: $color-note-link;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-card {
|
||||||
|
flex: initial;
|
||||||
|
width: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.u-photo {
|
||||||
|
width: 50px;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
.note-wrapper {
|
||||||
|
flex: 1;
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-bar { margin-top:10px; }
|
||||||
|
|
||||||
|
.img-attachment {
|
||||||
|
max-width:100%;
|
||||||
|
border-radius:2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.1em;
|
||||||
|
color: $color-light;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong { font-weight:600; }
|
||||||
|
|
||||||
|
.note-container {
|
||||||
|
clear: right;
|
||||||
|
padding:10px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bar-item {
|
||||||
|
background: $color-menu-background;
|
||||||
|
padding: 5px;
|
||||||
|
color: $color-light;
|
||||||
|
margin-right:5px;
|
||||||
|
border-radius:2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-bar .perma-item {
|
||||||
|
margin-right:5px;
|
||||||
|
}
|
||||||
|
.bottom-bar a.bar-item:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.footer > div {
|
||||||
|
width: 90%;
|
||||||
|
max-width: 720px;
|
||||||
|
margin: 40px auto;
|
||||||
|
}
|
||||||
|
.footer a, .footer a:hover, .footer a:visited {
|
||||||
|
text-decoration: underline;
|
||||||
|
color: $color;
|
||||||
|
}
|
||||||
|
.summary {
|
||||||
|
color: $color-summary;
|
||||||
|
font-size:1.3em;
|
||||||
|
margin-top:50px;
|
||||||
|
margin-bottom:70px;
|
||||||
|
}
|
||||||
|
.summary a, .summay a:hover {
|
||||||
|
color: $color-summary;
|
||||||
|
text-decoration:underline;
|
||||||
|
}
|
||||||
|
#followers, #following, #new {
|
||||||
|
margin-top:50px;
|
||||||
|
}
|
||||||
|
#admin {
|
||||||
|
margin-top:50px;
|
||||||
|
}
|
||||||
|
textarea, input {
|
||||||
|
background: $color-menu-background;
|
||||||
|
padding: 10px;
|
||||||
|
color: $color-light;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
input[type=submit] {
|
||||||
|
color: $primary-color;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
1
sass/theme.scss
Normal file
1
sass/theme.scss
Normal file
|
@ -0,0 +1 @@
|
||||||
|
@import 'base_theme.scss'
|
2
setup.cfg
Normal file
2
setup.cfg
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[flake8]
|
||||||
|
max-line-length = 120
|
160
static/base.css
Normal file
160
static/base.css
Normal file
|
@ -0,0 +1,160 @@
|
||||||
|
.note-container p:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-color: #060606;
|
||||||
|
color: #808080;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.base-container {
|
||||||
|
flex: 1 0 auto;
|
||||||
|
}
|
||||||
|
.footer {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
a, h1, h2, h3, h4, h5, h6 {
|
||||||
|
color: #fefefe;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.gold {
|
||||||
|
color: #f7ca18;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
#header .h-card {
|
||||||
|
}
|
||||||
|
#header .title {
|
||||||
|
font-size:1.2em;padding-right:15px;color:#fefefe;
|
||||||
|
}
|
||||||
|
#header .title:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
#header .menu {
|
||||||
|
padding: 20px 0 10px 0;
|
||||||
|
}
|
||||||
|
#header .menu ul {
|
||||||
|
display:inline;list-style-type:none;padding:0;
|
||||||
|
}
|
||||||
|
#header .menu li {
|
||||||
|
float:left;
|
||||||
|
padding-right:10px;
|
||||||
|
margin-bottom:10px;
|
||||||
|
}
|
||||||
|
#header .menu a {
|
||||||
|
padding: 2px 7px;
|
||||||
|
}
|
||||||
|
#header .menu a.selected {
|
||||||
|
background:#f7ca18;color:#634806;
|
||||||
|
border-radius:2px;
|
||||||
|
}
|
||||||
|
#header .menu a:hover {
|
||||||
|
background:#f7ca18;color:#060606;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
#container {
|
||||||
|
width:90%;max-width: 720px;margin:40px auto;
|
||||||
|
}
|
||||||
|
#container #notes {
|
||||||
|
margin-top:20px;
|
||||||
|
}
|
||||||
|
.actor-box {
|
||||||
|
display:block;text-decoration:none;margin-bottom:40px;
|
||||||
|
}
|
||||||
|
.actor-box .actor-icon {
|
||||||
|
width: 100%;
|
||||||
|
max-width:120px;
|
||||||
|
border-radius:2px;
|
||||||
|
}
|
||||||
|
.actor-box h3 { margin:0; }
|
||||||
|
.note .l {
|
||||||
|
color:#666;
|
||||||
|
}
|
||||||
|
.note {
|
||||||
|
display:flex;margin-bottom:70px;
|
||||||
|
}
|
||||||
|
.note .h-card {
|
||||||
|
flex:initial;width:50px;
|
||||||
|
}
|
||||||
|
.note .u-photo {
|
||||||
|
width:50px;border-radius:2px;
|
||||||
|
}
|
||||||
|
.note .note-wrapper {
|
||||||
|
flex:1;padding-left:15px;
|
||||||
|
}
|
||||||
|
.note .bottom-bar {
|
||||||
|
margin-top:10px;
|
||||||
|
}
|
||||||
|
.bar-item {
|
||||||
|
background: #222;
|
||||||
|
padding: 5px;
|
||||||
|
color:#bbb;
|
||||||
|
margin-right:5px;
|
||||||
|
border-radius:2px;
|
||||||
|
}
|
||||||
|
.bottom-bar .perma-item {
|
||||||
|
margin-right:5px;
|
||||||
|
}
|
||||||
|
.bottom-bar a.bar-item:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.note .img-attachment {
|
||||||
|
max-width:100%;
|
||||||
|
border-radius:2px;
|
||||||
|
}
|
||||||
|
.note h3 {
|
||||||
|
font-size:1.1em;color:#ccc;
|
||||||
|
}
|
||||||
|
.note .note-container {
|
||||||
|
clear:right;padding:10px 0;
|
||||||
|
}
|
||||||
|
.note strong {
|
||||||
|
font-weight:600;
|
||||||
|
}
|
||||||
|
.footer > div {
|
||||||
|
width:90%;max-width: 720px;margin:40px auto;
|
||||||
|
}
|
||||||
|
.footer a, .footer a:hover, .footer a:visited {
|
||||||
|
text-decoration:underline;
|
||||||
|
color:#808080;
|
||||||
|
}
|
||||||
|
.summary {
|
||||||
|
color: #ddd;
|
||||||
|
font-size:1.3em;
|
||||||
|
margin-top:50px;
|
||||||
|
margin-bottom:70px;
|
||||||
|
}
|
||||||
|
.summary a, .summay a:hover {
|
||||||
|
color:#ddd;
|
||||||
|
text-decoration:underline;
|
||||||
|
}
|
||||||
|
#followers, #following, #new {
|
||||||
|
margin-top:50px;
|
||||||
|
}
|
||||||
|
#admin {
|
||||||
|
margin-top:50px;
|
||||||
|
}
|
||||||
|
textarea, input {
|
||||||
|
background: #222;
|
||||||
|
padding: 10px;
|
||||||
|
color: #bbb;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
input[type=submit] {
|
||||||
|
color: #f7ca18;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
2
static/css/.gitignore
vendored
Normal file
2
static/css/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
2
static/media/.gitignore
vendored
Normal file
2
static/media/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
BIN
static/nopic.png
Normal file
BIN
static/nopic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
56
tasks.py
Normal file
56
tasks.py
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
import os
|
||||||
|
import logging
|
||||||
|
import random
|
||||||
|
|
||||||
|
import requests
|
||||||
|
from celery import Celery
|
||||||
|
from requests.exceptions import HTTPError
|
||||||
|
|
||||||
|
from config import HEADERS
|
||||||
|
from config import ID
|
||||||
|
from config import DB
|
||||||
|
from config import KEY
|
||||||
|
from config import USER_AGENT
|
||||||
|
from utils.httpsig import HTTPSigAuth
|
||||||
|
from utils.opengraph import fetch_og_metadata
|
||||||
|
|
||||||
|
|
||||||
|
log = logging.getLogger()
|
||||||
|
app = Celery('tasks', broker=os.getenv('MICROBLOGPUB_AMQP_BROKER', 'pyamqp://guest@localhost//'))
|
||||||
|
# app = Celery('tasks', broker='pyamqp://guest@rabbitmq//')
|
||||||
|
SigAuth = HTTPSigAuth(ID+'#main-key', KEY.privkey)
|
||||||
|
|
||||||
|
|
||||||
|
@app.task(bind=True, max_retries=12)
|
||||||
|
def post_to_inbox(self, payload, to):
|
||||||
|
try:
|
||||||
|
log.info('payload=%s', payload)
|
||||||
|
log.info('to=%s', to)
|
||||||
|
resp = requests.post(to, data=payload, auth=SigAuth, headers={
|
||||||
|
'Content-Type': HEADERS[1],
|
||||||
|
'Accept': HEADERS[1],
|
||||||
|
'User-Agent': USER_AGENT,
|
||||||
|
})
|
||||||
|
print(resp)
|
||||||
|
log.info('resp=%s', resp)
|
||||||
|
log.info('resp_body=%s', resp.text)
|
||||||
|
resp.raise_for_status()
|
||||||
|
except HTTPError as err:
|
||||||
|
log.exception('request failed')
|
||||||
|
if 400 >= err.response.status_code >= 499:
|
||||||
|
log.info('client error, no retry')
|
||||||
|
return
|
||||||
|
self.retry(exc=err, countdown=int(random.uniform(2, 4) ** self.request.retries))
|
||||||
|
|
||||||
|
|
||||||
|
@app.task(bind=True, max_retries=12)
|
||||||
|
def fetch_og(self, col, remote_id):
|
||||||
|
try:
|
||||||
|
log.info('fetch_og_meta remote_id=%s col=%s', remote_id, col)
|
||||||
|
if col == 'INBOX':
|
||||||
|
log.info('%d links saved', fetch_og_metadata(USER_AGENT, DB.inbox, remote_id))
|
||||||
|
elif col == 'OUTBOX':
|
||||||
|
log.info('%d links saved', fetch_og_metadata(USER_AGENT, DB.outbox, remote_id))
|
||||||
|
except Exception as err:
|
||||||
|
self.log.exception('failed')
|
||||||
|
self.retry(exc=err, countdown=int(random.uniform(2, 4) ** self.request.retries))
|
22
templates/about.html
Normal file
22
templates/about.html
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div style="width:90%;max-width: 720px;margin:40px auto;">
|
||||||
|
|
||||||
|
{% include "header.html" %}
|
||||||
|
|
||||||
|
<div class="h-card" style="display:flex">
|
||||||
|
<div style="flex:initial;width:200px;min-width:50px;">
|
||||||
|
<a class="u-url u-uid" href="{{ config.ID }}"><img class="u-photo" src="{{ me.icon.url }}" style="width:100%;max-width:200px;border-radius:5px;"></a>
|
||||||
|
</div>
|
||||||
|
<data class="p-name" value="{{ config.USERNAME }}">
|
||||||
|
<div style="flex:1;padding-left:30px;">
|
||||||
|
{{ text | safe }}
|
||||||
|
<div class="p-note" style="margin:20px 0;">{{ me.summary }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
30
templates/admin.html
Normal file
30
templates/admin.html
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block content %}
|
||||||
|
<div id="container">
|
||||||
|
{% include "header.html" %}
|
||||||
|
<div id="admin">
|
||||||
|
<h3>Stats</h3>
|
||||||
|
<h4>DB</h4>
|
||||||
|
<ul>
|
||||||
|
<li>Inbox size: <strong>{{ inbox_size }}</strong></li>
|
||||||
|
<li>Outbox size: <strong>{{ outbox_size }}</strong></li>
|
||||||
|
<li>Object cache size: <strong>{{ object_cache_size }}</strong></li>
|
||||||
|
<li>Actor cache size: <strong>{{ actor_cache_size }}</strong></li>
|
||||||
|
</ul>
|
||||||
|
<h4>Collections</h4>
|
||||||
|
<ul>
|
||||||
|
<li>followers: <strong>{{ col_followers }}</strong></li>
|
||||||
|
<li>following: <strong>{{ col_following }}</strong></li>
|
||||||
|
<li>liked: <strong>{{col_liked }}</strong></li>
|
||||||
|
</ul>
|
||||||
|
<h4>Known Instances</h4>
|
||||||
|
<ul>
|
||||||
|
{% for instance in instances %}
|
||||||
|
<li><a href="{{ instance.instance }}">{{ instance.instance }}</a></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
15
templates/authorize_remote_follow.html
Normal file
15
templates/authorize_remote_follow.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div id="container">
|
||||||
|
<h2>You're about to follow <strong>{{ profile}} </strong></h2>
|
||||||
|
|
||||||
|
<form method="POST" action="">
|
||||||
|
<input type="hidden" name="profile" value="{{ profile }}">
|
||||||
|
<input type="submit" value="follow">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
16
templates/followers.html
Normal file
16
templates/followers.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div id="container">
|
||||||
|
{% include "header.html" %}
|
||||||
|
|
||||||
|
<div id="followers">
|
||||||
|
{% for follower in followers_data %}
|
||||||
|
{{ utils.display_actor(follower) }}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
16
templates/following.html
Normal file
16
templates/following.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div id="container">
|
||||||
|
{% include "header.html" %}
|
||||||
|
|
||||||
|
<div id="following">
|
||||||
|
{% for followed in following_data %}
|
||||||
|
{{ utils.display_actor(followed) }}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
29
templates/header.html
Normal file
29
templates/header.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<div id="header">
|
||||||
|
<div class="h-card p-author">
|
||||||
|
<data class="u-photo" value="{{ config.ME.icon.url }}">
|
||||||
|
<a href="{{ config.ID }}" class="u-url u-uid no-hover title">
|
||||||
|
<span style="font-size:1.1em;">{{ config.NAME }}</span>
|
||||||
|
<span style="font-size:0.85em;" class="subtitle-username">@<span class="gold p-name">{{ config.USERNAME }}</span>@<span class="gold">{{ config.DOMAIN }}</span>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
<data class="p-note" value="{{ config.ME.summary }}">
|
||||||
|
</div>
|
||||||
|
<div class="menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="/" {% if request.path == "/" %}class="selected"{% endif %}>/</a></li>
|
||||||
|
<li><a href="/followers"{% if request.path == "/followers" %} class="selected" {% endif %}>/followers</a></li>
|
||||||
|
<li><a href="/following"{% if request.path == "/following" %} class="selected" {% endif %}>/following</a></li>
|
||||||
|
<!-- <li><a href="/about"{% if request.path == "/about" %} class="selected" {% endif %}>/about</a></li>
|
||||||
|
-->
|
||||||
|
{% if logged_in %}
|
||||||
|
<li><a href="/stream"{% if request.path == "/stream" %} class="selected" {% endif %}>/stream</a></li>
|
||||||
|
<li><a href="/notifications"{% if request.path == "/notifications" %} class="selected" {% endif %}>/notifs</a></li>
|
||||||
|
<li><a href="/new"{% if request.path == "/new" %} class="selected" {% endif %}>/new</a></li>
|
||||||
|
<li><a href="/admin"{% if request.path == "/admin" %} class="selected" {% endif %}>/admin</a></li>
|
||||||
|
<li><a href="/logout">/logout</a></li>
|
||||||
|
{% else %}
|
||||||
|
<li><a href="/remote_follow"{% if request.path == "/remote_follow" %} class="selected" {% endif %}>/remote_follow</a></li>
|
||||||
|
{% endif %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
45
templates/index.html
Normal file
45
templates/index.html
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
<link rel="self" href="{{ config.ID }}/">
|
||||||
|
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/">
|
||||||
|
<meta content="profile" property="og:type" />
|
||||||
|
<meta content="{{ config.ID }}" property="og:url" />
|
||||||
|
<meta content="{{ config.USERNAME }}" property="og:site_name" />
|
||||||
|
<meta content="{{ config.USERNAME }}" property="og:title" />
|
||||||
|
<meta content="{{ me.summary | html2plaintext }}" property="og:description" />
|
||||||
|
<meta content="{{ me.icon.url }}" property="og:image" />
|
||||||
|
<meta content="200" property="og:image:width" />
|
||||||
|
<meta content="200" property="og:image:height" />
|
||||||
|
<meta content="summary" property="twitter:card" />
|
||||||
|
<meta content="{{config.USERNAME}}@{{ config.DOMAIN}}" property="profile:username" />
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div class="h-feed" id="container">
|
||||||
|
<data class="p-name" value="{{config.USERNAME}} notes">
|
||||||
|
|
||||||
|
{% include "header.html" %}
|
||||||
|
|
||||||
|
<div class="summary">
|
||||||
|
{{ config.SUMMARY | safe }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="notes">
|
||||||
|
{% for item in outbox_data %}
|
||||||
|
|
||||||
|
{% if item.type == 'Announce' %}
|
||||||
|
{% set boost_actor = item.activity.actor | get_actor %}
|
||||||
|
<p style="margin-left:65px;padding-bottom:5px;"><span class="bar-item"><a style="color:#808080;" href="{{ boost_actor.url }}">{{ boost_actor.name }}</a> boosted</span></p>
|
||||||
|
{% if item.ref %}
|
||||||
|
{{ utils.display_note(item.ref, ui=False) }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% elif item.type == 'Create' %}
|
||||||
|
{{ utils.display_note(item) }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
42
templates/indieauth_flow.html
Normal file
42
templates/indieauth_flow.html
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div style="width:90%;max-width: 720px;margin:40px auto;">
|
||||||
|
{% if session.logged_in %}logged{% else%}not logged{%endif%}
|
||||||
|
|
||||||
|
<div style="display:flex">
|
||||||
|
{% if client.logo %}
|
||||||
|
<div style="flex:initial;width:100px;">
|
||||||
|
<img src="{{client.logo}}" style="max-width:100px;">
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<div style="flex:1;">
|
||||||
|
<div style="margin-top:20px">
|
||||||
|
<a style="font-size:1.2em;font-weight:600;text-decoration:none;color:#111;" href="{{ client.url }}">{{ client.name }}</a>
|
||||||
|
<p>wants you to login</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form method="POST" action="{{ url_for('indieauth_flow') }}">
|
||||||
|
{% if scopes %}
|
||||||
|
<h3>Scopes</h3>
|
||||||
|
<ul>
|
||||||
|
{% for scope in scopes %}
|
||||||
|
<li><input type="checkbox" name="scopes" value="{{scope}}" id="scope-{{scope}}"><label for="scope-{{scope}}">{{ scope }}</label>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
<input type="hidden" name="redirect_uri" value="{{ redirect_uri }}">
|
||||||
|
<input type="hidden" name="state" value="{{ state }}">
|
||||||
|
<input type="hidden" name="client_id" value="{{ client_id }}">
|
||||||
|
<input type="hidden" name="me" value="{{ me }}">
|
||||||
|
<input type="hidden" name="response_type" value="{{ response_type }}">
|
||||||
|
<input type="submit" value="login">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
29
templates/layout.html
Normal file
29
templates/layout.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<!DOCTYPE HTML>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="x-ua-compatible" content="ie=edge"> <!-- † -->
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
<title>{{ config.USERNAME }}</title>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
|
||||||
|
<link rel="stylesheet" href="/static/css/theme.css">
|
||||||
|
<link rel="authorization_endpoint" href="{{ config.ID }}/indieauth">
|
||||||
|
<link rel="token_endpoint" href="{{ config.ID }}/token">
|
||||||
|
<link rel="webmention" href="{{ config.ID }}/webmention">
|
||||||
|
<link rel="micropub" href="{{ config.ID }}/micropub">
|
||||||
|
<link rel="alternate" href="https://mastodon.social/users/tpub0" title="ActivityPub profile" type="application/activity+json">
|
||||||
|
<link rel="alternate" href="{{ config.ID }}/feed.json" type="application/json" title="JSON Feed">
|
||||||
|
<link rel="alternate" href="{{ config.ID }}/feed.rss" type="application/rss+xml" title="RSS">
|
||||||
|
<link rel="alternate" href="{{ config.ID }}/feed.atom" type="application/atom+xml" title="Atom 0.3">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="base-container">
|
||||||
|
{% block content %}{% endblock %}
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
<div>
|
||||||
|
Powered by <a href="https://microblog.pub">microblog.pub</a> (<a href="https://github.com/tsileo/microblog.pub">source code</a>) and the <a href="https://activitypub.rocks/">ActivityPub</a> protocol
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
36
templates/login.html
Normal file
36
templates/login.html
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div id="container">
|
||||||
|
{% if session.logged_in %}logged{% else%}not logged{%endif%}
|
||||||
|
|
||||||
|
<form id="login-form" method="POST">
|
||||||
|
<input type="password" name="pass" placeholder="password">
|
||||||
|
{% if u2f_enabled %}
|
||||||
|
<input type="hidden" name="resp" id="sig-payload" value="">
|
||||||
|
<input type="submit" value="waiting for u2f" disabled>
|
||||||
|
{% else %}
|
||||||
|
<input type="submit" value="login">
|
||||||
|
{% endif %}
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% if u2f_enabled %}
|
||||||
|
<script>
|
||||||
|
var p = {{ payload | tojson }};
|
||||||
|
if (p) {
|
||||||
|
u2f.sign(p.appId, p.challenge, p.registeredKeys, function(resp) {
|
||||||
|
if (resp.errorCode) {
|
||||||
|
console.log(resp)
|
||||||
|
} else {
|
||||||
|
document.getElementById('sig-payload').value = JSON.stringify(resp)
|
||||||
|
document.getElementById('login-form').submit()
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
17
templates/new.html
Normal file
17
templates/new.html
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block content %}
|
||||||
|
<div id="container">
|
||||||
|
{% include "header.html" %}
|
||||||
|
<div id="new">
|
||||||
|
<form action="" method="POST">
|
||||||
|
{% if reply %}<input type="hidden" name="reply" value="{{reply}}">{% endif %}
|
||||||
|
<textarea name="content" rows="10" cols="50" autofocus="autofocus">{{ content }}</textarea>
|
||||||
|
<div style="margin-top:20px;">
|
||||||
|
<input type="submit" value="post">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
23
templates/note.html
Normal file
23
templates/note.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
<meta content="article" property="og:type" />
|
||||||
|
<meta content="{{ note.activity.object.url }}" property="og:url" />
|
||||||
|
|
||||||
|
<meta content="{{ config.USERNAME }}" property="og:site_name" />
|
||||||
|
<meta content="{{ config.USERNAME }}" property="og:title" />
|
||||||
|
<meta content="{{ note.activity.object.content | html2plaintext }}" property="og:description" />
|
||||||
|
<meta content="{{ me.icon.url }}" property="og:image" />
|
||||||
|
<meta content="200" property="og:image:width" />
|
||||||
|
<meta content="200" property="og:image:height" />
|
||||||
|
<meta content="summary" property="twitter:card" />
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div id="container">
|
||||||
|
{% include "header.html" %}
|
||||||
|
{{ utils.display_note(note, perma=True) }}
|
||||||
|
{% for reply in replies %}
|
||||||
|
{{ utils.display_note(reply, perma=False) }}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
16
templates/remote_follow.html
Normal file
16
templates/remote_follow.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div id="container">
|
||||||
|
{% include "header.html" %}
|
||||||
|
<h2>You're about to follow me</h2>
|
||||||
|
|
||||||
|
<form method="POST" action="">
|
||||||
|
<input type="text" name="profile" placeholder="you@your-instance">
|
||||||
|
<input type="submit" value="Proceed to remote follow">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
39
templates/stream.html
Normal file
39
templates/stream.html
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block content %}
|
||||||
|
<div class="h-feed" id="container">
|
||||||
|
{% include "header.html" %}
|
||||||
|
<div id="admin">
|
||||||
|
|
||||||
|
<div id="notes">
|
||||||
|
{% for item in inbox_data %}
|
||||||
|
{% if item.type == 'Create' %}
|
||||||
|
{{ utils.display_note(item, ui=True) }}
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
{% if item.type == 'Announce' %}
|
||||||
|
|
||||||
|
{% set boost_actor = item.activity.actor | get_actor %}
|
||||||
|
<p style="margin-left:70px;padding-bottom:5px;"><span class="bar-item"><a style="color:#808080;" href="{{ boost_actor.url }}">{{ boost_actor.name or boost_actor.preferredUsername }}</a> boosted</span></p>
|
||||||
|
{% if item.ref %}
|
||||||
|
{{ utils.display_note(item.ref, ui=True) }}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if item.type == 'Follow' %}
|
||||||
|
<p>{{ item.activity.actor }} followed you</p>
|
||||||
|
{% elif item.type == 'Accept' %}
|
||||||
|
<p>you followed {{ item.activity.actor }}</p>
|
||||||
|
{% elif item.type == 'Undo' %}
|
||||||
|
<p>{{ item.activity.actor }} unfollowed you</p>
|
||||||
|
{% else %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
30
templates/tags.html
Normal file
30
templates/tags.html
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
<link rel="self" href="{{ config.ID }}/">
|
||||||
|
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/">
|
||||||
|
<meta content="profile" property="og:type" />
|
||||||
|
<meta content="{{ config.ID }}" property="og:url" />
|
||||||
|
<meta content="{{ config.USERNAME }}" property="og:site_name" />
|
||||||
|
<meta content="{{ config.USERNAME }}" property="og:title" />
|
||||||
|
<meta content="{{ me.summary | html2plaintext }}" property="og:description" />
|
||||||
|
<meta content="{{ me.icon.url }}" property="og:image" />
|
||||||
|
<meta content="200" property="og:image:width" />
|
||||||
|
<meta content="200" property="og:image:height" />
|
||||||
|
<meta content="summary" property="twitter:card" />
|
||||||
|
<meta content="{{config.USERNAME}}@{{ config.DOMAIN}}" property="profile:username" />
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div class="h-feed" id="container">
|
||||||
|
<data class="p-name" value="#{{tag}}">
|
||||||
|
|
||||||
|
{% include "header.html" %}
|
||||||
|
<h2>#{{ tag }}</h2>
|
||||||
|
<div id="notes">
|
||||||
|
{% for item in outbox_data %}
|
||||||
|
{{ utils.display_note(item) }}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
29
templates/u2f.html
Normal file
29
templates/u2f.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
{% import 'utils.html' as utils %}
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<div style="width:90%;max-width: 720px;margin:40px auto;">
|
||||||
|
{% if session.logged_in %}logged{% else%}not logged{%endif%}
|
||||||
|
|
||||||
|
<form method="POST" id="register-form">
|
||||||
|
<input type="hidden" id="register-payload" name="resp" value="">
|
||||||
|
<input type="submit" value="login">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
var p= {{ payload | tojson }};
|
||||||
|
//setTimeout(function() {
|
||||||
|
u2f.register(p.appId, p.registerRequests, p.registeredKeys, function(resp) {
|
||||||
|
if (resp.errorCode) {
|
||||||
|
console.log(resp)
|
||||||
|
} else {
|
||||||
|
document.getElementById('register-payload').value = JSON.stringify(resp)
|
||||||
|
document.getElementById('register-form').submit()
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
//}, 1000);
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
91
templates/utils.html
Normal file
91
templates/utils.html
Normal file
|
@ -0,0 +1,91 @@
|
||||||
|
{% macro display_actor(follower) -%}
|
||||||
|
<a class="actor-box" href="{{follower.url}}">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-1-5">
|
||||||
|
{% if not follower.icon %}
|
||||||
|
<img class="actor-icon" src="/static/nopic.png">
|
||||||
|
{% else %}
|
||||||
|
<img class="actor-icon" src="{{ follower.icon.url }}">{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-4-5">
|
||||||
|
<h3>{{ follower.name or follower.preferredUsername }}</h3>
|
||||||
|
<small>@{{ follower.preferredUsername }}@{{ follower.url | domain }}</small>
|
||||||
|
<div>{{ follower.summary | safe }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
{%- endmacro %}
|
||||||
|
|
||||||
|
{% macro display_note(item, perma=False, ui=False) -%}
|
||||||
|
{% set actor = item.activity.object.attributedTo | get_actor %}
|
||||||
|
<div class="note h-entry" id="activity-{{ item['_id'].__str__() }}">
|
||||||
|
|
||||||
|
<div class="h-card p-author">
|
||||||
|
<a class="u-url u-uid no-hover" href="{{ actor.url }}"><img class="u-photo" src="{% if not actor.icon %}/static/nopic.png{% else %}{{ actor.icon.url }}{% endif %}">
|
||||||
|
</a>
|
||||||
|
<data class="p-name" value="{{ actor.name or actor.preferredUsername }}">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="note-wrapper">
|
||||||
|
<a href="{{ actor.url }}" style="margin:0;text-decoration:none;" class="no-hover"><strong>{{ actor.name or actor.preferredUsername }}</strong> <span class="l">@{{ actor.preferredUsername }}@{{ actor.url | domain }}</span></a>
|
||||||
|
|
||||||
|
{% if not perma %}
|
||||||
|
<span style="float:right">
|
||||||
|
<a rel="noopener" class="u-url u-uid note-permalink l" href="{{ item.activity.object.url }}">
|
||||||
|
<time class="dt-published" title="{{ item.activity.object.published }}" datetime="{{ item.activity.object.published }}">{{ item.activity.object.published | format_timeago }}</time></a>
|
||||||
|
</span>
|
||||||
|
{% endif %}
|
||||||
|
{% if item.activity.object.summary %}<p class="p-summary">{{ item.activity.object.summary }}</p>{% endif %}
|
||||||
|
<div class="note-container{% if perma %} perma{%endif%} p-name e-content">
|
||||||
|
{{ item.activity.object.content | safe }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% if item.activity.object.attachment %}
|
||||||
|
<div style="padding:20px 0;">
|
||||||
|
{% if item.activity.object.attachment | not_only_imgs %}
|
||||||
|
<h3 class="l">Attachment</h3>
|
||||||
|
<ul>
|
||||||
|
{% endif %}
|
||||||
|
{% for a in item.activity.object.attachment %}
|
||||||
|
{% if a.url | is_img %}
|
||||||
|
<img src="{{a.url}}" class="img-attachment">
|
||||||
|
{% else %}
|
||||||
|
<li><a href="{{a.url}}" class="l">{% if a.filename %}{{ a.filename }}{% else %}{{ a.url }}{% endif %}</a></li>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% if item.activity.object.attachment | not_only_imgs %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="bottom-bar">
|
||||||
|
{% if perma %}<span class="perma-item">{{ item.activity.object.published | format_time }}</span> {% endif %}
|
||||||
|
<a class ="bar-item" href="{{ item.activity.object.url }}">permalink</a>
|
||||||
|
{% if item.meta.count_reply %}<a class ="bar-item" href="{{ item.activity.object.url }}">{{ item.meta.count_reply }} replies</a>{% endif %}
|
||||||
|
{% if item.meta.count_boost %}<a class ="bar-item" href="{{ item.activity.object.url }}">{{ item.meta.count_boost }} boosts</a>{% endif %}
|
||||||
|
{% if item.meta.count_like %}<a class ="bar-item" href="{{ item.activity.object.url }}">{{ item.meta.count_like }} likes</a>{% endif %}
|
||||||
|
{% if ui %}
|
||||||
|
{% set aid = item.activity.object.id | quote_plus %}
|
||||||
|
<a class="bar-item" href="/new?reply={{ aid }}">reply</a>
|
||||||
|
|
||||||
|
{% set redir = request.path + "#activity-" + item['_id'].__str__() %}
|
||||||
|
|
||||||
|
{% if item.meta.boosted %}
|
||||||
|
<a class="bar-item" href="/ui/undo?id={{ item.meta.boosted | quote_plus }}&redirect={{redir | quote_plus }}">unboost</a>
|
||||||
|
{% else %}
|
||||||
|
<a class="bar-item" href="/ui/boost?id={{ aid }}&redirect={{ redir | quote_plus }}">boost</a>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if item.meta.liked %}
|
||||||
|
<a class="bar-item" href="/ui/undo?id={{ item.meta.liked | quote_plus }}&redirect={{ redir | quote_plus }}">unlike</a>
|
||||||
|
{% else %}
|
||||||
|
<a class="bar-item" href="/ui/like?id={{ aid }}&redirect={{ redir | quote_plus }}">like</a>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{%- endmacro %}
|
0
utils/__init__.py
Normal file
0
utils/__init__.py
Normal file
72
utils/actor_service.py
Normal file
72
utils/actor_service.py
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
import logging
|
||||||
|
|
||||||
|
import requests
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
from Crypto.PublicKey import RSA
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class NotAnActorError(Exception):
|
||||||
|
def __init__(self, activity):
|
||||||
|
self.activity = activity
|
||||||
|
|
||||||
|
|
||||||
|
class ActorService(object):
|
||||||
|
def __init__(self, user_agent, col, actor_id, actor_data, instances):
|
||||||
|
logger.debug(f'Initializing ActorService user_agent={user_agent}')
|
||||||
|
self._user_agent = user_agent
|
||||||
|
self._col = col
|
||||||
|
self._in_mem = {actor_id: actor_data}
|
||||||
|
self._instances = instances
|
||||||
|
self._known_instances = set()
|
||||||
|
|
||||||
|
def _fetch(self, actor_url):
|
||||||
|
logger.debug(f'fetching remote object {actor_url}')
|
||||||
|
resp = requests.get(actor_url, headers={
|
||||||
|
'Accept': 'application/activity+json',
|
||||||
|
'User-Agent': self._user_agent,
|
||||||
|
})
|
||||||
|
resp.raise_for_status()
|
||||||
|
return resp.json()
|
||||||
|
|
||||||
|
def get(self, actor_url, reload_cache=False):
|
||||||
|
logger.info(f'get actor {actor_url} (reload_cache={reload_cache})')
|
||||||
|
|
||||||
|
if actor_url in self._in_mem:
|
||||||
|
return self._in_mem[actor_url]
|
||||||
|
|
||||||
|
instance = urlparse(actor_url)._replace(path='', query='', fragment='').geturl()
|
||||||
|
if instance not in self._known_instances:
|
||||||
|
self._known_instances.add(instance)
|
||||||
|
if not self._instances.find_one({'instance': instance}):
|
||||||
|
self._instances.insert({'instance': instance, 'first_object': actor_url})
|
||||||
|
|
||||||
|
if reload_cache:
|
||||||
|
actor = self._fetch(actor_url)
|
||||||
|
self._in_mem[actor_url] = actor
|
||||||
|
self._col.update({'actor_id': actor_url}, {'$set': {'cached_response': actor}}, upsert=True)
|
||||||
|
return actor
|
||||||
|
|
||||||
|
cached_actor = self._col.find_one({'actor_id': actor_url})
|
||||||
|
if cached_actor:
|
||||||
|
return cached_actor['cached_response']
|
||||||
|
|
||||||
|
actor = self._fetch(actor_url)
|
||||||
|
if not 'type' in actor:
|
||||||
|
raise NotAnActorError(None)
|
||||||
|
if actor['type'] != 'Person':
|
||||||
|
raise NotAnActorError(actor)
|
||||||
|
|
||||||
|
self._col.update({'actor_id': actor_url}, {'$set': {'cached_response': actor}}, upsert=True)
|
||||||
|
self._in_mem[actor_url] = actor
|
||||||
|
return actor
|
||||||
|
|
||||||
|
def get_public_key(self, actor_url, reload_cache=False):
|
||||||
|
profile = self.get(actor_url, reload_cache=reload_cache)
|
||||||
|
pub = profile['publicKey']
|
||||||
|
return pub['id'], RSA.importKey(pub['publicKeyPem'])
|
||||||
|
|
||||||
|
def get_inbox_url(self, actor_url, reload_cache=False):
|
||||||
|
profile = self.get(actor_url, reload_cache=reload_cache)
|
||||||
|
return profile.get('inbox')
|
57
utils/content_helper.py
Normal file
57
utils/content_helper.py
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
import typing
|
||||||
|
import re
|
||||||
|
|
||||||
|
from bleach.linkifier import Linker
|
||||||
|
from markdown import markdown
|
||||||
|
|
||||||
|
from utils.webfinger import get_actor_url
|
||||||
|
from config import USERNAME, BASE_URL, ID
|
||||||
|
from config import ACTOR_SERVICE
|
||||||
|
|
||||||
|
from typing import List, Optional, Tuple, Dict, Any, Union, Type
|
||||||
|
|
||||||
|
|
||||||
|
def set_attrs(attrs, new=False):
|
||||||
|
attrs[(None, u'target')] = u'_blank'
|
||||||
|
attrs[(None, u'class')] = u'external'
|
||||||
|
attrs[(None, u'rel')] = u'noopener'
|
||||||
|
attrs[(None, u'title')] = attrs[(None, u'href')]
|
||||||
|
return attrs
|
||||||
|
|
||||||
|
|
||||||
|
LINKER = Linker(callbacks=[set_attrs])
|
||||||
|
HASHTAG_REGEX = re.compile(r"(#[\d\w\.]+)")
|
||||||
|
MENTION_REGEX = re.compile(r"@[\d\w_.+-]+@[\d\w-]+\.[\d\w\-.]+")
|
||||||
|
|
||||||
|
|
||||||
|
def hashtagify(content: str) -> Tuple[str, List[Dict[str, str]]]:
|
||||||
|
tags = []
|
||||||
|
for hashtag in re.findall(HASHTAG_REGEX, content):
|
||||||
|
tag = hashtag[1:]
|
||||||
|
link = f'<a href="{BASE_URL}/tags/{tag}" class="mention hashtag" rel="tag">#<span>{tag}</span></a>'
|
||||||
|
tags.append(dict(href=f'{BASE_URL}/tags/{tag}', name=hashtag, type='Hashtag'))
|
||||||
|
content = content.replace(hashtag, link)
|
||||||
|
return content, tags
|
||||||
|
|
||||||
|
|
||||||
|
def mentionify(content: str) -> Tuple[str, List[Dict[str, str]]]:
|
||||||
|
tags = []
|
||||||
|
for mention in re.findall(MENTION_REGEX, content):
|
||||||
|
_, username, domain = mention.split('@')
|
||||||
|
actor_url = get_actor_url(mention)
|
||||||
|
p = ACTOR_SERVICE.get(actor_url)
|
||||||
|
tags.append(dict(type='Mention', href=p['id'], name=mention))
|
||||||
|
link = f'<span class="h-card"><a href="{p.url}" class="u-url mention">@<span>{username}</span></a></span>'
|
||||||
|
content = content.replace(mention, link)
|
||||||
|
return content, tags
|
||||||
|
|
||||||
|
|
||||||
|
def parse_markdown(content: str) -> Tuple[str, List[Dict[str, str]]]:
|
||||||
|
tags = []
|
||||||
|
content = LINKER.linkify(content)
|
||||||
|
content, hashtag_tags = hashtagify(content)
|
||||||
|
tags.extend(hashtag_tags)
|
||||||
|
content, mention_tags = mentionify(content)
|
||||||
|
tags.extend(mention_tags)
|
||||||
|
content = markdown(content)
|
||||||
|
return content, tags
|
87
utils/httpsig.py
Normal file
87
utils/httpsig.py
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
"""Implements HTTP signature for Flask requests.
|
||||||
|
|
||||||
|
Mastodon instances won't accept requests that are not signed using this scheme.
|
||||||
|
|
||||||
|
"""
|
||||||
|
from datetime import datetime
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
from typing import Any, Dict
|
||||||
|
import base64
|
||||||
|
import hashlib
|
||||||
|
|
||||||
|
from flask import request
|
||||||
|
from requests.auth import AuthBase
|
||||||
|
|
||||||
|
from Crypto.Signature import PKCS1_v1_5
|
||||||
|
from Crypto.Hash import SHA256
|
||||||
|
|
||||||
|
|
||||||
|
def _build_signed_string(signed_headers: str, method: str, path: str, headers: Any, body_digest: str) -> str:
|
||||||
|
out = []
|
||||||
|
for signed_header in signed_headers.split(' '):
|
||||||
|
if signed_header == '(request-target)':
|
||||||
|
out.append('(request-target): '+method.lower()+' '+path)
|
||||||
|
elif signed_header == 'digest':
|
||||||
|
out.append('digest: '+body_digest)
|
||||||
|
else:
|
||||||
|
out.append(signed_header+': '+headers[signed_header])
|
||||||
|
return '\n'.join(out)
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_sig_header(val: str) -> Dict[str, str]:
|
||||||
|
out = {}
|
||||||
|
for data in val.split(','):
|
||||||
|
k, v = data.split('=', 1)
|
||||||
|
out[k] = v[1:len(v)-1]
|
||||||
|
return out
|
||||||
|
|
||||||
|
|
||||||
|
def _verify_h(signed_string, signature, pubkey):
|
||||||
|
signer = PKCS1_v1_5.new(pubkey)
|
||||||
|
digest = SHA256.new()
|
||||||
|
digest.update(signed_string.encode('utf-8'))
|
||||||
|
return signer.verify(digest, signature)
|
||||||
|
|
||||||
|
|
||||||
|
def _body_digest() -> str:
|
||||||
|
h = hashlib.new('sha256')
|
||||||
|
h.update(request.data)
|
||||||
|
return 'SHA-256='+base64.b64encode(h.digest()).decode('utf-8')
|
||||||
|
|
||||||
|
|
||||||
|
def verify_request(actor_service) -> bool:
|
||||||
|
hsig = _parse_sig_header(request.headers.get('Signature'))
|
||||||
|
signed_string = _build_signed_string(hsig['headers'], request.method, request.path, request.headers, _body_digest())
|
||||||
|
_, rk = actor_service.get_public_key(hsig['keyId'])
|
||||||
|
return _verify_h(signed_string, base64.b64decode(hsig['signature']), rk)
|
||||||
|
|
||||||
|
|
||||||
|
class HTTPSigAuth(AuthBase):
|
||||||
|
def __init__(self, keyid, privkey):
|
||||||
|
self.keyid = keyid
|
||||||
|
self.privkey = privkey
|
||||||
|
|
||||||
|
def __call__(self, r):
|
||||||
|
host = urlparse(r.url).netloc
|
||||||
|
bh = hashlib.new('sha256')
|
||||||
|
bh.update(r.body.encode('utf-8'))
|
||||||
|
bodydigest = 'SHA-256='+base64.b64encode(bh.digest()).decode('utf-8')
|
||||||
|
date = datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT')
|
||||||
|
r.headers.update({'Digest': bodydigest, 'Date': date})
|
||||||
|
r.headers.update({'Host': host})
|
||||||
|
sigheaders = '(request-target) user-agent host date digest content-type'
|
||||||
|
to_be_signed = _build_signed_string(sigheaders, r.method, r.path_url, r.headers, bodydigest)
|
||||||
|
signer = PKCS1_v1_5.new(self.privkey)
|
||||||
|
digest = SHA256.new()
|
||||||
|
digest.update(to_be_signed.encode('utf-8'))
|
||||||
|
sig = base64.b64encode(signer.sign(digest))
|
||||||
|
sig = sig.decode('utf-8')
|
||||||
|
headers = {
|
||||||
|
'Signature': 'keyId="{keyid}",algorithm="rsa-sha256",headers="{headers}",signature="{signature}"'.format(
|
||||||
|
keyid=self.keyid,
|
||||||
|
signature=sig,
|
||||||
|
headers=sigheaders,
|
||||||
|
),
|
||||||
|
}
|
||||||
|
r.headers.update(headers)
|
||||||
|
return r
|
39
utils/key.py
Normal file
39
utils/key.py
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
import os
|
||||||
|
import binascii
|
||||||
|
|
||||||
|
from Crypto.PublicKey import RSA
|
||||||
|
|
||||||
|
KEY_DIR = 'config/'
|
||||||
|
|
||||||
|
|
||||||
|
def get_secret_key(name:str) -> str:
|
||||||
|
key_path = f'{KEY_DIR}{name}.key'
|
||||||
|
if not os.path.exists(key_path):
|
||||||
|
k = binascii.hexlify(os.urandom(32)).decode('utf-8')
|
||||||
|
with open(key_path, 'w+') as f:
|
||||||
|
f.write(k)
|
||||||
|
return k
|
||||||
|
|
||||||
|
with open(key_path) as f:
|
||||||
|
return f.read()
|
||||||
|
|
||||||
|
|
||||||
|
class Key(object):
|
||||||
|
def __init__(self, user: str, domain: str, create: bool = True) -> None:
|
||||||
|
user = user.replace('.', '_')
|
||||||
|
domain = domain.replace('.', '_')
|
||||||
|
key_path = f'{KEY_DIR}/key_{user}_{domain}.pem'
|
||||||
|
if os.path.isfile(key_path):
|
||||||
|
with open(key_path) as f:
|
||||||
|
self.privkey_pem = f.read()
|
||||||
|
self.privkey = RSA.importKey(self.privkey_pem)
|
||||||
|
self.pubkey_pem = self.privkey.publickey().exportKey('PEM').decode('utf-8')
|
||||||
|
else:
|
||||||
|
if not create:
|
||||||
|
raise Exception('must init private key first')
|
||||||
|
k = RSA.generate(4096)
|
||||||
|
self.privkey_pem = k.exportKey('PEM').decode('utf-8')
|
||||||
|
self.pubkey_pem = k.publickey().exportKey('PEM').decode('utf-8')
|
||||||
|
with open(key_path, 'w') as f:
|
||||||
|
f.write(self.privkey_pem)
|
||||||
|
self.privkey = k
|
53
utils/linked_data_sig.py
Normal file
53
utils/linked_data_sig.py
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
from pyld import jsonld
|
||||||
|
import hashlib
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
from Crypto.Signature import PKCS1_v1_5
|
||||||
|
from Crypto.Hash import SHA256
|
||||||
|
import base64
|
||||||
|
|
||||||
|
|
||||||
|
def options_hash(doc):
|
||||||
|
doc = dict(doc['signature'])
|
||||||
|
for k in ['type', 'id', 'signatureValue']:
|
||||||
|
if k in doc:
|
||||||
|
del doc[k]
|
||||||
|
doc['@context'] = 'https://w3id.org/identity/v1'
|
||||||
|
normalized = jsonld.normalize(doc, {'algorithm': 'URDNA2015', 'format': 'application/nquads'})
|
||||||
|
h = hashlib.new('sha256')
|
||||||
|
h.update(normalized.encode('utf-8'))
|
||||||
|
return h.hexdigest()
|
||||||
|
|
||||||
|
|
||||||
|
def doc_hash(doc):
|
||||||
|
doc = dict(doc)
|
||||||
|
if 'signature' in doc:
|
||||||
|
del doc['signature']
|
||||||
|
normalized = jsonld.normalize(doc, {'algorithm': 'URDNA2015', 'format': 'application/nquads'})
|
||||||
|
h = hashlib.new('sha256')
|
||||||
|
h.update(normalized.encode('utf-8'))
|
||||||
|
return h.hexdigest()
|
||||||
|
|
||||||
|
|
||||||
|
def verify_signature(doc, pubkey):
|
||||||
|
to_be_signed = options_hash(doc) + doc_hash(doc)
|
||||||
|
signature = doc['signature']['signatureValue']
|
||||||
|
signer = PKCS1_v1_5.new(pubkey)
|
||||||
|
digest = SHA256.new()
|
||||||
|
digest.update(to_be_signed.encode('utf-8'))
|
||||||
|
return signer.verify(digest, base64.b64decode(signature))
|
||||||
|
|
||||||
|
|
||||||
|
def generate_signature(doc, privkey):
|
||||||
|
options = {
|
||||||
|
'type': 'RsaSignature2017',
|
||||||
|
'creator': doc['actor'] + '#main-key',
|
||||||
|
'created': datetime.utcnow().replace(microsecond=0).isoformat() + 'Z',
|
||||||
|
}
|
||||||
|
doc['signature'] = options
|
||||||
|
to_be_signed = options_hash(doc) + doc_hash(doc)
|
||||||
|
signer = PKCS1_v1_5.new(privkey)
|
||||||
|
digest = SHA256.new()
|
||||||
|
digest.update(to_be_signed.encode('utf-8'))
|
||||||
|
sig = base64.b64encode(signer.sign(digest))
|
||||||
|
options['signatureValue'] = sig.decode('utf-8')
|
60
utils/object_service.py
Normal file
60
utils/object_service.py
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
import requests
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
|
|
||||||
|
class ObjectService(object):
|
||||||
|
def __init__(self, user_agent, col, inbox, outbox, instances):
|
||||||
|
self._user_agent = user_agent
|
||||||
|
self._col = col
|
||||||
|
self._inbox = inbox
|
||||||
|
self._outbox = outbox
|
||||||
|
self._instances = instances
|
||||||
|
self._known_instances = set()
|
||||||
|
|
||||||
|
def _fetch_remote(self, object_id):
|
||||||
|
print(f'fetch remote {object_id}')
|
||||||
|
resp = requests.get(object_id, headers={
|
||||||
|
'Accept': 'application/activity+json',
|
||||||
|
'User-Agent': self._user_agent,
|
||||||
|
})
|
||||||
|
resp.raise_for_status()
|
||||||
|
return resp.json()
|
||||||
|
|
||||||
|
def _fetch(self, object_id):
|
||||||
|
instance = urlparse(object_id)._replace(path='', query='', fragment='').geturl()
|
||||||
|
if instance not in self._known_instances:
|
||||||
|
self._known_instances.add(instance)
|
||||||
|
if not self._instances.find_one({'instance': instance}):
|
||||||
|
self._instances.insert({'instance': instance, 'first_object': object_id})
|
||||||
|
|
||||||
|
obj = self._inbox.find_one({'$or': [{'remote_id': object_id}, {'type': 'Create', 'activity.object.id': object_id}]})
|
||||||
|
if obj:
|
||||||
|
if obj['remote_id'] == object_id:
|
||||||
|
return obj['activity']
|
||||||
|
return obj['activity']['object']
|
||||||
|
|
||||||
|
obj = self._outbox.find_one({'$or': [{'remote_id': object_id}, {'type': 'Create', 'activity.object.id': object_id}]})
|
||||||
|
if obj:
|
||||||
|
if obj['remote_id'] == object_id:
|
||||||
|
return obj['activity']
|
||||||
|
return obj['activity']['object']
|
||||||
|
|
||||||
|
return self._fetch_remote(object_id)
|
||||||
|
|
||||||
|
def get(self, object_id, reload_cache=False, part_of_stream=False, announce_published=None):
|
||||||
|
if reload_cache:
|
||||||
|
obj = self._fetch(object_id)
|
||||||
|
self._col.update({'object_id': object_id}, {'$set': {'cached_object': obj, 'meta.part_of_stream': part_of_stream, 'meta.announce_published': announce_published}}, upsert=True)
|
||||||
|
return obj
|
||||||
|
|
||||||
|
cached_object = self._col.find_one({'object_id': object_id})
|
||||||
|
if cached_object:
|
||||||
|
print(f'ObjectService: {cached_object}')
|
||||||
|
return cached_object['cached_object']
|
||||||
|
|
||||||
|
obj = self._fetch(object_id)
|
||||||
|
|
||||||
|
self._col.update({'object_id': object_id}, {'$set': {'cached_object': obj, 'meta.part_of_stream': part_of_stream, 'meta.announce_published': announce_published}}, upsert=True)
|
||||||
|
# print(f'ObjectService: {obj}')
|
||||||
|
|
||||||
|
return obj
|
46
utils/opengraph.py
Normal file
46
utils/opengraph.py
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
|
import ipaddress
|
||||||
|
import opengraph
|
||||||
|
import requests
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
|
from .urlutils import is_url_valid
|
||||||
|
|
||||||
|
|
||||||
|
def links_from_note(note):
|
||||||
|
tags_href= set()
|
||||||
|
for t in note.get('tag', []):
|
||||||
|
h = t.get('href')
|
||||||
|
if h:
|
||||||
|
# TODO(tsileo): fetch the URL for Actor profile, type=mention
|
||||||
|
tags_href.add(h)
|
||||||
|
|
||||||
|
links = set()
|
||||||
|
soup = BeautifulSoup(note['content'])
|
||||||
|
for link in soup.find_all('a'):
|
||||||
|
h = link.get('href')
|
||||||
|
if h.startswith('http') and h not in tags_href and is_url_valid(h):
|
||||||
|
links.add(h)
|
||||||
|
|
||||||
|
return links
|
||||||
|
|
||||||
|
|
||||||
|
def fetch_og_metadata(user_agent, col, remote_id):
|
||||||
|
doc = col.find_one({'remote_id': remote_id})
|
||||||
|
if not doc:
|
||||||
|
raise ValueError
|
||||||
|
note = doc['activity']['object']
|
||||||
|
print(note)
|
||||||
|
links = links_from_note(note)
|
||||||
|
if not links:
|
||||||
|
return 0
|
||||||
|
# FIXME(tsileo): set the user agent by giving HTML directly to OpenGraph
|
||||||
|
htmls = []
|
||||||
|
for l in links:
|
||||||
|
r = requests.get(l, headers={'User-Agent': user_agent})
|
||||||
|
r.raise_for_status()
|
||||||
|
htmls.append(r.text)
|
||||||
|
links_og_metadata = [dict(opengraph.OpenGraph(html=html)) for html in htmls]
|
||||||
|
col.update_one({'remote_id': remote_id}, {'$set': {'meta.og_metadata': links_og_metadata}})
|
||||||
|
return len(links)
|
27
utils/urlutils.py
Normal file
27
utils/urlutils.py
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
import logging
|
||||||
|
import socket
|
||||||
|
import ipaddress
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
def is_url_valid(url):
|
||||||
|
parsed = urlparse(url)
|
||||||
|
if parsed.scheme not in ['http', 'https']:
|
||||||
|
return False
|
||||||
|
|
||||||
|
if parsed.hostname in ['localhost']:
|
||||||
|
return False
|
||||||
|
|
||||||
|
try:
|
||||||
|
ip_address = socket.getaddrinfo(parsed.hostname, parsed.port or 80)[0][4][0]
|
||||||
|
except socket.gaierror:
|
||||||
|
logger.exception(f'failed to lookup url {url}')
|
||||||
|
return False
|
||||||
|
|
||||||
|
if ipaddress.ip_address(ip_address).is_private:
|
||||||
|
logger.info(f'rejecting private URL {url}')
|
||||||
|
return False
|
||||||
|
|
||||||
|
return True
|
63
utils/webfinger.py
Normal file
63
utils/webfinger.py
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
from typing import Optional
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
|
import requests
|
||||||
|
|
||||||
|
def get_remote_follow_template(resource: str) -> Optional[str]:
|
||||||
|
"""Mastodon-like WebFinger resolution to retrieve the activity stream Actor URL.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
the Actor URL or None if the resolution failed.
|
||||||
|
"""
|
||||||
|
if resource.startswith('http'):
|
||||||
|
host = urlparse(resource).netloc
|
||||||
|
else:
|
||||||
|
if resource.startswith('acct:'):
|
||||||
|
resource = resource[5:]
|
||||||
|
if resource.startswith('@'):
|
||||||
|
resource = resource[1:]
|
||||||
|
_, host = resource.split('@', 1)
|
||||||
|
resource='acct:'+resource
|
||||||
|
resp = requests.get(
|
||||||
|
f'https://{host}/.well-known/webfinger',
|
||||||
|
{'resource': resource}
|
||||||
|
)
|
||||||
|
print(resp, resp.request.url)
|
||||||
|
if resp.status_code == 404:
|
||||||
|
return None
|
||||||
|
resp.raise_for_status()
|
||||||
|
data = resp.json()
|
||||||
|
for link in data['links']:
|
||||||
|
if link.get('rel') == 'http://ostatus.org/schema/1.0/subscribe':
|
||||||
|
return link.get('template')
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def get_actor_url(resource: str) -> Optional[str]:
|
||||||
|
"""Mastodon-like WebFinger resolution to retrieve the activity stream Actor URL.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
the Actor URL or None if the resolution failed.
|
||||||
|
"""
|
||||||
|
if resource.startswith('http'):
|
||||||
|
host = urlparse(resource).netloc
|
||||||
|
else:
|
||||||
|
if resource.startswith('acct:'):
|
||||||
|
resource = resource[5:]
|
||||||
|
if resource.startswith('@'):
|
||||||
|
resource = resource[1:]
|
||||||
|
_, host = resource.split('@', 1)
|
||||||
|
resource='acct:'+resource
|
||||||
|
resp = requests.get(
|
||||||
|
f'https://{host}/.well-known/webfinger',
|
||||||
|
{'resource': resource}
|
||||||
|
)
|
||||||
|
print(resp, resp.request.url)
|
||||||
|
if resp.status_code == 404:
|
||||||
|
return None
|
||||||
|
resp.raise_for_status()
|
||||||
|
data = resp.json()
|
||||||
|
for link in data['links']:
|
||||||
|
if link.get('rel') == 'self' and link.get('type') == 'application/activity+json':
|
||||||
|
return link.get('href')
|
||||||
|
return None
|
Loading…
Reference in a new issue