From e4d7e36b088d3c50238ea37a2bdd885bb99d8928 Mon Sep 17 00:00:00 2001 From: VnPower Date: Mon, 1 Jan 2024 19:31:31 +0700 Subject: [PATCH] Init --- LICENSE | 622 ++++++++++++++ core/config/config.go | 123 +++ core/config/session.go | 31 + core/http/request.go | 81 ++ core/http/url.go | 8 + core/webapi/artwork.go | 3 + core/webapi/newest.go | 58 ++ go.mod | 29 + go.sum | 81 ++ main.go | 103 +++ pages/about.go | 17 + pages/newest.go | 22 + serve/server.go | 54 ++ serve/template.go | 201 +++++ views/assets/about.svg | 1 + views/assets/calendar.png | Bin 0 -> 303 bytes views/assets/circlems.svg | 38 + views/assets/cog.svg | 1 + views/assets/compass.png | Bin 0 -> 1249 bytes views/assets/cross.png | Bin 0 -> 383 bytes views/assets/crown.png | Bin 0 -> 830 bytes views/assets/eye.png | Bin 0 -> 732 bytes views/assets/facebook.svg | 1 + views/assets/favicon.ico | Bin 0 -> 3782 bytes views/assets/favicon2.ico | Bin 0 -> 99878 bytes views/assets/globe.png | Bin 0 -> 1453 bytes views/assets/heart-solid.png | Bin 0 -> 577 bytes views/assets/heart.png | Bin 0 -> 569 bytes views/assets/home.svg | 1 + views/assets/instagram.svg | 1 + views/assets/like.png | Bin 0 -> 466 bytes views/assets/menu-thin.png | Bin 0 -> 125 bytes views/assets/menu.png | Bin 0 -> 159 bytes views/assets/pawoo.svg | 38 + views/assets/robots.txt | 4 + views/assets/search.png | Bin 0 -> 776 bytes views/assets/search.svg | 1 + views/assets/settings.png | Bin 0 -> 1368 bytes views/assets/sparkling.png | Bin 0 -> 903 bytes views/assets/twitter.svg | 1 + views/assets/user.png | Bin 0 -> 897 bytes views/assets/users.png | Bin 0 -> 1202 bytes views/css/style.css | 702 +++++++++++++++ views/css/style.css.map | 1 + views/css/style.scss | 809 ++++++++++++++++++ views/layout.jet.html | 105 +++ views/pages/about.jet.html | 29 + views/pages/artwork.jet.html | 139 +++ .../pages/components/small-tn-normal.jet.html | 6 + views/pages/components/small-tn.jet.html | 19 + views/pages/components/thumbnail-at.jet.html | 6 + views/pages/components/thumbnail-dt.jet.html | 12 + views/pages/components/thumbnail-tt.jet.html | 3 + views/pages/discovery.jet.html | 16 + views/pages/error.jet.html | 6 + views/pages/following.jet.html | 16 + views/pages/index.jet.html | 163 ++++ views/pages/login.jet.html | 36 + views/pages/newest.jet.html | 9 + views/pages/rank.jet.html | 80 ++ views/pages/ranking_log.jet.html | 36 + views/pages/settings.jet.html | 36 + views/pages/tag.jet.html | 78 ++ views/pages/user.jet.html | 77 ++ 64 files changed, 3904 insertions(+) create mode 100644 LICENSE create mode 100644 core/config/config.go create mode 100644 core/config/session.go create mode 100644 core/http/request.go create mode 100644 core/http/url.go create mode 100644 core/webapi/artwork.go create mode 100644 core/webapi/newest.go create mode 100644 go.mod create mode 100644 go.sum create mode 100644 main.go create mode 100644 pages/about.go create mode 100644 pages/newest.go create mode 100644 serve/server.go create mode 100644 serve/template.go create mode 100644 views/assets/about.svg create mode 100644 views/assets/calendar.png create mode 100644 views/assets/circlems.svg create mode 100644 views/assets/cog.svg create mode 100644 views/assets/compass.png create mode 100644 views/assets/cross.png create mode 100644 views/assets/crown.png create mode 100644 views/assets/eye.png create mode 100644 views/assets/facebook.svg create mode 100644 views/assets/favicon.ico create mode 100644 views/assets/favicon2.ico create mode 100644 views/assets/globe.png create mode 100644 views/assets/heart-solid.png create mode 100644 views/assets/heart.png create mode 100644 views/assets/home.svg create mode 100644 views/assets/instagram.svg create mode 100644 views/assets/like.png create mode 100644 views/assets/menu-thin.png create mode 100644 views/assets/menu.png create mode 100644 views/assets/pawoo.svg create mode 100644 views/assets/robots.txt create mode 100644 views/assets/search.png create mode 100644 views/assets/search.svg create mode 100644 views/assets/settings.png create mode 100644 views/assets/sparkling.png create mode 100644 views/assets/twitter.svg create mode 100644 views/assets/user.png create mode 100644 views/assets/users.png create mode 100644 views/css/style.css create mode 100644 views/css/style.css.map create mode 100644 views/css/style.scss create mode 100644 views/layout.jet.html create mode 100644 views/pages/about.jet.html create mode 100644 views/pages/artwork.jet.html create mode 100644 views/pages/components/small-tn-normal.jet.html create mode 100644 views/pages/components/small-tn.jet.html create mode 100644 views/pages/components/thumbnail-at.jet.html create mode 100644 views/pages/components/thumbnail-dt.jet.html create mode 100644 views/pages/components/thumbnail-tt.jet.html create mode 100644 views/pages/discovery.jet.html create mode 100644 views/pages/error.jet.html create mode 100644 views/pages/following.jet.html create mode 100644 views/pages/index.jet.html create mode 100644 views/pages/login.jet.html create mode 100644 views/pages/newest.jet.html create mode 100644 views/pages/rank.jet.html create mode 100644 views/pages/ranking_log.jet.html create mode 100644 views/pages/settings.jet.html create mode 100644 views/pages/tag.jet.html create mode 100644 views/pages/user.jet.html diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6994c29 --- /dev/null +++ b/LICENSE @@ -0,0 +1,622 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + 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 + +PixivFE: a privacy respecting frontend for Pixiv +Copyright (C) 2023-2024 VnPower \ No newline at end of file diff --git a/core/config/config.go b/core/config/config.go new file mode 100644 index 0000000..e86c832 --- /dev/null +++ b/core/config/config.go @@ -0,0 +1,123 @@ +package core + +import ( + "log" + "time" + "os" + "errors" +) + +var GlobalServerConfig ServerConfig + +type ServerConfig struct { + // Required + Token string + ProxyServer string + + // One of two is required + Port string + UnixSocket string + + BaseURL string + UserAgent string + AcceptLanguage string + + StartingTime string + Version string +} + +func (s *ServerConfig) InitializeConfig() error { + token, hasToken := os.LookupEnv("PIXIVFE_TOKEN") + if !hasToken { + log.Fatalln("PIXIVFE_TOKEN is required, but was not set.") + return errors.New("PIXIVFE_TOKEN is required, but was not set.\n") + } + s.SetToken(token) + + proxyServer, hasProxyServer := os.LookupEnv("PIXIVFE_IMAGEPROXY") + if !hasProxyServer { + log.Fatalln("PIXIVFE_IMAGEPROXY is required, but was not set.") + return errors.New("PIXIVFE_IMAGEPROXY is required, but was not set.\n") + } + s.SetProxyServer(proxyServer) + + port, hasPort := os.LookupEnv("PIXIVFE_PORT") + if hasPort { + s.SetPort(port) + } + + socket, hasSocket := os.LookupEnv("PIXIVFE_UNIXSOCKET") + if hasSocket { + s.SetUnixSocket(socket) + } + + if !hasPort && !hasSocket { + log.Fatalln("Either PIXIVFE_PORT or PIXIVFE_UNIXSOCKET has to be set.") + return errors.New("Either PIXIVFE_PORT or PIXIVFE_UNIXSOCKET has to be set.") + } + + // Not required + s.SetBaseURL(os.Getenv("PIXIVFE_BASEURL")) + + userAgent, hasUserAgent := os.LookupEnv("PIXIVFE_USERAGENT") + if !hasUserAgent { + userAgent = "Mozilla/5.0" + } + s.SetUserAgent(userAgent) + + acceptLanguage, hasAcceptLanguage := os.LookupEnv("PIXIVFE_ACCEPTLANGUAGE") + if !hasAcceptLanguage { + userAgent = "Mozilla/5.0" + } + s.SetAcceptLanguage(acceptLanguage) + + s.setStartingTime() + s.setVersion() + + return nil +} + +func (s *ServerConfig) SetToken(v string) { + s.Token = v + log.Printf("Set token to: %s\n", v) +} + +func (s *ServerConfig) SetBaseURL(v string) { + s.BaseURL = v + log.Printf("Set base URL to: %s\n", v) +} + +func (s *ServerConfig) SetProxyServer(v string) { + s.ProxyServer = v + log.Printf("Set image proxy server to: %s\n", v) +} + +func (s *ServerConfig) SetPort(v string) { + s.Port = v + log.Printf("Set TCP port to: %s\n", v) +} + +func (s *ServerConfig) SetUnixSocket(v string) { + s.UnixSocket = v + log.Printf("Set UNIX socket path to: %s\n", v) +} + +func (s *ServerConfig) SetUserAgent(v string) { + s.UserAgent = v + log.Printf("Set user agent to: %s\n", v) +} + +func (s *ServerConfig) SetAcceptLanguage(v string) { + s.AcceptLanguage = v + log.Printf("Set Accept-Language header to: %s\n", v) +} + +func (s *ServerConfig) setStartingTime() { + s.StartingTime = time.Now().UTC().Format("2006-01-02 15:04") + log.Printf("Set starting time to: %s\n", s.StartingTime) +} + +func (s *ServerConfig) setVersion() { + s.Version = "v2.0.0" + log.Printf("Set server version to: %s\n", s.Version) +} diff --git a/core/config/session.go b/core/config/session.go new file mode 100644 index 0000000..03610d3 --- /dev/null +++ b/core/config/session.go @@ -0,0 +1,31 @@ +package core + +import ( + "log" + "time" + + "github.com/gofiber/fiber/v2" + "github.com/gofiber/fiber/v2/middleware/session" +) + +var Store *session.Store + +func SetupStorage() { + Store = session.New(session.Config{ + Expiration: time.Hour * 24 * 30, + }) +} + +func GetImageProxy(c *fiber.Ctx) string { + sess, err := Store.Get(c) + if err != nil { + log.Fatalln("Failed to get current session and its values! Falling back to server default!") + return GlobalServerConfig.ProxyServer + } + value := sess.Get("ImageProxy") + if value != nil { + return value.(string) + } + + return GlobalServerConfig.ProxyServer +} diff --git a/core/http/request.go b/core/http/request.go new file mode 100644 index 0000000..830ea87 --- /dev/null +++ b/core/http/request.go @@ -0,0 +1,81 @@ +package core + +import ( + "errors" + "fmt" + "io" + "net/http" + + core "codeberg.org/vnpower/pixivfe/v2/core/config" + "github.com/tidwall/gjson" +) + +type HttpResponse struct { + Ok bool + StatusCode int + + Body string + Message string +} + +func WebAPIRequest(URL string) HttpResponse { + req, _ := http.NewRequest("GET", URL, nil) + + req.Header.Add("User-Agent", core.GlobalServerConfig.UserAgent) + req.Header.Add("Accept-Language", core.GlobalServerConfig.AcceptLanguage) + + req.AddCookie(&http.Cookie{ + Name: "PHPSESSID", + Value: core.GlobalServerConfig.Token, + }) + + // Make the request + resp, err := http.DefaultClient.Do(req) + + if err != nil { + return HttpResponse{ + Ok: false, + StatusCode: 0, + Body: "", + Message: fmt.Sprintf("Failed to create a request to %s\n.", URL), + } + } + + body, err := io.ReadAll(resp.Body) + if err != nil { + return HttpResponse{ + Ok: false, + StatusCode: 0, + Body: "", + Message: fmt.Sprintln("Failed to parse request data."), + } + } + + return HttpResponse{ + Ok: true, + StatusCode: resp.StatusCode, + Body: string(body), + Message: "", + } +} + +func UnwrapWebAPIRequest(URL string) (string, error) { + resp := WebAPIRequest(URL) + + if !resp.Ok { + return "", errors.New(resp.Message) + } + + err := gjson.Get(resp.Body, "error") + + if !err.Exists() { + return "", errors.New("Incompatible request body.") + } + + if err.Bool() { + return "", errors.New(gjson.Get(resp.Body, "message").String()) + } + + return gjson.Get(resp.Body, "body").String(), nil +} + diff --git a/core/http/url.go b/core/http/url.go new file mode 100644 index 0000000..4b3930c --- /dev/null +++ b/core/http/url.go @@ -0,0 +1,8 @@ +package core + +import "fmt" + +func GetNewestArtworksURL(worktype, r18, lastID string) string { + base := "https://www.pixiv.net/ajax/illust/new?limit=30&type=%s&r18=%s&lastId=%s" + return fmt.Sprintf(base, worktype, r18, lastID) +} diff --git a/core/webapi/artwork.go b/core/webapi/artwork.go new file mode 100644 index 0000000..0784684 --- /dev/null +++ b/core/webapi/artwork.go @@ -0,0 +1,3 @@ +package core + + diff --git a/core/webapi/newest.go b/core/webapi/newest.go new file mode 100644 index 0000000..843a8c4 --- /dev/null +++ b/core/webapi/newest.go @@ -0,0 +1,58 @@ +package core + +import ( + "html/template" + "time" + "strings" + + session "codeberg.org/vnpower/pixivfe/v2/core/config" + http "codeberg.org/vnpower/pixivfe/v2/core/http" + "github.com/goccy/go-json" + "github.com/gofiber/fiber/v2" +) + +type ArtworkBrief struct { + ID string `json:"id"` + Title string `json:"title"` + Description template.HTML `json:"description"` + ArtistID string `json:"userId"` + ArtistName string `json:"userName"` + ArtistAvatar string `json:"profileImageUrl"` + Date time.Time `json:"uploadDate"` + Thumbnail string `json:"url"` + Pages int `json:"pageCount"` + XRestrict int `json:"xRestrict"` + AiType int `json:"aiType"` +} + +func ProxyImages(s, proxy string) string { + proxy = "https://" + proxy + s = strings.ReplaceAll(s, `https:\/\/i.pximg.net`, proxy) + s = strings.ReplaceAll(s, `https:\/\/s.pximg.net`, proxy) + + return s +} + +func GetNewestArtworks(c *fiber.Ctx, worktype string, r18 string) ([]ArtworkBrief, error) { + imageProxy := session.GetImageProxy(c) + URL := http.GetNewestArtworksURL(worktype, r18, "0") + + var body struct { + Artworks []ArtworkBrief `json:"illusts"` + // LastId string + } + + resp, err := http.UnwrapWebAPIRequest(URL) + if err != nil { + return nil, err + } + + resp = ProxyImages(resp, imageProxy) + + err = json.Unmarshal([]byte(resp), &body) + if err != nil { + return nil, err + } + + return body.Artworks, nil +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..19b8857 --- /dev/null +++ b/go.mod @@ -0,0 +1,29 @@ +module codeberg.org/vnpower/pixivfe/v2 + +go 1.21 + +require ( + github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 // indirect + github.com/CloudyKit/jet/v6 v6.2.0 // indirect + github.com/andybalholm/brotli v1.0.6 // indirect + github.com/goccy/go-json v0.10.2 // indirect + github.com/gofiber/fiber/v2 v2.51.0 // indirect + github.com/gofiber/template v1.8.2 // indirect + github.com/gofiber/template/jet/v2 v2.1.6 // indirect + github.com/gofiber/utils v1.1.0 // indirect + github.com/google/uuid v1.5.0 // indirect + github.com/klauspost/compress v1.17.4 // indirect + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/mattn/go-runewidth v0.0.15 // indirect + github.com/philhofer/fwd v1.1.2 // indirect + github.com/rivo/uniseg v0.4.4 // indirect + github.com/tidwall/gjson v1.17.0 // indirect + github.com/tidwall/match v1.1.1 // indirect + github.com/tidwall/pretty v1.2.1 // indirect + github.com/tinylib/msgp v1.1.8 // indirect + github.com/valyala/bytebufferpool v1.0.0 // indirect + github.com/valyala/fasthttp v1.51.0 // indirect + github.com/valyala/tcplisten v1.0.0 // indirect + golang.org/x/sys v0.15.0 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..8d0aeca --- /dev/null +++ b/go.sum @@ -0,0 +1,81 @@ +github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 h1:sR+/8Yb4slttB4vD+b9btVEnWgL3Q00OBTzVT8B9C0c= +github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53/go.mod h1:+3IMCy2vIlbG1XG/0ggNQv0SvxCAIpPM5b1nCz56Xno= +github.com/CloudyKit/jet/v6 v6.2.0 h1:EpcZ6SR9n28BUGtNJSvlBqf90IpjeFr36Tizxhn/oME= +github.com/CloudyKit/jet/v6 v6.2.0/go.mod h1:d3ypHeIRNo2+XyqnGA8s+aphtcVpjP5hPwP/Lzo7Ro4= +github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI= +github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= +github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= +github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/gofiber/fiber/v2 v2.51.0 h1:JNACcZy5e2tGApWB2QrRpenTWn0fq0hkFm6k0C86gKQ= +github.com/gofiber/fiber/v2 v2.51.0/go.mod h1:xaQRZQJGqnKOQnbQw+ltvku3/h8QxvNi8o6JiJ7Ll0U= +github.com/gofiber/template v1.8.2 h1:PIv9s/7Uq6m+Fm2MDNd20pAFFKt5wWs7ZBd8iV9pWwk= +github.com/gofiber/template v1.8.2/go.mod h1:bs/2n0pSNPOkRa5VJ8zTIvedcI/lEYxzV3+YPXdBvq8= +github.com/gofiber/template/jet/v2 v2.1.6 h1:PdNovaGkkMhygGW3NFHPgiq3PtMQxllvGlcUX+MsTok= +github.com/gofiber/template/jet/v2 v2.1.6/go.mod h1:zxeIxxUeD/TMVGlvuxTSyZpSNsT2zGMfOS4SuJ6Z0Q0= +github.com/gofiber/utils v1.1.0 h1:vdEBpn7AzIUJRhe+CiTOJdUcTg4Q9RK+pEa0KPbLdrM= +github.com/gofiber/utils v1.1.0/go.mod h1:poZpsnhBykfnY1Mc0KeEa6mSHrS3dV0+oBWyeQmb2e0= +github.com/google/uuid v1.5.0 h1:1p67kYwdtXjb0gL0BPiP1Av9wiZPo5A8z2cWkTZ+eyU= +github.com/google/uuid v1.5.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4= +github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U= +github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/philhofer/fwd v1.1.2 h1:bnDivRJ1EWPjUIRXV5KfORO897HTbpFAQddBdE8t7Gw= +github.com/philhofer/fwd v1.1.2/go.mod h1:qkPdfjR2SIEbspLqpe1tO4n5yICnr2DY7mqEx2tUTP0= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= +github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= +github.com/tidwall/gjson v1.17.0 h1:/Jocvlh98kcTfpN2+JzGQWQcqrPQwDrVEMApx/M5ZwM= +github.com/tidwall/gjson v1.17.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= +github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA= +github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= +github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= +github.com/tidwall/pretty v1.2.1 h1:qjsOFOWWQl+N3RsoF5/ssm1pHmJJwhjlSbZ51I6wMl4= +github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= +github.com/tinylib/msgp v1.1.8 h1:FCXC1xanKO4I8plpHGH2P7koL/RzZs12l/+r7vakfm0= +github.com/tinylib/msgp v1.1.8/go.mod h1:qkpG+2ldGg4xRFmx+jfTvZPxfGFhi64BcnL9vkCm/Tw= +github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= +github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= +github.com/valyala/fasthttp v1.51.0 h1:8b30A5JlZ6C7AS81RsWjYMQmrZG6feChmgAolCl1SqA= +github.com/valyala/fasthttp v1.51.0/go.mod h1:oI2XroL+lI7vdXyYoQk03bXBThfFl2cVdIA3Xl7cH8g= +github.com/valyala/tcplisten v1.0.0 h1:rBHj/Xf+E1tRGZyWIWwJDiRY0zc1Js+CV5DqwacVSA8= +github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.3.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.4.0/go.mod h1:UE5sM2OK9E/d67R0ANs2xJizIymRP5gJU295PvKXxjQ= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= diff --git a/main.go b/main.go new file mode 100644 index 0000000..3a453c3 --- /dev/null +++ b/main.go @@ -0,0 +1,103 @@ +package main + +import ( + "log" + "time" + + config "codeberg.org/vnpower/pixivfe/v2/core/config" + "codeberg.org/vnpower/pixivfe/v2/pages" + "codeberg.org/vnpower/pixivfe/v2/serve" + "github.com/goccy/go-json" + "github.com/gofiber/fiber/v2" + "github.com/gofiber/fiber/v2/middleware/cache" + "github.com/gofiber/fiber/v2/middleware/compress" + "github.com/gofiber/fiber/v2/middleware/logger" + "github.com/gofiber/fiber/v2/middleware/recover" + "github.com/gofiber/fiber/v2/utils" + "github.com/gofiber/template/jet/v2" +) + +func main() { + config.SetupStorage() + config.GlobalServerConfig.InitializeConfig() + + engine := jet.New("./views", ".jet.html") + + engine.AddFuncMap(serve.GetTemplateFunctions()) + + server := fiber.New(fiber.Config{ + AppName: "PixivFE", + DisableStartupMessage: true, + Views: engine, + Prefork: false, + JSONEncoder: json.Marshal, + JSONDecoder: json.Unmarshal, + ViewsLayout: "layout", + EnableTrustedProxyCheck: true, + TrustedProxies: []string{"0.0.0.0/0"}, + ProxyHeader: fiber.HeaderXForwardedFor, + ErrorHandler: func(c *fiber.Ctx, err error) error { + // Status code defaults to 500 + code := fiber.StatusInternalServerError + + // // Retrieve the custom status code if it's a *fiber.Error + // var e *fiber.Error + // if errors.As(err, &e) { + // code = e.Code + // } + + // Send custom error page + err = c.Status(code).Render("pages/error", fiber.Map{"Title": "Error", "Error": err}) + if err != nil { + // In case the SendFile fails + return c.Status(fiber.StatusInternalServerError).SendString("Internal Server Error") + } + + // Return from handler + return nil + }, + }) + + server.Use(logger.New()) + server.Use(cache.New( + cache.Config{ + // Next: func(c *fiber.Ctx) bool { + // // Disable cache for settings page + // return strings.Contains(c.Path(), "/settings") || c.Path() == "/" + // }, + Expiration: 5 * time.Minute, + CacheControl: true, + + KeyGenerator: func(c *fiber.Ctx) string { + return utils.CopyString(c.OriginalURL()) + }, + }, + )) + server.Use(recover.New()) + + server.Use(compress.New(compress.Config{ + Level: compress.LevelBestSpeed, // 1 + })) + + // Global headers (from GotHub) + server.Use(func(c *fiber.Ctx) error { + c.Set("X-Frame-Options", "SAMEORIGIN") + c.Set("X-XSS-Protection", "1; mode=block") + c.Set("X-Content-Type-Options", "nosniff") + c.Set("Referrer-Policy", "no-referrer") + c.Set("Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload") + + return c.Next() + }) + + server.Static("/favicon.ico", "./views/assets/favicon.ico") + server.Static("css/", "./views/css") + server.Static("assets/", "./views/assets") + server.Static("/robots.txt", "./views/assets/robots.txt") + + server.Get("about", pages.AboutPage) + server.Get("newest", pages.NewestPage) + + log.Println("PixivFE is running.") + server.Listen(":8000") +} diff --git a/pages/about.go b/pages/about.go new file mode 100644 index 0000000..f765cb4 --- /dev/null +++ b/pages/about.go @@ -0,0 +1,17 @@ +package pages + +import ( + "codeberg.org/vnpower/pixivfe/v2/core/config" + "github.com/gofiber/fiber/v2" +) + +func AboutPage(c *fiber.Ctx) error { + info := fiber.Map{ + "Time": core.GlobalServerConfig.StartingTime, + "BaseURL": core.GlobalServerConfig.BaseURL, + "Version": core.GlobalServerConfig.Version, + "ImageProxy": core.GlobalServerConfig.ProxyServer, + "AcceptLanguage": core.GlobalServerConfig.AcceptLanguage, + } + return c.Render("pages/about", info) +} diff --git a/pages/newest.go b/pages/newest.go new file mode 100644 index 0000000..b32740a --- /dev/null +++ b/pages/newest.go @@ -0,0 +1,22 @@ +package pages + +import ( + core "codeberg.org/vnpower/pixivfe/v2/core/webapi" + "github.com/gofiber/fiber/v2" +) + +func NewestPage(c *fiber.Ctx) error { + worktype := c.Query("type", "illust") + + r18 := c.Query("r18", "false") + + works, err := core.GetNewestArtworks(c, worktype, r18) + if err != nil { + return err + } + + return c.Render("pages/newest", fiber.Map{ + "Items": works, + "Title": "Newest works", + }) +} diff --git a/serve/server.go b/serve/server.go new file mode 100644 index 0000000..73bbca4 --- /dev/null +++ b/serve/server.go @@ -0,0 +1,54 @@ +package serve + +import ( + "github.com/goccy/go-json" + "github.com/gofiber/fiber/v2" + "github.com/gofiber/fiber/v2/middleware/logger" + "github.com/gofiber/fiber/v2/middleware/cache" + "github.com/gofiber/fiber/v2/middleware/recover" + "github.com/gofiber/fiber/v2/middleware/compress" + "time" +) + +func ServerSetup() { + server := fiber.New(fiber.Config{ + AppName: "PixivFE", + DisableStartupMessage: true, + JSONEncoder: json.Marshal, + JSONDecoder: json.Unmarshal, + EnableTrustedProxyCheck: true, + TrustedProxies: []string{"0.0.0.0/0"}, + ProxyHeader: fiber.HeaderXForwardedFor, + }) + + server.Use(logger.New(logger.Config{ + Format: "[${time} | ${ip}] ${status} ${path}", + })) + + server.Use(cache.New( + cache.Config{ + Expiration: 5 * time.Minute, + CacheControl: true, + + // KeyGenerator: func(c *fiber.Ctx) string { + // return utils.CopyString(c.OriginalURL()) + // }, + }, + )) + server.Use(recover.New()) + + server.Use(compress.New(compress.Config{ + Level: compress.LevelBestSpeed, // 1 + })) + + // Global headers (from GotHub) + server.Use(func(c *fiber.Ctx) error { + c.Set("X-Frame-Options", "SAMEORIGIN") + c.Set("X-XSS-Protection", "1; mode=block") + c.Set("X-Content-Type-Options", "nosniff") + c.Set("Referrer-Policy", "no-referrer") + c.Set("Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload") + + return c.Next() + }) +} diff --git a/serve/template.go b/serve/template.go new file mode 100644 index 0000000..c30cdf1 --- /dev/null +++ b/serve/template.go @@ -0,0 +1,201 @@ +package serve + +import ( + "fmt" + "html/template" + "math/rand" + "net/url" + "regexp" + "strconv" + "time" +) + +func GetRandomColor() string { + // Some color shade I stole + colors := []string{ + // Green + "#C8847E", + "#C8A87E", + "#C8B87E", + "#C8C67E", + "#C7C87E", + "#C2C87E", + "#BDC87E", + "#82C87E", + "#82C87E", + "#7EC8AF", + "#7EAEC8", + "#7EA6C8", + "#7E99C8", + "#7E87C8", + "#897EC8", + "#967EC8", + "#AE7EC8", + "#B57EC8", + "#C87EA5", + } + + // Randomly choose one and return + return colors[rand.Intn(len(colors))] +} + +func ParseEmojis(s string) template.HTML { + emojiList := map[string]string{ + "normal": "101", + "surprise": "102", + "serious": "103", + "heaven": "104", + "happy": "105", + "excited": "106", + "sing": "107", + "cry": "108", + "normal2": "201", + "shame2": "202", + "love2": "203", + "interesting2": "204", + "blush2": "205", + "fire2": "206", + "angry2": "207", + "shine2": "208", + "panic2": "209", + "normal3": "301", + "satisfaction3": "302", + "surprise3": "303", + "smile3": "304", + "shock3": "305", + "gaze3": "306", + "wink3": "307", + "happy3": "308", + "excited3": "309", + "love3": "310", + "normal4": "401", + "surprise4": "402", + "serious4": "403", + "love4": "404", + "shine4": "405", + "sweat4": "406", + "shame4": "407", + "sleep4": "408", + "heart": "501", + "teardrop": "502", + "star": "503", + } + + regex := regexp.MustCompile(`\(([^)]+)\)`) + + parsedString := regex.ReplaceAllStringFunc(s, func(s string) string { + s = s[1 : len(s)-1] // Get the string inside + id := emojiList[s] + + return fmt.Sprintf(`(%s)`, id, s) + }) + return template.HTML(parsedString) +} + +func ParsePixivRedirect(s string) template.HTML { + regex := regexp.MustCompile(`\/jump\.php\?(http[^"]+)`) + + parsedString := regex.ReplaceAllStringFunc(s, func(s string) string { + s = s[10:] + return s + }) + escaped, err := url.QueryUnescape(parsedString) + if err != nil { + return template.HTML(s) + } + return template.HTML(escaped) +} + +func EscapeString(s string) string { + escaped := url.QueryEscape(s) + return escaped +} + +func ParseTime(date time.Time) string { + return date.Format("2006-01-02 15:04") +} + +func CreatePaginator(base, ending string, current_page, max_page int) template.HTML { + peek := 2 + limit := peek*peek + 1 + count := 0 + pages := "" + + pages += fmt.Sprintf(`«`, base, ending) + pages += fmt.Sprintf(``, base, max(1, current_page-1), ending) + + for i := current_page - peek; (i <= max_page || max_page == -1) && count < limit; i++ { + if i < 1 { + continue + } + if i == current_page { + pages += fmt.Sprintf(`%d`, base, i, ending, i) + + } else { + pages += fmt.Sprintf(`%d`, base, i, ending, i) + + } + count++ + } + + + if max_page == -1 { + pages += fmt.Sprintf(``, base, current_page+1, ending) + pages += fmt.Sprintf(`»`, base, max_page, ending) + } else { + pages += fmt.Sprintf(``, base, min(max_page, current_page+1), ending) + pages += fmt.Sprintf(`»`, base, max_page, ending) + } + + return template.HTML(pages) +} + +func GetTemplateFunctions() template.FuncMap { + return template.FuncMap{ + "toInt": func(s string) int { + n, _ := strconv.Atoi(s) + return n + }, + + "parseEmojis": func(s string) template.HTML { + return ParseEmojis(s) + }, + + "parsePixivRedirect": func(s string) template.HTML { + return ParsePixivRedirect(s) + }, + "escapeString": func(s string) string { + return EscapeString(s) + }, + + "randomColor": func() string { + return GetRandomColor() + }, + + "isEmpty": func(s string) bool { + return len(s) < 1 + }, + + "isEmphasize": func(s string) bool { + switch s { + case + "R-18", + "R-18G": + return true + } + return false + }, + "reformatDate": func(s string) string { + if len(s) != 8 { + return s + } + return fmt.Sprintf("%s-%s-%s", s[4:], s[2:4], s[:2]) + }, + "parseTime": func(date time.Time) string { + return ParseTime(date) + }, + "createPaginator": func(base, ending string, current_page, max_page int) template.HTML { + return CreatePaginator(base, ending, current_page, max_page) + }, + } +} diff --git a/views/assets/about.svg b/views/assets/about.svg new file mode 100644 index 0000000..0c57c63 --- /dev/null +++ b/views/assets/about.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/views/assets/calendar.png b/views/assets/calendar.png new file mode 100644 index 0000000000000000000000000000000000000000..0c8bc73f3e1bc84b488f5dfbce01d452c5846ed6 GIT binary patch literal 303 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC&H|6fVg?3oVGw3ym^DWNDEQFR z#WAE}&fA-gd`$)-Ef352OP1d|S`p-Y<5lgIr7EXb>zt3Y`cApv6kW29d5YijjhSat z(i&t77|$Ir+y1qxRKCjc>9#n1nVoCDM>96C1~Bn{G<9HI<7^f`IgVGvj`7yy^GENg zJ9KUQ`Q(|fg7z|o&Y4mkXa4PD?C#kpJtJj$yaq#-0?#jYnMU?iY&ySqRyCGq9WZe^ zyg;xhBBiA+o{?!Go6JJ>Rcubu8T!?_LJ5|x4bD9RHs + + + + + diff --git a/views/assets/cog.svg b/views/assets/cog.svg new file mode 100644 index 0000000..cf7e41e --- /dev/null +++ b/views/assets/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/views/assets/compass.png b/views/assets/compass.png new file mode 100644 index 0000000000000000000000000000000000000000..1b4b08bf190e0a8a56fccc7aa22c23fb015d9071 GIT binary patch literal 1249 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 O0000 \ No newline at end of file diff --git a/views/assets/favicon.ico b/views/assets/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a5e2315e26909f0568526fda5f016e5b32f6fe0f GIT binary patch literal 3782 zcmeH~O=}cE5QbaurUXIoq6Cj#{0IIn$!Y{i@DMyHmZ)ic1{RVYU7Mb*IFhnj{^!aWfbM~%upWQPuJKpm{zxHC^k?H1g8)M?Wo|f?2 z7YVR+D`2?OB~cG|}78MZgl?fJZ(uZsHRax=cCNMG6K z|GBa89fY52I;Ohy+v2X()A6I@D$d=NF6UJP@0A_HRKJ=yFCS8gWx3>s9gO*l3HZIjnA_ZotJ`WCe^=x($9Y@N zO?;+es9^m|_`Hg}v^i+MJzjjDkjwQ%uOq{@ckiQ_*QL4r^2T9)NaPdxH0$u+FIO1f zoV>yOu+hZ)etIOIWHF x!>(glJF|v9i@KeAhO^kG*gX>M9^}4^y1Dn$yiKJp-dF0p-5(D6O4cTr{{YJ(X{G=G literal 0 HcmV?d00001 diff --git a/views/assets/favicon2.ico b/views/assets/favicon2.ico new file mode 100644 index 0000000000000000000000000000000000000000..77dc9698e38d135a9c9511cca5a014b8cd7f2994 GIT binary patch literal 99878 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 Hu0mjfJg35p literal 0 HcmV?d00001 diff --git a/views/assets/heart-solid.png b/views/assets/heart-solid.png new file mode 100644 index 0000000000000000000000000000000000000000..0b36266fe1ce97e018b625e4b20672230eb19458 GIT binary patch literal 577 zcmV-H0>1r;P)&c^RlJ~LBPbd#U|}H^3c*4kwkp4tCj z*vrfoMMppN;F<>jcwr!3tDO1&dMVx5cUfroBuC*wCwU&Hoe(M84$d@7xHWcv*2O5T;7gv(^T6&9UUDVMI-zL(T-7Hs5U3D P00000NkvXXu0mjftiAl? literal 0 HcmV?d00001 diff --git a/views/assets/heart.png b/views/assets/heart.png new file mode 100644 index 0000000000000000000000000000000000000000..3010dd4f0c23e5c65fe02463ead974ffdd29d6e5 GIT binary patch literal 569 zcmV-90>=G`P)q$gGRCt{2l}}3+Q541}GX=4?e6>xQ{UQ7eE^Mi5rSc2pLWRiB zAY@zpAk`v4Q5S+){sAo$OYnas3fihbA^FM4=Y@;iaprYqaN`4)8Rk6adG5J$?>#|q ziHihq1$YX)1%3htzy>e`v;(CMw^ZMT#5qvT8{mm)#Wk%5ra2oEz-^!wcpt%?0`9~y z-ByClzSEL`YkKwo`-*?lFzf*@PI0?{O~toE&4Ci9(orB6!m9x$orJV-Y7!&WK zciHt%3zd3J9qx5tMx!!?7DlGIRzh1L&6aYhTcIqM<$m<9pKn;R_xrSeAit zxwH>`!QBiizANn=UvNahXBilGNPE~9v~y@!h<)3{Gqq#-McU7Oggo#^gw_;|+obs$ zs0t(XiL?wp-V+ZmMw@7J(Z@nHHc%zbc`* zv&=0fj$y@egCyXjsjo}WR-neisRCxj*#hn-GA#gj=$L \ No newline at end of file diff --git a/views/assets/instagram.svg b/views/assets/instagram.svg new file mode 100644 index 0000000..8eaa62a --- /dev/null +++ b/views/assets/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/views/assets/like.png b/views/assets/like.png new file mode 100644 index 0000000000000000000000000000000000000000..96b30d8c3e15a255dadb919dc85f42fee52de452 GIT binary patch literal 466 zcmV;@0WJQCP)9jYZTI44TGZkw*qrggCQ%Cc2yNz&!OCc;7k0oS%rnU@#N7 zhbLIWV$=k8aO{tFSczI-)8D?}a?}9Z+HFR5Si;Ya0`H@e@4w4YWQT{H@fk&CxQ)XJ z1-2tAT*GIRy^M@-Vf?S3=0RkG^Vm`5W@Lgzye$m>0Sl1@7Vu2DjmQM|^>b^UpT%Q* z#D4SU+IExJH6Mp~h3lmSn!r=1zgbny*H>IADbT$2llEK2orUKm1zII3@U8X&h62Bx z(F7dCG+j@Yj+?Qq+6%1KTwsKAH5XW)8a{D>BV4Mvz|*4eNedj~M$HA@6o*e*;BL(Y z_Ie*flNDI&6+T&kQPIMcxWIbv@I4DmxS ze=6QKOt@Cr7|%rKwaR$xGG5^Oe+YiiT>j$fslyKjgF(#OFGWsoOw5)8CIA2c07*qo IM6N<$f?dSU#sB~S literal 0 HcmV?d00001 diff --git a/views/assets/menu-thin.png b/views/assets/menu-thin.png new file mode 100644 index 0000000000000000000000000000000000000000..0862f07f333e15e38ac65d8ee6606221d8a4f705 GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=1|;R|J2nC-&H|6fVg?3oVGw3ym^DWND5&r0 z;uumf=j}m9K?VZ>=7nGLt)^c1&l|wt@V2AOg@NJ2R^?lQj0^{^_hq=VFkE3aUbec| T+plCdP%DF{tDnm{r-UW|l-D6c literal 0 HcmV?d00001 diff --git a/views/assets/menu.png b/views/assets/menu.png new file mode 100644 index 0000000000000000000000000000000000000000..9c5bd617458d86b34f7c08c0ae75f865ca0c103e GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=1|;R|J2nC-&H|6fVg?3oVGw3ym^DWNC>ZGJ z;uumf=k1L~&I1lShaGzFoxQ5cb>H0T1P7a-$D}z6?6}*N3t0LN2%hP&^_&!N>^~on zZP9f3XY4U`&rho1awQ->lY2qclGK_>1)IgS4Rar)FK7J>G@QZH)z4*}Q$iB}=-M&) literal 0 HcmV?d00001 diff --git a/views/assets/pawoo.svg b/views/assets/pawoo.svg new file mode 100644 index 0000000..88eb08c --- /dev/null +++ b/views/assets/pawoo.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/views/assets/robots.txt b/views/assets/robots.txt new file mode 100644 index 0000000..d6b3772 --- /dev/null +++ b/views/assets/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: / +User-agent: DataForSeoBot +Disallow: / diff --git a/views/assets/search.png b/views/assets/search.png new file mode 100644 index 0000000000000000000000000000000000000000..6bc0e5ec95ef569f00d32fccfbe42dee63640795 GIT binary patch literal 776 zcmV+j1NZ!iP)LxTtDjkPowz+|pc~d{d+Pat1km z;1w_ji~%{|h+c9(4%`H)`rZg@z==+oC<5O!kng|}Fc9#0F}4hBDaR%-oov)G0E^zY zxe5%q0|FQZ${ydsLAine+*85ddf#Wndjt5@7Be)K6Dl~F0RNO{reMwQCw7z*cM=h4 z=#;#i8BIbUs!prst@Vb68FHIs0)80_+Sqn00@&t1x(S>Q>QtgKpWYWb7#!R9M z)1FZ6w-#j5iqp>g@U-)){n>(STgm!Oq6^bLs@gw$#mHu_EUk~0$v$opU6}S6)!yip z^83JoOoj=9s!4QV+OJjnqSZQ$T9m`L3gInE4LD{+D$@?ZvI${pnk%YVwj@2Rq(3^) z#-Fk#k6QV%)j55SgVj^jdX|L1s2)EBC3AtlI`gU_lgYuPM5a|l1_VvOmD2wRVhT?geC=$ILSjBI4u5%{-)91otv zo6$YY6kNNY%VidL1iaG{x~-erC*TcmUzg>;KGm_aW{l^+wI*h+xE?Z7bZG-UW@hq# zFf-#)YGx-hlad0k=+X$_lDEw6x-^4E&a~(6> \ No newline at end of file diff --git a/views/assets/settings.png b/views/assets/settings.png new file mode 100644 index 0000000000000000000000000000000000000000..7de204a3bc2b4e597934deac662ab77870e0eb48 GIT binary patch literal 1368 zcmV-e1*iInP) z`<(NgDX09yFdyGqdtLT9Ywfkx{*vS*{s#aa2M%*QMu3&cSOL&aK0Zsv0)RH)2rvXp z@V-Ay-wy*5lM@}lqP(34eh_W$zhhl;)QAg!dw{7CzT0K&3mLT6MY|~?V=Ax$IKK|t zeZdz4yJf_$z;yxMC&YJu2JKPN9ty0#8u(d!7HhNWa$=U}#9sZkcYOmeImO!m-WAXF z8M1B>?M**^M4O~dFxiHEo--HK>BRdA*j2zmefK%g3CskZ0)F$d({Vd#vEkA8$nXwe z4$$YN=+#OZA2#g_a9+xZ7LV2id@b6Llp78K?*X?3wvRMCXX$0#PGa5g$%xS*m_srVfD< zf$b9baxGRC)BB=yewi{sN0RMboBk+Y%>!3c{ zck>IZpRU+EP$m-=apW28(Ao&!B&AeyIuAzcHQtDw-XXaO z=vErHzlFeN@7&lHat4?!J`4EqRSZ8JxI!ne)l(ly;9HS(_9P5H0hdJ19oKmEMr7^~ z-`l`?9n#%d2dBSiU7)kGa^l8FOdQga$aNy+%&^vU2Kep@yrQ;Yk7X@#J@y~Krz#n& zKwN6U7ctC&*sw9?gtx}x#IT`23vq+B1xm>~v|)zBSqmIW=WO6ht?eqY#$v{>v*Ouy z6j?-vaTNqxzBja%SYt(}VW5J(an9Jf9T}+Li1izWeWT?_TNAHVcZDHEl~=1RWcT@EY))*OZN9Em&zI9PhyLVGD0AkbZ6L zf&xxl3jA3h{oYMBhGpx$v5e5^?ZP_+4@8$v`$Nvi3D-hzDtI8i;k_O6Dh>ElqU=?P za#nz^;gu-Ea%_>ZQ>&_lEqW4&w=rrZN;3tV>aE^L(KwzfsJjn0tf$1&CPcPUoPhHI+|nWp)y;l7Bn+_YS9K({zR zUo9JciCt;r39!2m!|yqx%qiZ;W>EKr=ai5?LxXQuNxYPm5mi^YTYwc+9GUKQj34-w zt?n@Ty++I*V%xy`)_~kQGKSc$4d^%7sW>s+t|P2=@ngke%9(bZ1+JUiE}jc@5V~sx zGjc}Ge9U2w`tWll!wmu5-AjAQiKg#Jd}rKQVga}&RAEe#&3$j6!+QmqD|p$S^NC(ZR6+-w|cA@niM}0|u{g8oNK?@TQh|KdQ-ZPfsHG a@8B;Uo)z>|5E&!@0000V)fSp)c zz#2Orm5)w4#n8BDfYEjosLj?%r@a;rthpuQwF0&Yq9QFALj z*OG|cs$zj2rF#J1?xEjA|nOy#)Og!XjoRpo2?0x7KnJ$5g0xmW3Pwe!Fw@lR_!qw!#H1Dr$MN?vsg+o<$8Wj>aSA&rMMei+<+W zy;^7ktQ8+u(imYms)FH-zc)}|PtEisZKYb{uI%HX@8^>A4$6#8y;z}gP0*iJE=&)B=5^=0kv zFI-1F^gRfEwJVjKlF)bHo@9=A^EWhqCkpg^hwgVy^QS|cQ#$&tm|5}eBbH**!0wC& zeOER!8rIlStENIHZxCaocIfwWf>U!)?KSGmJ`uz0XO- zt3{PB6^(CD)obo^5}2$7*L@~zEAAZNqKQk<{J*eF9BbE!t%`0mn#4-v#Ig3Od%e^z dPPa-TqkqOjIeZ)+x-tL&002ovPDHLkV1h2Bvo-(# literal 0 HcmV?d00001 diff --git a/views/assets/twitter.svg b/views/assets/twitter.svg new file mode 100644 index 0000000..a274e0a --- /dev/null +++ b/views/assets/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/views/assets/user.png b/views/assets/user.png new file mode 100644 index 0000000000000000000000000000000000000000..4ce3c57f9611b622887223b6f08ef292c7b1e314 GIT binary patch literal 897 zcmV-{1AhF8P))FU=1iAN%}ka(s+Eu@Gv)FX)ZPrmeNrG1{#6=z#d=+un-t*d=@YWr~@95UY)=Kp=hb6Xv~+F| zOBLcnHsv``0K8L=ns_MfK&~ppw*Csm4DktIyLw!Xhtlo%tqkE&sU8obrE`NgsStG` zJl3g4OSE)u5Nj0TnKVyX#5ZWHs5Tx-`#R~A)=5%kBpqUtfzqT^yyB&`gSw+YGaO=O zX-tRlMfCRLqTLQLO&W99_#$AALP@tb+OocSqcQW1PXf*=nBNY+K7$aSt zLXJzbu0#{)SJ{;DN%SVSySj-B7VBG5$q<;E8_G12OfH=r@GUU=Ew_j(3ry{0Qh5xR zZE`7Tpnzr473wV_`l&Nu>v4|elcO4&(hXoaFeJ_m6apIq)has1Ig;+-w(ylx>|o&e z5Bk*|4Aeo2DEdI9QB%}3^DC&(Nb{qb!4FCuohO#P8+X$= z`+VF{Z*X3?Kjz+dziY3v*IsL#HBnTeM2Qkb0bB`80p0_)1AhQ#fkn~(0YC%rJkU-& zI)Iy_S_Uu>_{Q7x_rP3W0x$&lK;NGNz5-?gS46c0;5y((ZS){8F@`f3Xa$aV&VC8> zj%o$KN^NX6aBT+uL^*6&d}($m0Cm6^;4OvFA>D;pKqqh#7!+j$FkE3~N#Hf$Q{Wfi z7;qdI8Fe>+TNT%FFeeOe7SMf{WNZZP26}au6T|eB3~j*Mz$D-f;IL;n_Y>4c4M%~8 zWoxKT#Nj*OwrZW|tK&9&XqP(1NtcQ03g};>_3bfX_ad-MzyAPSU5z7F6AWJi^)bKq zP-wMPVZ+vU2I|sQ?cv#?HcaSSiQE(5oB+-NeG2H?Mh$-kIQNUQBd@*_=n0$#{t6W? zV6_a5Envg4pkZ5p(_0-uN1>Xdu(2n7FopM06fYM% zTDv~Lc`EH5Wie!T#Bf!BvqYSafPOi&t%=;EwJ!vCeZ1n>qlh0SvR?wDQ#xO(zJ_;l zXq)4x=q1KJaHn|tium9}teHa>{-yxW+6u$o9I5?xop|2>??%}+EG+7W%i*geG&3c$ zxD+`egYJD(dq-d@d?~!VJ@Y@L2<<1K5 z8a>{t865sOC5b#HUVA9~a=|;|%^7(u0ZxlJQ&O~A#Cy7$y>}HICDGOto{fME%K{uX zgm^SXYgravE&$^s`dJEZx_He2PO~`EQ?x2+Nv25Va;?hJjOltwh5{N)r@%b%>{a51 zYA^W=s|^ygp6d2M`h8M^1jB@Y?t|i-)tb6Mq1`X8O)6iux{}9%>w)>eZ(P7mdq+=j zw#j>oGrXR`#v2}gt27#7c>RG-Jnm`TouMJ|Ucf6F>o{yu8vIu=vIfyYql>e@0#kE5 zuqLmFBCUmS%_nddupBreu5|=U|I=~n6xNB zn~lLS`~f=6Q{F&ukl*)g&<_X9`xt?qdJ{b39dRWt+=@curHZtXt+{b`NOLyVsO~sF z`vM-<7uLiLOmJeQcUqN;IZ@}Iu&sE5zZJHJgi+N#ac0^VU+9nL5`-;VprP61i{(I! z-O1jdZhivC# a { + display: inline-flex; + align-items: center; + text-decoration: none; + color: #fff; +} +.illust .illust-other-works > a > img { + aspect-ratio: 1/1; + width: 50px; + height: 50px; + border-radius: 50%; + margin-right: 5px; +} + +.background-cover { + background: repeating-linear-gradient(52.5deg, rgba(32, 32, 32, 0.8), rgba(32, 32, 32, 0.8) 14px, rgba(240, 248, 255, 0) 14px, rgba(240, 248, 255, 0) 28px); + height: 10vw; + min-height: 100px; + overflow: hidden; + padding-top: 10px; + padding-bottom: 10px; +} +.background-cover img { + width: 100%; + height: 100%; + object-fit: cover; +} + +#hasbg { + height: 40vw; + min-height: 100px; + max-height: 60vh; +} + +.user { + transform: translateY(-8rem); +} +.user .user-avatar { + margin: auto; + aspect-ratio: 1/1; + width: 170px; + height: 170px; +} +.user .user-avatar img { + border-radius: 50%; +} +.user .user-social { + text-align: center; +} +.user .user-social img { + aspect-ratio: 1/1; + width: 36px; + height: 36px; +} +.user .user-details { + text-align: center; +} +.user .user-details h2 { + margin: 0; +} + +#calendar { + width: 100%; + height: auto; +} + +.calendar-weeks, +.calendar-board { + max-width: 1000px; + margin: 0 auto; + display: flex; + flex-wrap: wrap; + gap: 5px; +} + +.calendar-weeks div { + width: 128px; + text-align: center; +} + +.calendar-node { + width: 128px; + height: 128px; + border-radius: 8px; + background-size: cover; + background-position: center; + background-color: #222; + position: relative; +} +.calendar-node span { + font-size: small; + color: #fff; + background-color: #222; + position: absolute; + top: 0.3rem; + left: 0.3rem; + padding: 0.05rem 0.3rem; + display: flex; + align-items: center; + justify-content: center; +} + +@media screen and (max-width: 950px) { + .calendar-board { + justify-content: center; + } + .calendar-weeks, + .calendar-node-empty { + display: none; + } +} +.tag-header { + display: flex; +} +.tag-header .tag-thumbnail { + width: 120px; + height: 120px; + border-radius: 5px; + margin-right: 20px; + object-fit: cover; + object-position: center center; +} +.tag-header .tag-details .main-tag { + font-size: 1.6rem; +} + +.tag-container { + background-color: #222; + display: inline-flex; + align-items: center; + justify-content: center; + padding-left: 20px; + padding-right: 20px; + margin-right: 10px; + width: max-content; + height: 40px; + margin-bottom: 4px; + text-align: center; + font-weight: bold; + font-size: 1rem; + border-radius: 4px; +} +.tag-container .main { + font-size: 1.6em; +} +.tag-container .sub { + font-size: 1.2em; + font-weight: normal; +} + +/*# sourceMappingURL=style.css.map */ diff --git a/views/css/style.css.map b/views/css/style.css.map new file mode 100644 index 0000000..47b6877 --- /dev/null +++ b/views/css/style.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":["style.scss"],"names":[],"mappings":"AAgBA;EACE;EACA;;;AAGF;EACE;EACA;EAEA,kBAzBG;EA0BH,OAxBG;EA0BH;EACA,aAjBY;EAmBZ;EACA;EACA;;;AAGF;EACE,OAjCK;EAkCL;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;AAAA;AAAA;AAAA;EAIE;EACA;EACA;;;AAGF;AAAA;EAEE;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;AAAA;AAAA;EAGE;EACA,eA9Ec;EA+Ed;EACA;;;AAGF;AAAA;EAEE;EACA,kBA3Fa;EA4Fb,OA1Fa;;;AA6Ff;AAAA;EAEE,kBAjGa;;;AAoGf;EACE;EACA;;;AAGF;EACE;EACA,eAtGc;EAuGd;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQE,eA3Hc;EA4Hd;EACA;EACA;EACA,aA9HY;EA+HZ;EACA;;;AAGF;AAAA;AAAA;AAAA;EAIE,aAlIY;;;AAqId;AAAA;AAAA;AAAA;EAIE;;;AAGF;AAAA;AAAA;AAAA;EAIE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;EAME,kBAlKK;EAmKL;EACA,OAtKG;;;AAyKL;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA,kBAhMW;EAiMX;;;AAIJ;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAEA;EACE;EACA;EACA,OAtNH;;AA2NC;EACE;EACA;;AAKF;EACE;;AAIJ;EACE;;AAEA;EACE;;AAIJ;EACE;EACA;;AAGF;EACE,kBAvPD;EAwPC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EAEA;EACA;;AAEA;EACE;EACA;EACA;EACA,OA7QL;EA8QK;EACA;EACA;;AAEA;EACE,kBApRG;;AAuRL;EACE;EACA;EACA;EACA;;;AAoBZ;EAEI;IACE;;;AAKN;EACE;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EAIA;EACA;;;AAGF;EACE;EACA;EACA;;;AAKA;AAAA;EACE;EACA,OA7VC;;AAiWD;AAAA;EACE,OAtVgB;EAuVhB,QAvVgB;;AA0VlB;AAAA;EACE,WA3VgB;;AA8VlB;AAAA;EACE,WA/VgB;;AAgWhB;AAAA;EACE,WAlWc;;AAwWlB;AAAA;EACE,OAzWgB;EA0WhB,QA1WgB;;AA6WlB;AAAA;EACE,WA9WgB;;AAiXlB;AAAA;EACE,WAlXgB;;AAoXhB;AAAA;EACE,WArXc;;AA0XpB;AAAA;EACE;EACA;EACA;;AAEA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA,kBAraI;EAsaJ,OAzaH;;AA4aC;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OApbH;EAqbG;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACE;;AAKN;AAAA;EACE;EACA;EACA,eAjcU;;AAocZ;AAAA;EACE;EACA;;AAEA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;AAAA;EACE;EACA;;AAEA;AAAA;EACE;EACA;;AAEA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EACE;EACA;EACA;EACA;EACA;;;AAOV;EACE,kBAvfa;EAwfb,eAnfc;EAofd;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAEA;EACE;;AAEF;EACE;;AACA;EACE,OA5hBK;;AAkiBb;EACE;;AAGF;EACE;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;;AAEA;EACE,OAxjBI;;AA2jBN;EACE,OA7jBD;EA8jBC;EACA;;AAKN;EACE;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA,OAzmBD;;AA2mBC;EACE;EACA;EACA;EACA;EACA;;;AAMR;EACE;EAOA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;;AAEA;EACE;;;AAKN;EACE;EACA;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA,kBAlsBa;EAmsBb;;AAEA;EACE;EACA,OAtsBC;EAusBD,kBAxsBW;EAysBX;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;IACE;;EAGF;AAAA;IAEE;;;AAIJ;EACE;;AAEA;EACE;EACA;EACA;EACA;EAEA;EACA;;AAIA;EACE;;;AAKN;EACE,kBAnvBa;EAovBb;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAEF;EACE;EACA","file":"style.css"} \ No newline at end of file diff --git a/views/css/style.scss b/views/css/style.scss new file mode 100644 index 0000000..6acc8e7 --- /dev/null +++ b/views/css/style.scss @@ -0,0 +1,809 @@ +$bg: #131516; +$bg-secondary: #222; +$fg: #fff; +$fg-secondary: #aaa; +$link: #118bee; +$highlight: #fc365b; +$border-radius: 5px; +$line-height: 1.5; +$active-brightness: 0.85; +$hover-brightness: 1.2; +$box-shadow: 2px 2px 10px; +$color-shadow: #bbbbbb20; +$font-family: "Roboto", "Open Sans", "Noto Sans", sans-serif, "Noto Sans CJK JP"; +$small-artwork-width: 184px; +$large-artwork-width: 288px; + +html { + font-size: 62.5%; +} + +body { + top: 0; + margin: 0; + + background-color: $bg; + color: $fg; + + font-size: 1.8rem; + font-family: $font-family; + + margin-bottom: 10px; + margin-left: 5px; + margin-right: 5px; +} + +a { + color: $link; + text-decoration: none; +} + +/* Scrollbars */ +* { + scrollbar-width: thin; + scrollbar-color: $link auto; +} + +*::-webkit-scrollbar { + width: 5px; + height: 5px; +} + +*::-webkit-scrollbar-track { + background: transparent; +} + +*::-webkit-scrollbar-thumb { + background-color: $link; + border-radius: 10px; +} + +.special-symbol { + display: inline-flex; + align-items: center; + justify-content: center; + width: 1.8rem; + height: 1.8rem; + font-size: 1.8rem; +} + +[hidden] { + display: none; +} + +input, +label, +select, +textarea { + display: block; + font-size: inherit; + max-width: 600px; +} + +input[type="checkbox"], +input[type="radio"] { + display: inline-block; +} + +input[type="checkbox"] + label, +input[type="radio"] + label { + display: inline-block; + font-weight: normal; + position: relative; + top: 1px; +} + +input[type="range"] { + padding: 0.4rem 0; +} + +input, +select, +textarea { + border: 1px solid $bg-secondary; + border-radius: $border-radius; + margin-bottom: 1rem; + padding: 0.4rem 0.8rem; +} + +input[type="text"], +textarea { + width: calc(100% - 1.6rem); + background-color: $bg-secondary; + color: $fg-secondary; +} + +input[readonly], +textarea[readonly] { + background-color: $bg-secondary; +} + +label { + font-weight: bold; + margin-bottom: 0.2rem; +} + +.form-field { + border: 1px solid $bg-secondary; + border-radius: $border-radius; + box-shadow: $box-shadow $color-shadow; + display: block; + max-width: 800px; + min-width: 460px; + padding: 1.5rem; + + header { + margin: 1.5rem 0; + padding: 1.5rem 0; + } +} + +a b, +a em, +a i, +a strong, +button, +input[type="submit"], +.switch-button, +.pagination-button { + border-radius: $border-radius; + display: inline-block; + font-size: medium; + font-weight: bold; + line-height: $line-height; + margin: 0.5rem 0; + padding: 0.5rem 1rem; +} + +button, +input[type="submit"], +.switch-button, +.pagination-button { + font-family: $font-family; +} + +button:active, +input[type="submit"]:active, +.switch-button:active, +.pagination-button:active { + filter: brightness($active-brightness); +} + +button:hover, +input[type="submit"]:hover, +.switch-button:hover, +.pagination-button:hover { + cursor: pointer; + filter: brightness($hover-brightness); +} + +a b, +a strong, +button, +input[type="submit"], +.switch-button, +.pagination-button { + background-color: $link; + border: 2px solid $link; + color: $fg; +} + +input[type="submit"][hidden] { + display: none; +} + +.switch-seperator { + display: inline-block; + margin-left: 10px; +} + +.pagination { + text-align: center; + + .pagination-button { + margin-right: 5px; + } + + #highlight { + filter: brightness($hover-brightness); + } + + #disabled { + pointer-events: none; + background-color: $bg-secondary; + filter: brightness(1); + } +} + +nav { + margin-top: 15px; + margin-bottom: 15px; + margin-left: 20px; + margin-right: 20px; + .navigation-wrapper { + display: flex; + justify-content: space-between; + align-items: center; + width: auto; + + .navbar-brand { + display: inline-flex; + gap: 10px; + + span { + font-weight: bold; + font-size: 1.3em; + color: $fg; + } + } + + .navbar-entry { + img { + width: 30px; + height: 30px; + } + } + + .search-form { + input { + margin: 0; + } + } + + .sidebar-toggler { + display: none; + + &:checked ~ .sidebar { + transform: translateX(0); + } + } + + .sidebar-label { + margin-right: 9px; + cursor: pointer; + } + + .sidebar { + background-color: $bg; + position: absolute; + padding-top: 6px; + left: 0; + width: 220px; + transform: translateX(-220px); + transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1); + z-index: 999; + + br { + align-self: stretch; + margin-top: 10px; + } + + .sidebar-list { + list-style-type: none; + + margin: 0; + padding: 0; + + .sidebar-item { + display: flex; + align-items: center; + list-style: none; + color: $fg; + font-size: 0.9em; + text-decoration: none; + padding: 10px; + + &:hover { + background-color: $bg-secondary; + } + + img { + width: 30px; + height: 30px; + margin-left: 1.2rem; + margin-right: 10px; + } + } + } + } + } + + // .navbar-shadow { + // width: 100%; + // height: 10px; + // background: repeating-linear-gradient( + // 52.5deg, + // rgba(32, 32, 32, 0.7), + // rgba(32, 32, 32, 0.7) 14px, + // rgba(240, 248, 255, 0) 14px, + // rgba(240, 248, 255, 0) 28px + // ); + // } +} + +@media screen and (max-width: 600px) { + nav { + .search-form { + display: none; + } + } +} + +.component-header { + display: flex; + justify-content: space-between; + align-items: center; + + h2 { + margin: 0; + display: inline-block; + } +} + +.container { + max-width: 1200px; + margin-left: auto; + margin-right: auto; + padding-left: 10px; + padding-right: 10px; +} + +.artwork-container { + display: grid; + grid-template-columns: repeat( + auto-fit, + minmax(calc($small-artwork-width + 15px), 1fr) + ); + align-items: center; + justify-items: center; +} + +.artwork-container-scroll { + display: flex; + overflow: hidden; + overflow-x: scroll; +} + +.artwork-container, +.artwork-container-scroll { + a { + text-decoration: none; + color: $fg; + } + + .artwork-large { + img { + width: $large-artwork-width; + height: $large-artwork-width; + } + + .artwork-title { + max-width: $large-artwork-width; + } + + .artwork-author { + max-width: $large-artwork-width; + a { + max-width: $small-artwork-width; + } + } + } + + .artwork-small { + img { + width: $small-artwork-width; + height: $small-artwork-width; + } + + .artwork-title { + max-width: $small-artwork-width; + } + + .artwork-author { + max-width: $small-artwork-width; + + a { + max-width: $small-artwork-width; + } + } + } + + .artwork { + padding: 5px; + width: fit-content; + position: relative; + + .artwork-additional { + position: absolute; + top: 4px; + left: 4px; + right: 4px; + box-sizing: border-box; + display: flex; + align-items: flex-start; + justify-content: space-between; + padding: 4px 4px 0px; + pointer-events: none; + + .artwork-position { + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + font-weight: bold; + width: 40px; + height: 40px; + font-size: 16px; + background-color: rgba(0, 0, 0, 0.32); + } + .artwork-profanity-label { + display: flex; + align-items: center; + justify-content: center; + font-size: 10px; + border-radius: 20px; + padding: 0.4rem; + background-color: $highlight; + color: $fg; + } + + .artwork-page-count { + display: flex; + justify-content: center; + align-items: center; + flex: 0 0 auto; + box-sizing: border-box; + height: 20px; + min-width: 20px; + color: $fg; + font-weight: bold; + padding: 0px 6px; + background: rgba(0, 0, 0, 0.32); + border-radius: 10px; + font-size: 10px; + line-height: 10px; + + .boxbox { + font-size: 9px; + } + } + } + + img { + object-fit: cover; + object-position: center center; + border-radius: $border-radius; + } + + .artwork-title { + display: flex; + align-items: center; + + a { + font-size: 14px; + display: inline; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + line-height: 22px; + font-weight: bold; + } + } + + .artwork-author { + display: flex; + align-items: center; + + a { + display: flex; + align-items: center; + + img { + aspect-ratio: 1/1; + width: 24px; + height: 24px; + object-fit: cover; + object-position: center top; + border-radius: 50%; + margin-right: 5px; + } + + span { + font-size: 14px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + line-height: 22px; + } + } + } + } +} + +.illust { + background-color: $bg-secondary; + border-radius: $border-radius; + padding: 5px 15px; + + .illust-images { + display: flex; + align-items: center; + flex-direction: column; + width: 100%; + + img { + margin-top: 15px; + max-height: 1000px; + width: auto; + max-width: 100%; + } + } + + .illust-attr { + display: flex; + align-items: center; + margin-top: 10px; + margin-bottom: 10px; + + .illust-avatar { + width: 62px; + height: 62px; + border-radius: 50px; + } + + .attr-wrap { + margin-left: 5px; + + .illust-title { + font-weight: bold; + } + .illust-author { + font-size: 0.8em; + a { + color: $fg-secondary; + } + } + } + } + + .illust-description { + font-size: 0.85em; + } + + .illust-tags { + font-size: 0.9em; + + .illust-tag-attr { + display: inline-flex; + align-items: center; + margin-right: 15px; + + img { + aspect-ratio: 1/1; + width: 18px; + height: 18px; + margin-right: 5px; + } + } + + .illust-tag { + margin-right: 10px; + + #highlight { + color: $highlight; + } + + .illust-tag-name { + color: $link; + font-weight: bold; + margin-right: 5px; + } + } + } + + .comment { + display: flex; + margin-bottom: 10px; + + p { + margin: 0; + font-size: 0.8em; + } + + .comment-avatar { + width: 40px; + height: 40px; + border-radius: 50%; + margin-right: 10px; + } + + .stamp { + width: 96px; + height: 96px; + border-radius: 4px; + } + + .emoji { + width: 24px; + height: 24px; + margin-left: 3px; + margin-right: 3px; + } + } + + .illust-other-works { + & > a { + display: inline-flex; + align-items: center; + text-decoration: none; + color: $fg; + + & > img { + aspect-ratio: 1/1; + width: 50px; + height: 50px; + border-radius: 50%; + margin-right: 5px; + } + } + } +} + +.background-cover { + background: repeating-linear-gradient( + 52.5deg, + rgba(32, 32, 32, 0.8), + rgba(32, 32, 32, 0.8) 14px, + rgba(240, 248, 255, 0) 14px, + rgba(240, 248, 255, 0) 28px + ); + height: 10vw; + min-height: 100px; + overflow: hidden; + padding-top: 10px; + padding-bottom: 10px; + + img { + width: 100%; + height: 100%; + object-fit: cover; + } +} + +#hasbg { + height: 40vw; + min-height: 100px; + max-height: 60vh; +} + +.user { + transform: translateY(-8rem); + + .user-avatar { + margin: auto; + aspect-ratio: 1/1; + width: 170px; + height: 170px; + + img { + border-radius: 50%; + } + } + + .user-social { + text-align: center; + + img { + aspect-ratio: 1/1; + width: 36px; + height: 36px; + } + } + + .user-details { + text-align: center; + + h2 { + margin: 0; + } + } +} + +#calendar { + width: 100%; + height: auto; +} + +.calendar-weeks, +.calendar-board { + max-width: 1000px; + margin: 0 auto; + display: flex; + flex-wrap: wrap; + gap: 5px; +} + +.calendar-weeks div { + width: 128px; + text-align: center; +} + +.calendar-node { + width: 128px; + height: 128px; + border-radius: 8px; + background-size: cover; + background-position: center; + background-color: $bg-secondary; + position: relative; + + span { + font-size: small; + color: $fg; + background-color: $bg-secondary; + position: absolute; + top: 0.3rem; + left: 0.3rem; + padding: 0.05rem 0.3rem; + display: flex; + align-items: center; + justify-content: center; + } +} + +@media screen and (max-width: 950px) { + .calendar-board { + justify-content: center; + } + + .calendar-weeks, + .calendar-node-empty { + display: none; + } +} + +.tag-header { + display: flex; + + .tag-thumbnail { + width: 120px; + height: 120px; + border-radius: 5px; + margin-right: 20px; + + object-fit: cover; + object-position: center center; + } + + .tag-details { + .main-tag { + font-size: 1.6rem; + } + } +} + +.tag-container { + background-color: $bg-secondary; + display: inline-flex; + align-items: center; + justify-content: center; + padding-left: 20px; + padding-right: 20px; + margin-right: 10px; + + width: max-content; + height: 40px; + margin-bottom: 4px; + text-align: center; + font-weight: bold; + font-size: 1rem; + border-radius: 4px; + + .main { + font-size: 1.6em; + } + .sub { + font-size: 1.2em; + font-weight: normal; + } +} diff --git a/views/layout.jet.html b/views/layout.jet.html new file mode 100644 index 0000000..c5db073 --- /dev/null +++ b/views/layout.jet.html @@ -0,0 +1,105 @@ + + + + {{ title := "" }} {{ if isset(Title) }} {{ title = Title }} {{ else }} {{ + title = "PixivFE" }} {{ end }} + {{ title }} - PixivFE + + + + + + + + + + + {{ embed() }} + + diff --git a/views/pages/about.jet.html b/views/pages/about.jet.html new file mode 100644 index 0000000..162a2d7 --- /dev/null +++ b/views/pages/about.jet.html @@ -0,0 +1,29 @@ +
+

Server information

+
    +
  • + Version: {{ Version }}
    PixivFE's version this server is + running +
  • +
  • + Started PixivFE (UTC): {{ Time }}
    The date when PixivFE + started on this server +
  • +
  • + Base URL: {{ if isset(BaseURL) and !BaseURL == "localhost" }} {{ + BaseURL }}
    + Meta tags are available for embeds {{ else }} Not set
    + Meta tags are not available, embeds may not work {{ end }} +
  • +
  • + Default image proxy server: {{ ImageProxy }}
    The default image + proxy server that was set on this server, used to proxy images from + i.pximg.net +
  • +
  • + Accept-Language header: {{ AcceptLanguage }}
    The value of the + Accept-Language header this server uses to request to Pixiv's APIs. +
  • +
+

+
diff --git a/views/pages/artwork.jet.html b/views/pages/artwork.jet.html new file mode 100644 index 0000000..38c4bc7 --- /dev/null +++ b/views/pages/artwork.jet.html @@ -0,0 +1,139 @@ +
+ {{ if !Illust.IsUgoira }} +
+ {{ range index := Illust.Images }} + + Page {{ index }} + + {{ end }} +
+ {{ else }} + + Go to ugoira.com for more options + {{ end }} + +
+ {{ Illust.User.Name }} + +
+
{{ Illust.Title }}
+ +
+
+ + +
+ + Views + {{ Illust.Views }} + + + Bookmarks + {{ Illust.Bookmarks }} + + + Likes + {{ Illust.Likes }} + + + Date + {{ parseTime: Illust.Date }} + +
+ +
+ {{ if Illust.AiType == 2 }} + + AI-generated + + {{ end }} {{ range Illust.Tags }} {{ if isEmphasize(.Name) }} + + {{ .Name }} + + {{ else }} + + #{{ .Name }}{{ .TranslatedName }} + + {{ end }} {{ end }} +
+
+
+ {{ raw: parsePixivRedirect(Illust.Description) }} +
+
+
+ {{ Illust.User.Name }} Other + works by {{ Illust.User.Name }} + » + +
+ {{ range Illust.RecentWorks }} +
+ {{ include "components/thumbnail-dt" . }} +
+ {{ end }} +
+
+
+

Comments

+ {{ if Illust.CommentDisabled == 1 }} +

The creator turned comments off

+ {{ else if Illust.Comments == 0 }} +

There are no comments yet

+ {{ else }} {{ range Illust.CommentsList }} +
+ {{ .AuthorName }} +
+ {{ .AuthorName }} +

+ {{ if .Stamp }} + https://s.pximg.net/common/images/stamp/generated-stamps/{{ .Stamp }}_s.jpg + {{ else }} {{ raw: parseEmojis(.Context) }} {{ end }} +

+ + {{ .Date }} +
+
+ {{ end }} {{ end }} +
+
+

Related works

+
+ {{ include "components/small-tn" Illust.RelatedWorks }} +
+
diff --git a/views/pages/components/small-tn-normal.jet.html b/views/pages/components/small-tn-normal.jet.html new file mode 100644 index 0000000..a62b917 --- /dev/null +++ b/views/pages/components/small-tn-normal.jet.html @@ -0,0 +1,6 @@ +{{ range . }} {{ if .ID }} +
+ {{ include "thumbnail-dt" . }} {{ include "thumbnail-tt" . }} {{ include + "thumbnail-at" . }} +
+{{ end }} {{ end }} diff --git a/views/pages/components/small-tn.jet.html b/views/pages/components/small-tn.jet.html new file mode 100644 index 0000000..67c3372 --- /dev/null +++ b/views/pages/components/small-tn.jet.html @@ -0,0 +1,19 @@ +{{ range . }} {{ if .ID == "#" }} + +{{ else if .ID }} +
+ {{ include "thumbnail-dt" . }} {{ include "thumbnail-tt" . }} {{ include + "thumbnail-at" . }} +
+{{ end }} {{ end }} diff --git a/views/pages/components/thumbnail-at.jet.html b/views/pages/components/thumbnail-at.jet.html new file mode 100644 index 0000000..535c077 --- /dev/null +++ b/views/pages/components/thumbnail-at.jet.html @@ -0,0 +1,6 @@ + diff --git a/views/pages/components/thumbnail-dt.jet.html b/views/pages/components/thumbnail-dt.jet.html new file mode 100644 index 0000000..b7e222a --- /dev/null +++ b/views/pages/components/thumbnail-dt.jet.html @@ -0,0 +1,12 @@ +
+ {{ if .XRestrict != 0 }} +
+ {{ if .XRestrict == 1 }}R-18{{ else }}R-18G{{ end }} +
+ {{ end }} {{ if .Pages > 1 }} +
⧉ {{ .Pages }}
+ {{ end }} +
+ + {{ .Title }} + diff --git a/views/pages/components/thumbnail-tt.jet.html b/views/pages/components/thumbnail-tt.jet.html new file mode 100644 index 0000000..e87311a --- /dev/null +++ b/views/pages/components/thumbnail-tt.jet.html @@ -0,0 +1,3 @@ + diff --git a/views/pages/discovery.jet.html b/views/pages/discovery.jet.html new file mode 100644 index 0000000..67cee27 --- /dev/null +++ b/views/pages/discovery.jet.html @@ -0,0 +1,16 @@ +
+

Discover works

+
+ {{ url := "/discovery?mode=" }} +
Filter
+ All + Safe + R-18 +
+
+ {{ include "components/small-tn" Artworks }} +
+ +
diff --git a/views/pages/error.jet.html b/views/pages/error.jet.html new file mode 100644 index 0000000..53cd179 --- /dev/null +++ b/views/pages/error.jet.html @@ -0,0 +1,6 @@ +
+

Oh no! Errors!

+

This is what you got instead ¯\_(ツ)_/¯

+
+ {{ Error }} +
diff --git a/views/pages/following.jet.html b/views/pages/following.jet.html new file mode 100644 index 0000000..14ffffa --- /dev/null +++ b/views/pages/following.jet.html @@ -0,0 +1,16 @@ +
+

Newest works from people you follow

+
+
Filter
+ All + Safe + R-18 +
+
{{ include "components/small-tn" Artworks }}
+ +
diff --git a/views/pages/index.jet.html b/views/pages/index.jet.html new file mode 100644 index 0000000..2eb0ff9 --- /dev/null +++ b/views/pages/index.jet.html @@ -0,0 +1,163 @@ +
+ {{ if Token }} +
+ Filter + All + R-18 +
+
+

Newest works by users you follow

+ See more +
+
+ {{ include "components/small-tn" Artworks.Following }} +
+
+

Recently completed commissions

+
+ {{ include "components/small-tn" Artworks.Commissions }} +
+
+

Recommended works

+
+ {{ include "components/small-tn" Artworks.Recommended }} +
+
+ +
+

Daily rankings

+ See more +
+
+ {{ range rank := Artworks.Rankings }} +
+
+
{{ rank + 1 }}
+ + {{ if .Pages > 1 }} +
+ ⧉  + 2 +
+ {{ end }} +
+ + {{ .Title }} + + + + +
+ {{ end }} +
+
+ + + +

Works by recommended users

+
+ {{ include "components/small-tn" Artworks.Users }} +
+
+ {{ range Artworks.RecommendByTags }} +

Recommended illustrations tagged #{{.Name}}

+
+ {{ include "components/small-tn" .Artworks }} +
+
+ {{ end }} +

Newest works

+
+ {{ include "components/small-tn" Artworks.Newest }} +
+ {{ else }} +

Login to access more features!

+

+ Enjoying this frontend so far? I need your opinions and ideas to improve + this UI! Share them + here! +

+
+

Daily rankings

+ See more +
+
+ {{ range rank := Artworks.Rankings }} +
+
+
{{ rank + 1 }}
+ + {{ if .Pages > 1 }} +
+ ⧉  + 2 +
+ {{ end }} +
+ + {{ .Title }} + + + + +
+ {{ end }} +
+
+ + + + {{ end }} +
diff --git a/views/pages/login.jet.html b/views/pages/login.jet.html new file mode 100644 index 0000000..660502b --- /dev/null +++ b/views/pages/login.jet.html @@ -0,0 +1,36 @@ +
+

Login with your account

+

+ In order to enable the landing page and other features, you will have to + login. +

+

+ Note 15/08/2023: By now the only feature you will get is the landing page. +

+

+ You can only login using your account's cookie, check out + this page + to see how to get it. +

+

+ Note that you will get logged out automatically every time the server + updates, if you are logged in before but got logged out recently, it is + probably because the instance owner restarted the server. +

+
+ + +
+
+

Logout

+

+ You can safely logout here. This button will just delete the token directly + from this session. +

+
+ +
+
diff --git a/views/pages/newest.jet.html b/views/pages/newest.jet.html new file mode 100644 index 0000000..75472f5 --- /dev/null +++ b/views/pages/newest.jet.html @@ -0,0 +1,9 @@ +
+

Newest works from all users

+
+
Filter
+ Safe + R-18 +
+
{{ include "components/small-tn" Items }}
+
diff --git a/views/pages/rank.jet.html b/views/pages/rank.jet.html new file mode 100644 index 0000000..50b5564 --- /dev/null +++ b/views/pages/rank.jet.html @@ -0,0 +1,80 @@ +
+

{{ Title }}

+ +
+ {{ url := "/ranking?mode=" + Queries.Mode + "&date=" + Data.CurrentDate + + "&page=1&content=" }} +
Content
+ Overall + Illustrations + Mangas +
+
+ +
+ {{ url := "/ranking?content=" + Queries.Content +"&date=" + Data.CurrentDate + + "&page=1&mode=" }} +
Modes
+ Daily + Weekly + Monthly + Rookie + + Daily (R-18) + Weekly (R-18) +
+
+ +
+ {{ url := "/ranking?content=" + Queries.Content + "&mode=" + Queries.Mode + + "&page=1" }} +
Date
+ {{ if Data.PrevDate != "false" }} + Yesterday + {{ end }} {{ if Data.NextDate != "false" }} + Next day + {{ end }} + Latest + + Ranking calendar +
+
+ +
+ {{ range Data.Artworks }} +
+
+
{{ .Rank }}
+ {{ if toInt(.Pages) > 1 }} +
⧉ {{ .Pages }}
+ {{ end }} +
+ + + {{ .Title }} + + + +
+ {{ end }} +
+ + +
diff --git a/views/pages/ranking_log.jet.html b/views/pages/ranking_log.jet.html new file mode 100644 index 0000000..10a6ee5 --- /dev/null +++ b/views/pages/ranking_log.jet.html @@ -0,0 +1,36 @@ +
+

Ranking calendar ({{ Month }} {{ Year }})

+
+ {{ url := "/ranking_log?date=" + ThisMonth + "&mode=" }} + Modes + Daily + Weekly + Monthly + Rookie + + Daily (R-18) + Weekly (R-18) +
+ R18? + +
+
+
+
Sun
+
Mon
+
Tue
+
Wed
+
Thu
+
Fri
+
Sat
+
+
+ {{ raw: Render }} +
+
+ +
diff --git a/views/pages/settings.jet.html b/views/pages/settings.jet.html new file mode 100644 index 0000000..813e9c3 --- /dev/null +++ b/views/pages/settings.jet.html @@ -0,0 +1,36 @@ +
+

Login

+

Go to this page to login

+

Settings

+
+

Image proxy server

+
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ +
+
+
+ + + +
+
+
diff --git a/views/pages/tag.jet.html b/views/pages/tag.jet.html new file mode 100644 index 0000000..25e41fa --- /dev/null +++ b/views/pages/tag.jet.html @@ -0,0 +1,78 @@ +
+
+ {{ if Tag.Metadata.ID }} + + {{ Tag.Name }} + + {{ end }} + +
+ #{{ Tag.Name }} + {{ Tag.Metadata.Name }} +
+
+ {{ Data.Artworks.Total }} works + +

{{ Tag.Metadata.Detail }}

+
+
+ +
+ {{ range Data.RelatedTags }} + +
+
#{{ . }}
+
+
+ {{ end }} +
+ +
+ {{ url := "/tags/" + Tag.Name + "?order=" + Queries.Order + "&mode=" + + Queries.Mode + "&page=1" + "&category=" }} +
Type
+ All + Illustrations + Manga +
+
+ {{ url := "/tags/" + Tag.Name + "?category=" + Queries.Category + "&mode=" + + Queries.Mode + "&page=1" + "&order=" }} +
Order
+ Newest + Oldest +
+
+
Filter
+ {{ url := "/tags/" + Tag.Name + "?category=" + Queries.Category + "&order=" + + Queries.Order + "&page=1" + "&mode=" }} + All + Safe + R-18 +
+ {{ if Data.Popular.Recent }} +

Popular artworks

+
+ {{ include "components/small-tn" Data.Popular.Recent }} {{ include + "components/small-tn" Data.Popular.Permanent }} +
+ {{ end }} + +
+

Works

+
+ {{ include "components/small-tn" Data.Artworks.Artworks }} +
+ + +
diff --git a/views/pages/user.jet.html b/views/pages/user.jet.html new file mode 100644 index 0000000..e767db1 --- /dev/null +++ b/views/pages/user.jet.html @@ -0,0 +1,77 @@ +{{ if ! User.BackgroundImage }} +
+{{ else }} +
+ {{ User.Name }} +
+{{ end }} +
+
+ avatar +
+
+

{{ User.Name }}

+ {{ User.Following }} Following | {{ User.MyPixiv }} MyPixiv +
+ {{ if User.Webpage }} + Webpage + {{ end }} {{ range index, item := User.Social }} + + + {{ index }} + + + {{ end }} +
+

{{ raw: parsePixivRedirect(User.Comment) }}

+
+
+
Category
+ All + Illustrations + Mangas + Bookmarks +
+
+

Illustrations and Mangas

+ + + +
+ {{ include "components/small-tn" User.Artworks }} +
+
+ +