From 6bafa8f0e688bfc8d3faf78a81548af224f0b105 Mon Sep 17 00:00:00 2001 From: Knah-Tsaeb Date: Tue, 22 Oct 2024 12:26:08 +0200 Subject: [PATCH] First commit --- .gitignore | 8 + LICENSE | 661 +++++++++ README.md | 134 ++ app/Blogs/Blogs.php | 291 ++++ app/Cache.php | 177 +++ app/Controllers/Dev.php | 93 ++ app/Controllers/Home.php | 85 ++ app/Controllers/Page.php | 47 + app/Controllers/Post.php | 38 + app/Controllers/Posts.php | 51 + app/Fetching/ApiFeed.php | 26 + app/Fetching/Gitea.php | 77 ++ app/Fetching/NanoGal.php | 76 + app/Fetching/RssFeed.php | 47 + app/Fetching/Shaarli.php | 76 + app/Router.php | 96 ++ app/Utils/Config.php | 28 + app/Utils/Debug.php | 23 + app/Utils/RenderHtml.php | 92 ++ app/Utils/Selected.php | 16 + bin/cron.php | 76 + cache/feed/.gitkeep | 0 cache/page/.gitkeep | 0 cache/post/.gitkeep | 0 cache/posts/.gitkeep | 0 composer.json | 13 + composer.lock | 1230 +++++++++++++++++ datas/drafts/.gitkeep | 0 datas/pages/.gitkeep | 0 datas/posts/.gitkeep | 0 public/.htaccess | 10 + public/assets/css/app-min.css | 1 + public/assets/css/app.css | 555 ++++++++ .../favicons/android-chrome-192x192.png | Bin 0 -> 14918 bytes .../favicons/android-chrome-256x256.png | Bin 0 -> 23808 bytes public/assets/favicons/apple-touch-icon.png | Bin 0 -> 13709 bytes public/assets/favicons/browserconfig.xml | 9 + public/assets/favicons/favicon-16x16.png | Bin 0 -> 1613 bytes public/assets/favicons/favicon-32x32.png | Bin 0 -> 2023 bytes public/assets/favicons/favicon.ico | Bin 0 -> 7406 bytes public/assets/favicons/mstile-150x150.png | Bin 0 -> 5815 bytes public/assets/favicons/safari-pinned-tab.svg | 473 +++++++ public/assets/favicons/site.webmanifest | 19 + .../icons/humbleicons--external-link.svg | 1 + public/assets/icons/moon.svg | 14 + public/assets/image/avatar.webp | Bin 0 -> 17542 bytes public/assets/image/avatar_120.webp | Bin 0 -> 4514 bytes public/assets/image/avatar_compress.webp | Bin 0 -> 9682 bytes public/assets/js/app-min.js | 1 + public/assets/js/app.js | 16 + public/humans.txt | 45 + public/index.php | 70 + template/bone.php | 10 + template/dev.php | 22 + template/footer.php | 11 + template/head.php | 32 + template/home.php | 73 + template/nav.php | 32 + template/page.php | 8 + template/post.php | 21 + template/posts.php | 38 + 61 files changed, 4922 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 app/Blogs/Blogs.php create mode 100644 app/Cache.php create mode 100644 app/Controllers/Dev.php create mode 100644 app/Controllers/Home.php create mode 100644 app/Controllers/Page.php create mode 100644 app/Controllers/Post.php create mode 100644 app/Controllers/Posts.php create mode 100644 app/Fetching/ApiFeed.php create mode 100644 app/Fetching/Gitea.php create mode 100644 app/Fetching/NanoGal.php create mode 100644 app/Fetching/RssFeed.php create mode 100644 app/Fetching/Shaarli.php create mode 100644 app/Router.php create mode 100644 app/Utils/Config.php create mode 100644 app/Utils/Debug.php create mode 100644 app/Utils/RenderHtml.php create mode 100644 app/Utils/Selected.php create mode 100644 bin/cron.php create mode 100644 cache/feed/.gitkeep create mode 100644 cache/page/.gitkeep create mode 100644 cache/post/.gitkeep create mode 100644 cache/posts/.gitkeep create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 datas/drafts/.gitkeep create mode 100644 datas/pages/.gitkeep create mode 100644 datas/posts/.gitkeep create mode 100644 public/.htaccess create mode 100644 public/assets/css/app-min.css create mode 100644 public/assets/css/app.css create mode 100644 public/assets/favicons/android-chrome-192x192.png create mode 100644 public/assets/favicons/android-chrome-256x256.png create mode 100644 public/assets/favicons/apple-touch-icon.png create mode 100644 public/assets/favicons/browserconfig.xml create mode 100644 public/assets/favicons/favicon-16x16.png create mode 100644 public/assets/favicons/favicon-32x32.png create mode 100644 public/assets/favicons/favicon.ico create mode 100644 public/assets/favicons/mstile-150x150.png create mode 100644 public/assets/favicons/safari-pinned-tab.svg create mode 100644 public/assets/favicons/site.webmanifest create mode 100644 public/assets/icons/humbleicons--external-link.svg create mode 100644 public/assets/icons/moon.svg create mode 100644 public/assets/image/avatar.webp create mode 100644 public/assets/image/avatar_120.webp create mode 100644 public/assets/image/avatar_compress.webp create mode 100644 public/assets/js/app-min.js create mode 100644 public/assets/js/app.js create mode 100644 public/humans.txt create mode 100644 public/index.php create mode 100644 template/bone.php create mode 100644 template/dev.php create mode 100644 template/footer.php create mode 100644 template/head.php create mode 100644 template/home.php create mode 100644 template/nav.php create mode 100644 template/page.php create mode 100644 template/post.php create mode 100644 template/posts.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f475dc0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +cache/*/*.html +fileIndex.json +vendor + +datas/config.json +datas/*/*/*/*.md +datas/*/*.md +datas/template/*.php \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..be3f7b2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + 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 + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..063bf44 --- /dev/null +++ b/README.md @@ -0,0 +1,134 @@ +# Knah Tsaeb personal website + +## Presentation + +This is the source code of my personal website. Feel free to use and adapt it. + +## Features + + - Libre + - Light (software and generated site) + - Fast + - Half static (first print is build, other are static) + - No database + - Flat file + - Markdown + - Can include external RSS/ATOM feed or API json response + - Simple + - Can adapt + - Easy install + - Easy backup + +## Installation + +### Docker + +TODO + +### Classic way + + - Requires `php` (8 or higher) and `php-xml` extension. + - Place all the files in a directory on your server. + - Run `composer install`. + - Configure your web server to serve `/public/` directory. + - Use cron job `*/5 * * * * php -f /var/www/ThisApp/bin/cron.php` that's check for new content or update feed all 5 mins. + - That's all. + +## Usage + +All files are store in `/datas/` folder. You are two distinct folder : + + - `/pages/` for page + - `/posts/` for post + +Thanks captain obvious. + +You can edit directly file via SSH and a CLI editor like VIM or Nano. Alternatively, you can edit file locally and upload with FTP to your web server. + +Pages folder is not hierarchical just create file in `/page/My page.md`. + +Posts folder use chronological ordering like `/posts/YYYY/MM/DD - Post title.md`. + +If you want, is totaly optional, in your post you can add lead. + +Example : +```markdown +--- + +My super lead text ! + +--- + +Rest of your post. + +``` + +## Options / configs + + +You can create `/datas/config.json` for define your option. + +```json +{ + "siteName": "My super page", + "author": "Me !!!", + "useCache": true, + "postPerPage": 12, + "numberOfLastItem": 5, + "debug": true, + "fetching": {}, + "navLinks": {} +} +``` + +| Option | Type | Default | Description | +| --- | --- | --- | --- | +| siteName | string | My super page| Site name | +| author | string | Me !!! | Your name | +| useCache | bool | true | Enable or disable cache | +| postPerPage | int | 12 | Number of posts in /posts page | +| numberOfLastItem | int | 5 | Number of items feed | +| debug | bool | false | Enable or disable some action for debugin | +| fetching | array | null | List of feed or API (Key = serviceName, value = url)| +| navLinks | array | null | List of nav entry (Key = linkName, value = url)| + +### Notes + +If you change/update config, all cache are cleaning. + +## Ideas + +Original Idea by [SebSauvage](https://sebsauvage.net/wiki/doku.php?id=minigal_nano#gerer_votre_gallerie_avec_nextcloud) in french. + +If you have NextCloud installed on your server, you can use it to manage your markdown file. It's very convenient for uploading your markdown file, renaming them, moving them, and organizing them into folders. + +In the NextCloud settings: Settings > Administration > External Storage: + +| Option | Description | +| --- | --- | +| Folder Name | The name of the folder as it will appear in NextCloud. | +| External Storage | Choose Local | +| Authentication | None | +| Configuration | Enter the path of your `/datas` folder | + +Don't forget to disable encrypt for this folder. + +More info about external storage in [Nextcloud admin documentation](https://docs.nextcloud.com/server/stable/admin_manual/configuration_files/external_storage_configuration_gui.html). + +The same idea can be use with another sync tool of course. + +## License and ressources + +This software is licensed under the GNU AFFERO GENERAL PUBLIC LICENSE v3 (https://gnu.org/licenses/agpl-3.0.txt). + +Icons : + - moon and sun icon svgrepo.com (CCO license) + - external link icon humbleicons.com (MIT license) + +CSS : + - [Reset CSS piccalil.li](https://piccalil.li/blog/a-more-modern-css-reset/) (CC BY license) + +Dependencies : + - [league/commonmark](https://commonmark.thephpleague.com/) (BSD-3 license) + - [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) (MIT license) + - [cocur/slugify](https://github.com/cocur/slugify) (MIT license) \ No newline at end of file diff --git a/app/Blogs/Blogs.php b/app/Blogs/Blogs.php new file mode 100644 index 0000000..b1124e4 --- /dev/null +++ b/app/Blogs/Blogs.php @@ -0,0 +1,291 @@ + __DIR__ . '/../../datas/pages/404.md', + 'filename' => '404', + 'created_at' => '1970-01-01', + 'modified_at' => '1970-01-01', + ]; + + /** + * Constructs a new instance of the class + * + * @param array $params An array of parameters + */ + function __construct($params) { + if (!isset($params['config']['cron'])) { + $params['config']['cron'] = false; + } + if (file_exists($this->cacheFile) && $params['config']['cron'] === false) { + $mdFileCache = json_decode(file_get_contents($this->cacheFile), true); + } else { + $mdFileCache = $this->indexMdFiles(); + } + $this->postPerPage = $params['config']['postPerPage']; + $this->totalPost = count($mdFileCache); + $this->totalPage = ceil($this->totalPost / $this->postPerPage); + $this->numberEntry = $params['config']['numberOfLastItem']; + $this->mdFileCache = $mdFileCache; + } + + /** + * Indexes all the markdown files in the posts directory + * + * @return array The indexed markdown files + */ + private function indexMdFiles(): array { + $directory = new \RecursiveDirectoryIterator($this->postsDir); + $slugify = new Slugify(); + foreach (new \RecursiveIteratorIterator($directory) as $file) { + if ($file->getExtension() === 'md') { + $filename = $file->getBasename('.md'); + $pathParts = explode(DIRECTORY_SEPARATOR, $file->getPath()); + + $year = $pathParts[count($pathParts) - 2]; + $month = $pathParts[count($pathParts) - 1]; + $nameParts = explode(' - ', $filename); + + $day = $nameParts[0]; + if (empty($nameParts['1'])) { + continue; + } + $slug = $slugify->slugify(trim($nameParts[1])); + $createDate = \DateTimeImmutable::createFromFormat("Y-m-d H:i:s", "$year-$month-$day" . ' ' . date('H:i:s')); + $created_at = $createDate->format("Y-m-d"); + + $modifiedDate = \DateTimeImmutable::createFromFormat("U", $file->getMTime()); + $modified_at = $modifiedDate->format(\DateTimeImmutable::ATOM); + + $this->mdFileCache[$slug] = [ + 'file' => $file->getPathname(), + 'filename' => $filename, + 'title' => ucfirst(trim($nameParts[1])), + 'year' => $year, + 'month' => $month, + 'created_at' => $created_at, + 'modified_at' => $modified_at + ]; + } + } + + uasort($this->mdFileCache, function ($a, $b) { + return strtotime($b['created_at']) <=> strtotime($a['created_at']); + }); + + file_put_contents($this->cacheFile, json_encode($this->mdFileCache)); + return $this->mdFileCache; + } + + /** + * Retrieves the markdown files for a given page + * + * @param int $page The page number + * @return array An array of markdown files + */ + function getFilesForPage(int $page): array { + if ($page > $this->totalPage) { + $page = $this->totalPage; + } + $offset = ($page - 1) * $this->postPerPage; + return array_slice($this->mdFileCache, $offset, $this->postPerPage, true); + } + + /** + * Finds a markdown file by slug and returns its content + * + * @param string $slug The slug of posts/page + * @return string The content of the markdown + */ + + public function findPostBySlug(string $slug): string { + if ($this->mdFileCache[$slug] && file_exists($this->mdFileCache[$slug]['file'])) { + return file_get_contents($this->mdFileCache[$slug]['file']); + } else { + return file_get_contents($this->notFound['file']); + } + } + + /** + * Finds all the markdown files for a given year + * + * @param int $year + * @return array An array of markdown file + */ + public function findPostByYear(int $year): array { + $result = array(); + foreach ($this->mdFileCache as $key => $post) { + if ((int)$post['year'] === $year) { + $result[$key] = $post; + } + } + $this->mdFileCache = $result; + $this->totalPage = ceil(count($this->mdFileCache) / $this->postPerPage); + return $result; + } + + + /** + * Finds all the markdown files for a given month + * + * @param int $month + * @return array An array of markdown file + */ + public function findPostByMonth(int $month): array { + $result = array(); + foreach ($this->mdFileCache as $key => $post) { + if ((int)$post['year'] === $month) { + $result[$key] = $post; + } + } + $this->mdFileCache = $result; + $this->totalPage = ceil(count($this->mdFileCache) / $this->postPerPage); + return $result; + } + + /** + * Returns the information of a markdown file for given slug + * + * @param string $slug The slug of post/page + * @return array The information of the markdown file + */ + public function returnPostInfo(string $slug): array { + return $this->mdFileCache[$slug]; + } + + /** + * Returns the most recent post + * + * @return array An array of the most recent mdFileCache + */ + public function getLastPost(): array { + if ($this->totalPost > 0) { + $this->postList = array_slice($this->mdFileCache, 0, $this->numberEntry); + } + return $this->postList; + } + + /** + * Generates the HTML for the pagination links + * + * @param int $page The current page number + * @return string The generated HTML for the pagination links + */ + public function makePagination(int $page): string { + $html = ''; + for ($i = 1; $i <= $this->totalPage; $i++) { + if ($i === $page) { + $class = 'class="current" '; + } else { + $class = null; + } + $html .= '
  • + ' . $i . ' +
  • '; + } + return $html; + } + + /** + * Generates the HTML for the list of posts + * + * @return string|null The generated HTML for the list of posts or null + */ + public function makeList(): string { + if (!empty($this->postList)) { + $htmlPost = '
      '; + foreach ($this->postList as $key => $value) { + $htmlPost .= + ' +
    • + ' . $value['title'] . ' +
    • '; + } + $htmlPost .= ' +
    '; + + $this->postsHash = sha1($htmlPost); + return $htmlPost; + } + $this->postsHash = sha1('empty'); + return ''; + } + + /** + * Converts markdown content to HTML + * + * @param string $content The markdown content to convert to HTML + * @return string The converted HTML content + */ + function markdownToHtml(string $content): string { + $config = [ + 'disallowed_raw_html' => [ + 'disallowed_tags' => ['title', 'textarea', 'style', 'xmp', 'iframe', 'noembed', 'noframes', 'script', 'plaintext'], + ], + 'table' => [ + 'wrap' => [ + 'enabled' => false, + 'tag' => 'div', + 'attributes' => [], + ], + 'alignment_attributes' => [ + 'left' => ['align' => 'left'], + 'center' => ['align' => 'center'], + 'right' => ['align' => 'right'], + ], + ], + 'mentions' => [ + 'tag_handle' => [ + 'prefix' => '#', + 'pattern' => '[a-z\d](?:[a-z\d]|-(?=[a-z\d])){0,38}(?!\w)', + 'generator' => '/tag/%s', + ] + ], + ]; + + $environment = new Environment($config); + $environment->addExtension(new CommonMarkCoreExtension()); + $environment->addExtension(new MentionExtension()); + $environment->addExtension(new TableExtension()); + + $converter = new MarkdownConverter($environment); + return $converter->convert($content); + } + + /** + * Extracts the lead paragraph from a post + * + * @param string $markdownContent The markdown content to extract the lead paragraph from + * @return string|null The extracted lead paragraph or null + */ + static function extractLead(string $markdownContent): ?string { + $pattern = '/---\s*(.*?)\s*---/s'; + if (preg_match($pattern, $markdownContent, $matches)) { + return trim($matches[1]); + } + return null; + } +} diff --git a/app/Cache.php b/app/Cache.php new file mode 100644 index 0000000..a873b75 --- /dev/null +++ b/app/Cache.php @@ -0,0 +1,177 @@ + __DIR__ . '/../cache/feed', + 'page' => __DIR__ . '/../cache/page', + 'home' => __DIR__ . '/../cache/page', + 'post' => __DIR__ . '/../cache/post', + 'posts' => __DIR__ . '/../cache/posts', + 'dev' => __DIR__ . '/../cache/page' + ]; + static $fileDir = __DIR__ . '/../datas'; + static $templateDir = '../template'; + + /** + * Checks if a cache file exists for the given request URL + * + * @param string $requestUrl The requested URL to check for a cached version + * @param string $cacheDir The directory where the cache is stored, defaults to 'page' + * @return bool Returns true if the cache file exists; otherwise, false + */ + static function isCache(array $params): bool { + if (file_exists(self::$pathCacheDir[$params['type']] . '/' . $params['cacheName'])) { + return true; + } + return false; + } + + /** + * Checks if the page is valid based on the modification times of the markdown and cache files + * + * @param array $params An associative array + * @return bool Returns true if the cached page is still valid; otherwise, false + */ + static function isValidPage(array $params): bool { + $mdModifiedTime = 0; + // @todo add test if file exist + if ($params['type'] === 'home') { + $mdModifiedTime = filemtime(self::$templateDir . '/home.php'); + } elseif ($params['type'] === 'post') { + $postList = new Blogs($params); + $postAttr = $postList->returnPostInfo($params['slug']); + $mdModifiedTime = filemtime($postAttr['file']); + } elseif ($params['type'] === 'posts') { + $mdModifiedTime = 0; + } elseif(file_exists(self::$fileDir . '/' . $params['type'] . 's' . $params['requestUrl'] . '.md')) { + $mdModifiedTime = filemtime(self::$fileDir . '/' . $params['type'] . 's' . $params['requestUrl'] . '.md'); + } + $cacheModifiedTime = filemtime(self::$pathCacheDir[$params['type']] . '/' . $params['cacheName']); + + if ($mdModifiedTime > $cacheModifiedTime) { + return false; + } else { + return true; + } + } + + /** + * Checks if the feed is valid based on the feed's last modified timestamp + * and the cache file's modified time + * + * @param string $feedName The name of the feed + * @param int $feedTimestamp The last modified timestamp of the feed + * @return bool + */ + static function isValidFeed(string $feedName, int $feedTimestamp): bool { + $feedName = $feedName; + + if (file_exists(self::$pathCacheDir['feed'] . '/' . $feedName . '.html')) { + $cacheModifiedTime = filemtime(self::$pathCacheDir['feed'] . '/' . $feedName . '.html'); + if ($cacheModifiedTime > $feedTimestamp) { + return true; + } + } + return false; + } + + /** + * Validates the API by checking if the cache file exists and if its hash + * matches the provided API hash + * + * @param string $apiName The name of the API + * @param string $apiHash Hash of the API data + * @return bool + */ + static function isValidApi(string $apiName, string $apiHash): bool { + $apiName = $apiName; + + if (file_exists(self::$pathCacheDir['feed'] . '/' . $apiName . '.html')) { + $cacheHashFile = sha1_file(self::$pathCacheDir['feed'] . '/' . $apiName . '.html'); + + if ($cacheHashFile === $apiHash) { + return true; + } + } + return false; + } + + /** + * Validates the API by checking if the cache file exists and if its hash + * matches the provided API hash + * + * @param string $apiName The name of the API + * @param string $apiHash Hash of the API data + * @return bool + */ + static function isValidConfig(): bool { + if (file_exists(__DIR__ . '/../datas/config.json')) { + $configLastMod = filemtime(__DIR__ . '/../datas/config.json'); + if (file_exists(self::$pathCacheDir['home'] . '/home.html') && filemtime(self::$pathCacheDir['home'] . '/home.html') > $configLastMod) { + return true; + } + } + + Cache::clearCache('posts'); + Cache::clearCache('post'); + Cache::clearCache('page'); + Cache::clearCache('feed'); + + return false; + } + + /** + * Retrieves the contents of a cached file for the given request URL + * + * @param string $cacheName The requested URL to retrieve the cached content for + * @param string $cacheDir The directory where the cache is stored' + * @return string The contents of the cached file + */ + static function getCache(string $cacheName, string $cacheDir = 'page'): ?string { + $cacheFilename = self::$pathCacheDir[$cacheDir] . '/' . $cacheName; + if (file_exists($cacheFilename)) { + return file_get_contents($cacheFilename); + } + return null; + } + + /** + * Stores the given HTML content in a cache file for the specified request URL + * + * @param string $cacheName The requested URL + * @param string $htmlPage The HTML content to be cached + * @param string $cacheDir The directory where the cache will be stored + * @return void + */ + static function setCache(string $cacheName, string $htmlPage, string $cacheDir = 'page'): void { + file_put_contents(self::$pathCacheDir[$cacheDir] . '/' . $cacheName, $htmlPage); + } + + /** + * Clears all HTML cache files in the specified cache directory + * + * @return void + */ + static function clearCache($type): void { + array_map('unlink', glob(self::$pathCacheDir[$type] . "/*.html")); + } + + /** + * Deletes the cache file for the specified request URL + * + * @param string $cacheName The URL for unvalidate cache + * @param string $cacheDir The directory where the cache is stored + * @return void + */ + static function unValidateCache(string $cacheName, string $cacheDir = 'page'): void { + if (file_exists(self::$pathCacheDir[$cacheDir] . '/' . $cacheName)) { + unlink(self::$pathCacheDir[$cacheDir] . '/' . $cacheName); + } + } +} diff --git a/app/Controllers/Dev.php b/app/Controllers/Dev.php new file mode 100644 index 0000000..4717172 --- /dev/null +++ b/app/Controllers/Dev.php @@ -0,0 +1,93 @@ + Config::loadConfig()]; + + $params['config']['cron'] = true; + //Debug::n_print($params); + + //Cache::clearCache('feed'); + //Cache::clearCache('page'); + //Cache::clearCache('post'); + Cache::clearCache('posts'); + + $shaarli = new Shaarli($params); + if (Cache::isValidFeed('shaarli', $shaarli->shaarliFeedUpdate)) { + $shaarliCache = Cache::getCache('shaarli', 'feed'); + $shaarliRegenCache = 'Shaarli : cache'; + } else { + Cache::unValidateCache('shaarli', 'feed'); + Cache::unValidateCache('/', 'page'); + $shaarli->getLastBookmark(); + $shaarliCache = $shaarli->makeList(); + Cache::setCache('shaarli', $shaarliCache, 'feed'); + $shaarliRegenCache = 'Shaarli : regen'; + } + + $nanogal = new NanoGal($params); + if (Cache::isValidFeed('nanogal', $nanogal->nanogalFeedUpdate)) { + $nanogalCache = Cache::getCache('nanogal', 'feed'); + $nanogalRegenCache = 'Nanogal : cache'; + } else { + Cache::unValidateCache('nanogal', 'feed'); + Cache::unValidateCache('/', 'page'); + $nanogal->getLastBookmark(); + $nanogalCache = $nanogal->makeList(); + Cache::setCache('nanogal', $nanogalCache, 'feed'); + $nanogalRegenCache = 'Nanogal : regen'; + } + + $gitea = new Gitea($params); + $gitea->getLastRepo(); + $repoCache = $gitea->makeList(); + + if (Cache::isValidApi('gitea', $gitea->giteaHash)) { + $repoCache = Cache::getCache('gitea', 'feed'); + $giteaRegenCache = 'Gitea : cache'; + } else { + Cache::unValidateCache('gitea', 'feed'); + Cache::unValidateCache('/', 'page'); + Cache::setCache('gitea', $repoCache, 'feed'); + $giteaRegenCache = 'Gitea : regen'; + } + + $post = new Blogs($params); + + $post->getLastPost(); + $postCache = $post->makeList(); + + if (Cache::isValidApi('posts', $post->postsHash)) { + $postCache = Cache::getCache('posts', 'feed'); + $postRegenCache = 'Post : cache'; + } else { + Cache::unValidateCache('posts', 'feed'); + Cache::unValidateCache('/', 'page'); + Cache::setCache('posts', $postCache, 'feed'); + $postRegenCache = 'Post : regen'; + } + + require __DIR__ . '/../../template/dev.php'; + $content = ob_get_contents(); + ob_end_clean(); + return $content; + } + + function title() { + return $this->title; + } +} diff --git a/app/Controllers/Home.php b/app/Controllers/Home.php new file mode 100644 index 0000000..340fc2b --- /dev/null +++ b/app/Controllers/Home.php @@ -0,0 +1,85 @@ +getLastBookmark(); + $shaarliCache = $shaarli->makeList(); + if ($params['config']['useCache'] === true) { + Cache::setCache('shaarli.html', $shaarliCache, 'feed'); + } + $lastShaare = $shaarliCache; + } + + $lastAppsUpdates = Cache::getCache('gitea.html', 'feed'); + if ($lastAppsUpdates === null) { + $gitea = new Gitea($params); + $gitea->getLastRepo(); + $repoCache = $gitea->makeList(); + Cache::unValidateCache('gitea.html', 'feed'); + Cache::unValidateCache('home.html', 'page'); + if ($params['config']['useCache'] === true) { + Cache::setCache('gitea.html', $repoCache, 'feed'); + } + $lastAppsUpdates = $repoCache; + } + + $lastPost = Cache::getCache('posts.html', 'feed'); + if ($lastPost === null) { + $post = new Blogs($params); + $post->getLastPost(); + $postCache = $post->makeList(); + Cache::unValidateCache('posts.html', 'feed'); + Cache::unValidateCache('home.html', 'page'); + if ($params['config']['useCache'] === true) { + Cache::setCache('posts.html', $postCache, 'feed'); + } + $lastPost = $postCache; + } + + $lastPics = Cache::getCache('nanogal.html', 'feed'); + if ($lastPics === null) { + $nanogal = new NanoGal($params); + Cache::unValidateCache('nanogal.html', 'feed'); + Cache::unValidateCache('home.html', 'page'); + $nanogal->getLastBookmark(); + $nanogalCache = $nanogal->makeList(); + if ($params['config']['useCache'] === true) { + Cache::setCache('nanogal.html', $nanogalCache, 'feed'); + } + $lastPics = $nanogalCache; + } + + require __DIR__ . '/../../template/home.php'; + $content = ob_get_contents(); + ob_end_clean(); + return $content; + } + + function title() { + return $this->title; + } +} diff --git a/app/Controllers/Page.php b/app/Controllers/Page.php new file mode 100644 index 0000000..d0685a0 --- /dev/null +++ b/app/Controllers/Page.php @@ -0,0 +1,47 @@ +title = $page = str_replace('/', '', $params['requestUrl']); + $author = $params['config']['author']; + + if (file_exists('../datas/pages/' . $page . '.md')) { + $pageContent = file_get_contents('../datas/pages/' . $page . '.md'); + + $modifiedDate = \DateTime::createFromFormat("U", filemtime('../datas/pages/' . $page . '.md')); + $lastMod = $modifiedDate->format(\DateTime::ATOM); + } else { + $pageContent = file_get_contents('../datas/pages/404.md'); + } + + $pageContent = RenderHtml::markdownToHtml($pageContent); + + require __DIR__ . '/../../template/page.php'; + + $content = ob_get_contents(); + ob_end_clean(); + return $content; + } + + function title() { + return ucfirst($this->title); + } + + +} diff --git a/app/Controllers/Post.php b/app/Controllers/Post.php new file mode 100644 index 0000000..23db9c4 --- /dev/null +++ b/app/Controllers/Post.php @@ -0,0 +1,38 @@ +returnPostInfo($params['slug']); + $postContent = $posts->findPostBySlug($params['slug']); + $postContent = RenderHtml::markdownToHtml($postContent); + $this->title = $postInfo['title']; + $author = $params['config']['author']; + + require __DIR__ . '/../../template/post.php'; + $content = ob_get_contents(); + ob_end_clean(); + return $content; + } + + function title() { + return $this->title; + } +} diff --git a/app/Controllers/Posts.php b/app/Controllers/Posts.php new file mode 100644 index 0000000..f3395e0 --- /dev/null +++ b/app/Controllers/Posts.php @@ -0,0 +1,51 @@ +page = $params['page']; + + $posts = new Blogs($params); + + $list = $posts->makeList(); + + if (!empty($params['extraParams'])) { + if (isset($params['extraParams']['year']) && (int)$params['extraParams']['year']) { + $posts->findPostByYear($params['extraParams']['year']); + } + } + $getPostList = $posts->getFilesForPage($params['page']); + $pagination = $posts->makePagination($params['page']); + + require __DIR__ . '/../../template/posts.php'; + $content = ob_get_contents(); + ob_end_clean(); + return $content; + } + + function title() { + return $this->title; + } +} diff --git a/app/Fetching/ApiFeed.php b/app/Fetching/ApiFeed.php new file mode 100644 index 0000000..eb53e92 --- /dev/null +++ b/app/Fetching/ApiFeed.php @@ -0,0 +1,26 @@ +request('GET', $url); + $this->json = json_decode($response->getBody(), true); + return $this; + } catch (\Exception $e) { + echo 'Catch in : ', $e->getMessage(), "\n"; + } + } +} diff --git a/app/Fetching/Gitea.php b/app/Fetching/Gitea.php new file mode 100644 index 0000000..0288a3b --- /dev/null +++ b/app/Fetching/Gitea.php @@ -0,0 +1,77 @@ +giteaFeed = $feed->load($params['config']['fetching']['Gitea']); + $this->numberEntry = $params['config']['numberOfLastItem']; + + return $this; + } + + /** + * Retrieves a list of the most recently updated repositories that are not archived + * + * @return array List of repositories with their name, URL, and last update timestamp + */ + public function getLastRepo(): array { + $repoList = []; + if (count($this->giteaFeed->json) > 0) { + foreach ($this->giteaFeed->json as $value) { + if ($value['archived'] === false) { + $timestamp = new \DateTimeImmutable($value['updated_at']); + $timestamp = (int)$timestamp->format("U"); + $repoList[$timestamp] = [ + 'name' => $value['name'], + 'url' => $value['html_url'], + 'update_at' => $value['updated_at'] + ]; + } + } + krsort($repoList); + $repoList = array_slice($repoList, 0, $this->numberEntry); + $this->repoList = $repoList; + } + return $repoList; + } + + /** + * Generates an HTML list of repositories from the repo list + * + * @return string|null The HTML string of the repository list or null if the repo list is empty + */ + public function makeList(): ?string { + if (!empty($this->repoList)) { + $htmlRepo = '
      '; + foreach ($this->repoList as $value) { + $htmlRepo .= + ' +
    • + ' . $value['name'] . ' +
    • '; + } + $htmlRepo .= ' +
    '; + $this->giteaHash = sha1($htmlRepo); + + return $htmlRepo; + } + return null; + } +} diff --git a/app/Fetching/NanoGal.php b/app/Fetching/NanoGal.php new file mode 100644 index 0000000..6287be5 --- /dev/null +++ b/app/Fetching/NanoGal.php @@ -0,0 +1,76 @@ +nanogalFeed = $feed->load($params['config']['fetching']['NanoGal']); + $this->nanogalFeedUpdate = $feed->lastUpdate(); + $this->numberEntry = $params['config']['numberOfLastItem']; + + return $this; + } + + /** + * Retrieves the latest images from the NanoGal feed + * + * @return array Returns an array of bookmarks + */ + public function getLastBookmark(): array { + $totalEntry = count($this->nanogalFeed->xml->entry); + + if ($totalEntry <= $this->numberEntry) { + $needItem = $totalEntry; + } else { + $needItem = $this->numberEntry; + } + + for ($i = 0; $i < $needItem; $i++) { + $bookmarkList[] = [ + 'title' => (string)$this->nanogalFeed->xml->entry[$i]->title[0], + 'content' => (string)$this->nanogalFeed->xml->entry[$i]->content, + ]; + } + $this->bookmarkList = $bookmarkList; + return $bookmarkList; + } + + /** + * Generates an HTML list of bookmarks from the bookmark list + * + * @return string|null Returns the generated HTML string of bookmarks + */ + public function makeList(): ?string { + if (!empty($this->bookmarkList)) { + + $htmlBookmark = ''; + foreach ($this->bookmarkList as $value) { + $htmlBookmark .=' +
    + ' . $value['content'] . ' +
    ' . $value['title'] . '
    +
    '; + } + $htmlBookmark .= ' + '; + return $htmlBookmark; + } + return null; + } +} diff --git a/app/Fetching/RssFeed.php b/app/Fetching/RssFeed.php new file mode 100644 index 0000000..ffa8cb8 --- /dev/null +++ b/app/Fetching/RssFeed.php @@ -0,0 +1,47 @@ + array( + 'verify_peer' => false, + 'verify_peer_name' => false + ))); + + libxml_set_streams_context($context);*/ + + $xml = simplexml_load_file($url, 'SimpleXMLElement', LIBXML_NOCDATA); + $this->xml = $xml; + return $this; + } catch (\Exception $e) { + echo 'Catch in : ', $e->getMessage(), "\n"; + } + } + + /** + * Retrieves the last update time from feed + * + * @return string The timestamp of the last update + */ + public function lastUpdate(): string { + $feedUpdateTime = new DateTimeImmutable((string)$this->xml->updated); + return $feedUpdateTime->format("U"); + } +} diff --git a/app/Fetching/Shaarli.php b/app/Fetching/Shaarli.php new file mode 100644 index 0000000..37e08fb --- /dev/null +++ b/app/Fetching/Shaarli.php @@ -0,0 +1,76 @@ +shaarliFeed = $feed->load($params['config']['fetching']['Shaarli']); + $this->shaarliFeedUpdate = $feed->lastUpdate(); + $this->numberEntry = $params['config']['numberOfLastItem']; + + return $this; + } + + /** + * Retrieves the latest images from the Shaarli feed + * + * @return array $bookmakList Array of last bookmark + */ + public function getLastBookmark(): array { + $totalEntry = count($this->shaarliFeed->xml->entry); + + if ($totalEntry <= $this->numberEntry) { + $needItem = $totalEntry; + } else { + $needItem = $this->numberEntry; + } + + for ($i = 0; $i < $needItem; $i++) { + $bookmarkList[] = [ + 'title' => (string)$this->shaarliFeed->xml->entry[$i]->title[0], + 'link' => (string)$this->shaarliFeed->xml->entry[$i]->link[0]->attributes()[0], + 'permalink' => (string)$this->shaarliFeed->xml->entry[$i]->id[0], + ]; + } + $this->bookmarkList = $bookmarkList; + return $bookmarkList; + } + + /** + * Generates an HTML list of images from the images list + * + * @return string|null Returns the generated HTML string of images + */ + public function makeList(): ?string { + if (!empty($this->bookmarkList)) { + $htmlBookmark = '
      '; + foreach ($this->bookmarkList as $value) { + $htmlBookmark .= + ' +
    • + ' . $value['title'] . ' +
    • '; + } + $htmlBookmark .= ' +
    '; + return $htmlBookmark; + } + return null; + } +} diff --git a/app/Router.php b/app/Router.php new file mode 100644 index 0000000..94d3964 --- /dev/null +++ b/app/Router.php @@ -0,0 +1,96 @@ +[a-zA-Z0-9_-]+)', $url); + $this->routes[] = array($method, '#^' . $url . '$#', $target); + } + + /** + * Matches the current request against defined routes and returns the target and parameters. + * + * @param array $config The configuration array + * @return array|false Returns an array containing the target and parameters + */ + public function match(array $config): array|false { + $requestMethod = $_SERVER['REQUEST_METHOD']; + $this->requestUrl = $requestUrl = strtok($_SERVER['REQUEST_URI'], '?'); + + parse_str(parse_url($_SERVER['REQUEST_URI'], PHP_URL_QUERY), $extraParams); + + foreach ($this->routes as $route) { + list($method, $url, $target) = $route; + + if ($requestMethod === $method) { + if (preg_match($url, $requestUrl, $params)) { + $slug = new Slugify(); + if ($requestUrl === '/') { + $requestUrl = 'home'; + } + $params = array_filter($params, 'is_string', ARRAY_FILTER_USE_KEY); + $params['requestUrl'] = $requestUrl; + $params['cacheName'] = $slug->slugify($requestUrl . '_' . implode('-', $extraParams)) . '.html'; + $params['type'] = $this->getType($target); + $params['config'] = $config; + $params['extraParams'] = $extraParams; + $this->match['requestUrl'] = $requestUrl; + $this->match = array('target' => $target, 'params' => $params); + return $this->match; + } + } + } + return false; + } + + /** + * Retrieves the type of the target by extracting and normalizing its name + * + * @param string $target The fully qualified name of the target + * @return string The lowercase name of the target without its namespace + */ + private function getType(string $target): string { + return strtolower(basename(str_replace('\\', '/', $target))); + } + + /** + * Renders the content by invoking the matched target's index method + * + * @return string The rendered content as a string + */ + public function render(): string { + $target = $this->match['target']; + $params = [$this->match['params']]; + $author = $params[0]['config']['author']; + $siteName = $params[0]['config']['siteName']; + $navLinks = $params[0]['config']['navLinks']; + $className = '\\' . $target; + $controller_instance = new $className(); + $content = call_user_func_array(array($controller_instance, 'index'), $params); + $title = $controller_instance->title(); + ob_start(); + require_once __DIR__ . '/../template/bone.php'; + + $contentFinal = ob_get_contents(); + ob_end_clean(); + return $contentFinal; + } +} diff --git a/app/Utils/Config.php b/app/Utils/Config.php new file mode 100644 index 0000000..1b5f2ec --- /dev/null +++ b/app/Utils/Config.php @@ -0,0 +1,28 @@ + 'My super page', + 'author' => 'Me !!!', + 'useCache' => false, + 'postPerPage' => 5, + 'numberOfLastItem' => 5, + 'debug' => false, + 'fetching' => [], + 'navLinks' => [] + ]; + + /** + * Loads the configuration from file + * + * @return array The configuration data + */ + static function loadConfig(): array { + if (file_exists(__DIR__ . "/../../datas/config.json")) { + self::$config = json_decode(file_get_contents(__DIR__ . '/../../datas/config.json'), true); + } + return self::$config; + } +} \ No newline at end of file diff --git a/app/Utils/Debug.php b/app/Utils/Debug.php new file mode 100644 index 0000000..53eefe5 --- /dev/null +++ b/app/Utils/Debug.php @@ -0,0 +1,23 @@ +', $name, ''; + echo '
    '; + echo '', $aBackTrace[0]['file'], ' ligne => ', $aBackTrace[0]['line'], ''; + echo '
    ', htmlentities(print_r($data, 1)), '
    '; + echo '

    '; + } +} diff --git a/app/Utils/RenderHtml.php b/app/Utils/RenderHtml.php new file mode 100644 index 0000000..6f4c67d --- /dev/null +++ b/app/Utils/RenderHtml.php @@ -0,0 +1,92 @@ + [ + 'disallowed_tags' => [ + 'title', + 'textarea', + 'style', + 'xmp', + 'iframe', + 'noembed', + 'noframes', + 'script', + 'plaintext' + ], + ], + 'table_of_contents' => [ + 'html_class' => 'table-of-contents', + 'min_heading_level' => 3, + 'max_heading_level' => 6, + 'normalize' => 'relative', + 'placeholder' => null, + ], + 'heading_permalink' => [ + 'html_class' => '', + 'apply_id_to_heading' => false, + 'min_heading_level' => 3, + 'max_heading_level' => 6, + 'symbol' => '', + ], + 'table' => [ + 'wrap' => [ + 'enabled' => false, + 'tag' => 'div', + 'attributes' => [], + ], + 'alignment_attributes' => [ + 'left' => ['align' => 'left'], + 'center' => ['align' => 'center'], + 'right' => ['align' => 'right'], + ], + ], + 'mentions' => [ + 'tag_handle' => [ + 'prefix' => '#', + 'pattern' => '[a-z\d](?:[a-z\d]|-(?=[a-z\d])){0,38}(?!\w)', + 'generator' => '/tag/%s', + ] + ], + 'external_link' => [ + 'internal_hosts' => 'site.knah-tsaeb.local', // TODO: Don't forget to set this! + 'open_in_new_window' => true, + 'html_class' => 'external-link', + 'nofollow' => '', + 'noopener' => 'external', + 'noreferrer' => 'external', + ], + ]; + + $environment = new Environment($config); + $environment->addExtension(new CommonMarkCoreExtension()); + $environment->addExtension(new MentionExtension()); + $environment->addExtension(new TableExtension()); + $environment->addExtension(new TableOfContentsExtension()); + $environment->addExtension(new ExternalLinkExtension()); + $environment->addExtension(new HeadingPermalinkExtension()); + $environment->addExtension(new DisallowedRawHtmlExtension()); + + $converter = new MarkdownConverter($environment); + return $converter->convert($content); + } +} diff --git a/app/Utils/Selected.php b/app/Utils/Selected.php new file mode 100644 index 0000000..5eaae74 --- /dev/null +++ b/app/Utils/Selected.php @@ -0,0 +1,16 @@ + Config::loadConfig()]; + +$params['config']['cron'] = true; + +$shaarli = new Shaarli($params); +if (Cache::isValidFeed('shaarli', $shaarli->shaarliFeedUpdate)) { + $shaarliCache = Cache::getCache('shaarli.html', 'feed'); + $shaarliRegenCache = 'Shaarli : cache'; +} else { + Cache::unValidateCache('shaarli.html', 'feed'); + Cache::unValidateCache('home.html', 'page'); + $shaarli->getLastBookmark(); + $shaarliCache = $shaarli->makeList(); + Cache::setCache('shaarli.html', $shaarliCache, 'feed'); + $shaarliRegenCache = 'Shaarli : regen'; +} + +$nanogal = new NanoGal($params); +if (Cache::isValidFeed('nanogal', $nanogal->nanogalFeedUpdate)) { + $nanogalCache = Cache::getCache('nanogal.html', 'feed'); + $nanogalRegenCache = 'Nanogal : cache'; +} else { + Cache::unValidateCache('nanogal.html', 'feed'); + Cache::unValidateCache('home.html', 'page'); + $nanogal->getLastBookmark(); + $nanogalCache = $nanogal->makeList(); + Cache::setCache('nanogal.html', $nanogalCache, 'feed'); + $nanogalRegenCache = 'Nanogal : regen'; +} + +$gitea = new Gitea($params); +$gitea->getLastRepo(); +$repoCache = $gitea->makeList(); + +if (Cache::isValidApi('gitea', $gitea->giteaHash)) { + $repoCache = Cache::getCache('gitea.html', 'feed'); + $giteaRegenCache = 'Gitea : cache'; +} else { + Cache::unValidateCache('gitea.html', 'feed'); + Cache::unValidateCache('home.html', 'page'); + Cache::setCache('gitea.html', $repoCache, 'feed'); + $giteaRegenCache = 'Gitea : regen'; +} + +$post = new Blogs($params); +$post->getLastPost(); +$postCache = $post->makeList(); + +if (Cache::isValidApi('posts', $post->postsHash)) { + $postCache = Cache::getCache('posts.html', 'feed'); + $postRegenCache = 'Post : cache'; +} else { + Cache::unValidateCache('posts', 'feed'); + Cache::unValidateCache('home.html', 'page'); + Cache::clearCache('posts'); + Cache::setCache('posts.html', $postCache, 'feed'); + $postRegenCache = 'Post : regen'; +} + +$client = new \GuzzleHttp\Client(); +$response = $client->request('GET', 'http://site.knah-tsaeb.local/'); +echo "\n".$response->getStatusCode()."\n"; \ No newline at end of file diff --git a/cache/feed/.gitkeep b/cache/feed/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/cache/page/.gitkeep b/cache/page/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/cache/post/.gitkeep b/cache/post/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/cache/posts/.gitkeep b/cache/posts/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d3ace4b --- /dev/null +++ b/composer.json @@ -0,0 +1,13 @@ +{ + "require": { + "league/commonmark": "^2.5", + "guzzlehttp/guzzle": "^7.9", + "cocur/slugify": "^4.6" + }, + "autoload": { + "psr-4": { + "App\\" : "app/" + } + } + +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..b8eb6a3 --- /dev/null +++ b/composer.lock @@ -0,0 +1,1230 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "bcb10088b537a6ab55328a81fb06662f", + "packages": [ + { + "name": "cocur/slugify", + "version": "v4.6.0", + "source": { + "type": "git", + "url": "https://github.com/cocur/slugify.git", + "reference": "1d674022e9cbefa80b4f51aa3e2375b6e3c14fdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/cocur/slugify/zipball/1d674022e9cbefa80b4f51aa3e2375b6e3c14fdb", + "reference": "1d674022e9cbefa80b4f51aa3e2375b6e3c14fdb", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + }, + "conflict": { + "symfony/config": "<3.4 || >=4,<4.3", + "symfony/dependency-injection": "<3.4 || >=4,<4.3", + "symfony/http-kernel": "<3.4 || >=4,<4.3", + "twig/twig": "<2.12.1" + }, + "require-dev": { + "laravel/framework": "^5.0|^6.0|^7.0|^8.0", + "latte/latte": "~2.2", + "league/container": "^2.2.0", + "mikey179/vfsstream": "~1.6.8", + "mockery/mockery": "^1.3", + "nette/di": "~2.4", + "pimple/pimple": "~1.1", + "plumphp/plum": "~0.1", + "symfony/config": "^3.4 || ^4.3 || ^5.0 || ^6.0", + "symfony/dependency-injection": "^3.4 || ^4.3 || ^5.0 || ^6.0", + "symfony/http-kernel": "^3.4 || ^4.3 || ^5.0 || ^6.0", + "symfony/phpunit-bridge": "^5.4 || ^6.0", + "twig/twig": "^2.12.1 || ~3.0", + "zendframework/zend-modulemanager": "~2.2", + "zendframework/zend-servicemanager": "~2.2", + "zendframework/zend-view": "~2.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cocur\\Slugify\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Florian Eckerstorfer", + "email": "florian@eckerstorfer.co", + "homepage": "https://florian.ec" + }, + { + "name": "Ivo Bathke", + "email": "ivo.bathke@gmail.com" + } + ], + "description": "Converts a string into a slug.", + "keywords": [ + "slug", + "slugify" + ], + "support": { + "issues": "https://github.com/cocur/slugify/issues", + "source": "https://github.com/cocur/slugify/tree/v4.6.0" + }, + "time": "2024-09-10T14:09:25+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.9.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2024-07-24T11:22:20+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2024-07-18T10:29:17+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.7.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.7.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2024-07-18T11:15:46+00:00" + }, + { + "name": "league/commonmark", + "version": "2.5.3", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "b650144166dfa7703e62a22e493b853b58d874b0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0", + "reference": "b650144166dfa7703e62a22e493b853b58d874b0", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 || ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.6-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2024-08-16T11:46:16+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.3" + }, + "require-dev": { + "nette/tester": "^2.4", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.0" + }, + "time": "2023-12-11T11:54:22+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.5", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "shasum": "" + }, + "require": { + "php": "8.0 - 8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.5" + }, + "time": "2024-08-07T15:39:19+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [], + "plugin-api-version": "2.6.0" +} diff --git a/datas/drafts/.gitkeep b/datas/drafts/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/datas/pages/.gitkeep b/datas/pages/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/datas/posts/.gitkeep b/datas/posts/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..b9c18cf --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,10 @@ +RewriteEngine on + +Redirect 301 /bookmarks https://book.knah-tsaeb.org +Redirect 301 /gallery https://img.knah-tsaeb.org + + +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d + +RewriteRule ^(.*)$ index.php?id=$1 [QSA,L] \ No newline at end of file diff --git a/public/assets/css/app-min.css b/public/assets/css/app-min.css new file mode 100644 index 0000000..ada76eb --- /dev/null +++ b/public/assets/css/app-min.css @@ -0,0 +1 @@ +:root{color-scheme:dark light;--primary:#cc2027;--primary-darken:#8E161B;--primary-lighten:#D64C52;--primary-text-contrast:#FFF;--secondary:#20ccc5;--secondary-darken:#168E89;--secondary-lighten:#4CD6D0;--secondary-text-contrast:#000;--error:#c43933;--error-darken:#892723;--error-lighten:#CF605B;--error-text-contrast:#FFF;--info:#206ccc;--info-darken:#164B8E;--info-lighten:#4C89D6;--info-text-contrast:#FFF;--success:#7dcc20;--success-darken:#578E16;--success-lighten:#97D64C;--success-text-contrast:#000;--warning:#cc5e20;--warning-darken:#8E4116;--warning-lighten:#D67E4C;--warning-text-contrast:#FFF;--background-color:light-dark(#fffbfb,#171414);--background-color-darken:light-dark(#B2AFAF,#100E0E);--background-color-lighten:light-dark(#FFFBFB,#454343);--light-background-color:#fffbfb;--dark-background-color:#171414;--header-background-color:light-dark(#171414,#fffbfb);--header-background-color-darken:light-dark(#100E0E,#B2AFAF);--header-background-color-lighten:light-dark(#454343,#FFFBFB);--header-text-color:light-dark(#fffbfb,#171414);--header-text-color-secondary:#ffffffb3;--header-text-color-disable:light-dark(#ffffff80,#454343);--text-color:light-dark(#171414,#fffbfb);--text-color-secondary:#ffffffb3;--text-color-disable:light-dark(#454343,#ffffff80);--light-text-color:#171414;--dark-text-color:#fffbfb;--text-color-inverse:light-dark(#fffbfb,#171414);--text-color-secondary-inverse:#ffffffb3;--text-color-disable-inverse:light-dark(#ffffff80,#454343);--box-shadow-light:.4rem .4rem 0 .1rem #B2AFAF;--box-shadow-dark:.4rem .4rem 0 .1rem #454343;--box-shadow-auto:.4rem .4rem 0 .1rem light-dark(#B2AFAF,#454343);--h1-color:var(--primary);--h2-color:#c33d35;--h3-color:#b94f44;--h4-color:#ae5e52;--h5-color:#a16a61;--h6-color:#927671;--font-size:1.1em;--default-space:.2em;}[data-theme=dark]{color-scheme:dark;}[data-theme="light"]{color-scheme:light;}*,*::before,*::after{box-sizing:border-box;}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none;}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin-block-end:0;}ul[role='list'],ol[role='list']{list-style:none;}body{min-height:100vh;line-height:1.5;}h1,h2,h3,h4,h4,h5,h6,button,input,label{line-height:1.1;}h1,h2,h3,h4,h5,h6{text-wrap:balance;margin:calc(var(--default-space)*2);}input,button,textarea,select{font-family:inherit;font-size:inherit;}textarea:not([rows]){min-height:10em;}:target{scroll-margin-block:5ex;}a{color:var(--primary);text-decoration:none;}a:hover{color:var(--primary-lighten);text-decoration:underline var(--primary-darken);}a[target="_blank"]::after,a.external::after{content:'&nsp;';display:inline-block;width:1em;height:1em;--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -6 24 28'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 6H7a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-5m-6 0l7.5-7.5M15 3h6v6'/%3E%3C/svg%3E");background-color:currentColor;mask-image:var(--svg);mask-repeat:no-repeat;mask-size:100% 100%;}h1{color:var(--h1-color);font-size:calc(var(--font-size) * 1.6);}h2{color:var(--h2-color);font-size:calc(var(--font-size) * 1.5);}h3{color:var(--h3-color);font-size:calc(var(--font-size) * 1.4);}h4{color:var(--h4-color);font-size:calc(var(--font-size) * 1.3);}h5{color:var(--h5-color);font-size:calc(var(--font-size) * 1.2);}h6{color:var(--h6-color);font-size:calc(var(--font-size) * 1.1);}table{border-collapse:collapse;}table,th,td{border:1px solid var(--primary-darken);}th{padding:calc(var(--default-space)*2);background-color:var(--primary-lighten);color:var(--primary-text-contrast);}td{padding:var(--default-space)}html{background-color:var(--background-color);scroll-behavior:smooth;}body{width:80vw;margin:0 auto;min-height:100vh;min-height:100dvh;text-rendering:optimizeSpeed;font-size:var(--font-size);}header{background-color:transparent;}header h1 img{display:inline;}header h1{color:var(--primary);}header svg{fill:var(--primary-lighten);vertical-align:middle;}nav{width:100%;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;}nav h1,nav ul{margin:0;}nav h1 img{margin-right:var(--default-space);vertical-align:middle;}nav ul{display:flex;gap:calc(var(--default-space) * 2);flex-wrap:wrap;padding:0;}nav li{margin:var(--default-space);list-style:none;font-size:calc(var(--font-size) * 1.2);}nav li a{color:var(--primary-lighten);}nav li a:hover,nav .active{color:var(--primary-lighten);text-decoration:underline var(--primary-darken);text-decoration-thickness:var(--default-space);}section h2{font-size:calc(var(--font-size) * 1.6);color:var(--h2-color);margin:0;}section,article{align-self:center;color:var(--light-text-color);background-color:var(--light-background-color);padding:calc(var(--default-space) * 2);border:1px solid var(--background-color-darken);border-radius:calc(var(--default-space) * 1.2);margin:calc(var(--default-space) *5) 0;box-shadow:var(--box-shadow-light);}.last-pics article{box-shadow:none;}.home{display:grid;grid-template-columns:repeat(7,1fr);gap:calc(var(--default-space) *5);width:100%;height:100%;article{margin:var(--default-space) 0;padding:0}.last-pics article{display:flex;flex-wrap:wrap;justify-content:center;box-shadow:none;border:none}figure{width:min-content;display:grid}figcaption{overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}}.blog{section{display:flex;flex-wrap:wrap;justify-content:center;justify-content:space-around;gap:calc(var(--default-space)*3)}.article-card article{width:24vw;padding:var(--default-space);border-radius:calc(var(--default-space) *2)}.breadcrumb{ul{gap:0}li{margin:auto 0}li:not(:last-child)::after{content:">"}}.blog-page-number{text-align:left;display:inherit}.card{box-shadow:none;width:25vw}}.pagination{gap:0;}.pagination li{border:1px solid var(--primary-darken);margin:0;}.pagination li a{padding:var(--default-space) calc(var(--default-space)*2);display:block;}.pagination li a:hover,.pagination li a.current{text-decoration:none;background-color:var(--primary-lighten);color:var(--primary-text-contrast);}.table-of-contents{float:right;width:25vw;background-color:rgb(178,175,175);border:1px solid var(--primary-lighten);border-radius:calc(var(--default-space) * 1.2);position:sticky;top:calc(var(--default-space) * 2);}.table-of-contents a{text-decoration:none;}.table-of-contents a:hover,.table-of-contents a:active{text-decoration:underline;}.article-footer{border-top:1px solid var(--light-text-color);margin-top:calc(var(--default-space)*3);font-size:1rem;}footer{text-align:center;margin:calc(var(--default-space) *2) auto 0 auto;background-color:transparent;width:fit-content;padding:var(--default-space);}footer .a{color:var(--primary-lighten);}footer p{margin:var(--default-space);font-size:.9rem;}pre{background-color:var(--dark-background-color);color:var(--dark-text-color);padding:calc(var(--default-space) * 4);}@media (max-width:992px){.table-of-contents{float:none;width:auto}.home{grid-template-columns:1fr}.what-is-this{grid-area:1 / 1 / 2 / 2}.social-networks{grid-area:2 / 1 / 3 / 2}.last-posts{grid-area:3 / 1 / 4 / 2}.last-shaares{grid-area:4 / 1 / 5 / 2}.last-apps-updates{grid-area:5 / 1 / 6 / 2}.last-pics{grid-area:6 / 1 / 7 / 2}}@media (min-width:992px){.home{grid-template-columns:repeat(7,1fr)}.what-is-this{grid-area:1 / 1 / 2 / 6}.social-networks{grid-area:1 / 6 / 2 / 8}.last-posts{grid-area:2 / 1 / 4 / 4}.last-shaares{grid-area:2 / 5 / 4 / 8}.last-apps-updates{grid-area:4 / 1 / 5 / 2}.last-pics{grid-area:4 / 2 / 5 / 8}} \ No newline at end of file diff --git a/public/assets/css/app.css b/public/assets/css/app.css new file mode 100644 index 0000000..d1c5769 --- /dev/null +++ b/public/assets/css/app.css @@ -0,0 +1,555 @@ +:root { + color-scheme: dark light; + + --primary: #cc2027; + --primary-darken: #8E161B; + --primary-lighten: #D64C52; + --primary-text-contrast: #FFF; + + --secondary: #20ccc5; + --secondary-darken: #168E89; + --secondary-lighten: #4CD6D0; + --secondary-text-contrast: #000; + + --error: #c43933; + --error-darken: #892723; + --error-lighten: #CF605B; + --error-text-contrast: #FFF; + + --info: #206ccc; + --info-darken: #164B8E; + --info-lighten: #4C89D6; + --info-text-contrast: #FFF; + + --success: #7dcc20; + --success-darken: #578E16; + --success-lighten: #97D64C; + --success-text-contrast: #000; + + --warning: #cc5e20; + --warning-darken: #8E4116; + --warning-lighten: #D67E4C; + --warning-text-contrast: #FFF; + + --background-color: light-dark(#fffbfb, #171414); + --background-color-darken: light-dark(#B2AFAF, #100E0E); + --background-color-lighten: light-dark(#FFFBFB, #454343); + + --light-background-color: #fffbfb; + --dark-background-color: #171414; + + --header-background-color: light-dark(#171414, #fffbfb); + --header-background-color-darken: light-dark(#100E0E, #B2AFAF); + --header-background-color-lighten: light-dark(#454343, #FFFBFB); + + --header-text-color: light-dark(#fffbfb, #171414); + --header-text-color-secondary: #ffffffb3; + --header-text-color-disable: light-dark(#ffffff80, #454343); + + --text-color: light-dark(#171414, #fffbfb); + --text-color-secondary: #ffffffb3; + --text-color-disable: light-dark(#454343, #ffffff80); + + --light-text-color: #171414; + --dark-text-color: #fffbfb; + + --text-color-inverse: light-dark(#fffbfb, #171414); + --text-color-secondary-inverse: #ffffffb3; + --text-color-disable-inverse: light-dark(#ffffff80, #454343); + + --box-shadow-light: .4rem .4rem 0px .1rem #B2AFAF; + --box-shadow-dark: .4rem .4rem 0px .1rem #454343; + --box-shadow-auto: .4rem .4rem 0px .1rem light-dark(#B2AFAF, #454343); + + --h1-color: var(--primary); + --h2-color: #c33d35; + --h3-color: #b94f44; + --h4-color: #ae5e52; + --h5-color: #a16a61; + --h6-color: #927671; + + --font-size: 1.1em; + --default-space: .2em; +} + +[data-theme=dark] { + color-scheme: dark; +} + +[data-theme="light"] { + color-scheme: light; +} + + +/* RESET CSS BY Piccalil.li */ +/* https://piccalil.li/blog/a-more-modern-css-reset/ */ +/* License https://creativecommons.org/licenses/by/3.0/ */ + + +/* Box sizing rules */ +*, +*::before, +*::after { + box-sizing: border-box; +} + +/* Prevent font size inflation */ +html { + -moz-text-size-adjust: none; + -webkit-text-size-adjust: none; + text-size-adjust: none; +} + +/* Remove default margin in favour of better control in authored CSS */ +body, +h1, +h2, +h3, +h4, +p, +figure, +blockquote, +dl, +dd { + margin-block-end: 0; +} + +/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */ +ul[role='list'], +ol[role='list'] { + list-style: none; +} + +/* Set core body defaults */ +body { + min-height: 100vh; + line-height: 1.5; +} + +/* Set shorter line heights on headings and interactive elements */ +h1, +h2, +h3, +h4, +h4, +h5, +h6, +button, +input, +label { + line-height: 1.1; +} + +/* Balance text wrapping on headings */ +h1, +h2, +h3, +h4, +h5, +h6 { + text-wrap: balance; + margin: calc(var(--default-space)*2); +} + +/* Make images easier to work with */ +/*img, +picture { + max-width: 100%; + display: block; +}*/ + +/* Inherit fonts for inputs and buttons */ +input, +button, +textarea, +select { + font-family: inherit; + font-size: inherit; +} + +/* Make sure textareas without a rows attribute are not tiny */ +textarea:not([rows]) { + min-height: 10em; +} + +/* Anything that has been anchored to should have extra scroll margin */ +:target { + scroll-margin-block: 5ex; +} + +a { + color: var(--primary); + text-decoration: none; +} + +a:hover { + color: var(--primary-lighten); + text-decoration: underline var(--primary-darken); +} + +a[target="_blank"]::after, +a.external::after { + content: '&nsp;'; + display: inline-block; + width: 1em; + height: 1em; + --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -6 24 28'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 6H7a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-5m-6 0l7.5-7.5M15 3h6v6'/%3E%3C/svg%3E"); + background-color: currentColor; + mask-image: var(--svg); + mask-repeat: no-repeat; + mask-size: 100% 100%; +} + +h1 { + color: var(--h1-color); + font-size: calc(var(--font-size) * 1.6); +} + +h2 { + color: var(--h2-color); + font-size: calc(var(--font-size) * 1.5); +} + +h3 { + color: var(--h3-color); + font-size: calc(var(--font-size) * 1.4); +} + +h4 { + color: var(--h4-color); + font-size: calc(var(--font-size) * 1.3); +} + +h5 { + color: var(--h5-color); + font-size: calc(var(--font-size) * 1.2); +} + +h6 { + color: var(--h6-color); + font-size: calc(var(--font-size) * 1.1); +} + +table { + border-collapse: collapse; +} + +table, +th, +td { + border: 1px solid var(--primary-darken); +} + +th { + padding: calc(var(--default-space)*2); + background-color: var(--primary-lighten); + color: var(--primary-text-contrast); +} + +td { + padding: var(--default-space) +} + +html { + background-color: var(--background-color); + scroll-behavior: smooth; +} + +body { + width: 80vw; + margin: 0 auto; + min-height: 100vh; + min-height: 100dvh; + text-rendering: optimizeSpeed; + font-size: var(--font-size); +} + +header { + background-color: transparent; +} + +header h1 img { + display: inline; +} + +header h1 { + color: var(--primary); +} + +header svg { + fill: var(--primary-lighten); + vertical-align: middle; +} + +nav { + width: 100%; + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; +} + +nav h1, +nav ul { + margin: 0; +} + +nav h1 img { + margin-right: var(--default-space); + vertical-align: middle; +} + +nav ul { + display: flex; + gap: calc(var(--default-space) * 2); + flex-wrap: wrap; + padding: 0; +} + +nav li { + margin: var(--default-space); + list-style: none; + font-size: calc(var(--font-size) * 1.2); +} + +nav li a { + color: var(--primary-lighten); +} + +nav li a:hover, nav .active { + color: var(--primary-lighten); + text-decoration: underline var(--primary-darken); + text-decoration-thickness: var(--default-space); +} + +section h2 { + font-size: calc(var(--font-size) * 1.6); + color: var(--h2-color); + margin: 0; +} + +section, +article { + align-self: center; + color: var(--light-text-color); + background-color: var(--light-background-color); + padding: calc(var(--default-space) * 2); + border: 1px solid var(--background-color-darken); + border-radius: calc(var(--default-space) * 1.2); + margin: calc(var(--default-space) *5) 0; + box-shadow: var(--box-shadow-light); +} + +.last-pics article { + box-shadow: none; +} + +.home { + display: grid; + grid-template-columns: repeat(7, 1fr); + gap: calc(var(--default-space) *5); + width: 100%; + height: 100%; + + article { + margin: var(--default-space) 0; + padding: 0; + } + + .last-pics article { + display: flex; + flex-wrap: wrap; + justify-content: center; + box-shadow: none; + border: none; + } + + figure { + width: min-content; + display: grid; + } + + figcaption { + overflow: hidden; + text-align: center; + text-overflow: ellipsis; + white-space: nowrap; + } +} + +.blog { + section { + display: flex; + flex-wrap: wrap; + justify-content: center; + justify-content: space-around; + gap: calc(var(--default-space)*3); + } + + .article-card article { + width: 24vw; + padding: var(--default-space); + border-radius: calc(var(--default-space) *2); + } + + .breadcrumb { + ul { + gap: 0; + } + + li { + margin: auto 0; + } + + li:not(:last-child)::after { + content: " > "; + } + } + + .blog-page-number { + text-align: left; + display: inherit; + } + + .card { + box-shadow: none; + width: 25vw; + } +} + +.pagination { + gap: 0; +} + +.pagination li { + border: 1px solid var(--primary-darken); + margin: 0; +} + +.pagination li a { + padding: var(--default-space) calc(var(--default-space)*2); + display: block; +} + +.pagination li a:hover, +.pagination li a.current { + text-decoration: none; + background-color: var(--primary-lighten); + color: var(--primary-text-contrast); +} + +.table-of-contents { + float: right; + width: 25vw; + background-color: rgb(178, 175, 175); + border: 1px solid var(--primary-lighten); + border-radius: calc(var(--default-space) * 1.2); + position: sticky; + top: calc(var(--default-space) * 2); +} + +.table-of-contents a { + text-decoration: none; +} + +.table-of-contents a:hover, +.table-of-contents a:active { + text-decoration: underline; +} + +.article-footer { + border-top: 1px solid var(--light-text-color); + margin-top: calc(var(--default-space)*3); + font-size: 1rem; +} + +footer { + text-align: center; + margin: calc(var(--default-space) *2) auto 0 auto; + background-color: transparent; + width: fit-content; + padding: var(--default-space); +} + +footer .a { + color: var(--primary-lighten); +} + +footer p { + margin: var(--default-space); + font-size: .9rem; +} + +pre { + background-color: var(--dark-background-color); + color: var(--dark-text-color); + padding: calc(var(--default-space) * 4); +} + +/* Smaller than 992px */ + +@media (max-width: 992px) { + .table-of-contents { + float: none; + width: auto; + } + + .home { + grid-template-columns: 1fr; + } + + .what-is-this { + grid-area: 1 / 1 / 2 / 2; + } + + .social-networks { + grid-area: 2 / 1 / 3 / 2; + } + + .last-posts { + grid-area: 3 / 1 / 4 / 2; + } + + .last-shaares { + grid-area: 4 / 1 / 5 / 2; + } + + .last-apps-updates { + grid-area: 5 / 1 / 6 / 2; + } + + .last-pics { + grid-area: 6 / 1 / 7 / 2; + } +} + +/* Larger than 992px */ +@media (min-width: 992px) { + .home { + grid-template-columns: repeat(7, 1fr); + } + + .what-is-this { + grid-area: 1 / 1 / 2 / 6; + } + + .social-networks { + grid-area: 1 / 6 / 2 / 8; + } + + .last-posts { + grid-area: 2 / 1 / 4 / 4; + } + + .last-shaares { + grid-area: 2 / 5 / 4 / 8; + } + + .last-apps-updates { + grid-area: 4 / 1 / 5 / 2; + } + + .last-pics { + grid-area: 4 / 2 / 5 / 8; + } +} \ No newline at end of file diff --git a/public/assets/favicons/android-chrome-192x192.png b/public/assets/favicons/android-chrome-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..fc945e84a8dd36392b4d8a38a9afbc39e42093b7 GIT binary patch literal 14918 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 literal 0 HcmV?d00001 diff --git a/public/assets/favicons/android-chrome-256x256.png b/public/assets/favicons/android-chrome-256x256.png new file mode 100644 index 0000000000000000000000000000000000000000..18828fb79ef093fc36ae5ebc3e4d7b8014bb4e4c GIT binary patch literal 23808 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 literal 0 HcmV?d00001 diff --git a/public/assets/favicons/apple-touch-icon.png b/public/assets/favicons/apple-touch-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ae21e38fc8df065df7fbce1e2ee7731937e857 GIT binary patch literal 13709 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\Q_KT`P&qa<_Ex?Y)VcZVl| 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 literal 0 HcmV?d00001 diff --git a/public/assets/favicons/browserconfig.xml b/public/assets/favicons/browserconfig.xml new file mode 100644 index 0000000..b8270a1 --- /dev/null +++ b/public/assets/favicons/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #2b5797 + + + diff --git a/public/assets/favicons/favicon-16x16.png b/public/assets/favicons/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..cfcee906e53a68a85339abe280928ef5b5f5ef75 GIT binary patch literal 1613 zcmZvce>~HPAICpzwAheIZZyMA6k?kBad$Ije#_V9m=%+a$YM6)OV=i=?!x3(>L%PI zbtPXega`BEG0FVy8mifKx*F-Gj^szayZ`&+^?p8H?|W z1qKi!G&K5G5Rj(YIU15R04EVb2>|dvq5f99j>c);j`H+t22jE0D$`bONr)2#GgT> zXQU-2r!rC8oOC8Co0Sd#(Sl{_vlg*CH1A`S?0{KdrTTRVkVeA_KYW^I`J&LRT@Qpb zbf)%DCGFl*!4nUaJPto?*iA_d*?5ALKKia>V<5PSvF|W4_Ut5;LA4YP9n4={lvWtW zq&`jMFvv5-v1LUrItHdi!<8qB4*`+v0Akc}^pY#7`UKbFpKD`zC9?T#Rj}Ph<8OII zpMsE{t3_9H5;7$8TQEJhcPsM4lGKfsDd2p2=kN44m)fhe=Ll* zcW4Pycaw65jhjnv=IBu~Cm!S8VJz+*To-vknh@co&&h?DY0$@cDo>jtNYt)`-m%V$ ze!FQzR2mqUL@pvkOtGn(%^`Euc@C$;;-{BL#HYfO(gk0J?gXXZ`YK+6g>K}0+}{7q zS>JQJk|x3V=SO4e1tUE0nn2xX(^%d(+I7x*=~hzX;J~;I?6-lWzK1V4i`ljEub?%2 zt$QsgJ-oD>#C_D+|)=vKYB)ncAxcvrOZqYsNbjP#5N6AyBIJ?RXNp~4c$IYqtZLV_^ zs-%{~mc-X9nd(HYRx|;h&+m=KcD4PgQ;Fq^%5aL4Oh-#-)rGlR@M8Q<SQqZ2OAr%^!65%W zNvE9ZQy1!1o?0QD$WqboV?;qDtdV*!z=-M>>7(I}RXMp+76wJNw^$zT_EcZp&cl2rr3a zZ&;kIX(*c4@z)Bw2s|_)xXe0d#rZWd-RJ zbX{Esum9lVe7U8WAH0Sc0YCc=iw*r_!|}I=Eo+uy5svVBAs6AdyA!+;DHqSZ>HF-0 zxV`V6Hj_L26v{GR_|CjLbk*5~bYy8M!b|v!h`f|SGAln5>|pc)J=$DwuFHNxpI#H- zKb!_C)nwnD9zf*)fRoL?(#pPx&(bu13M3LJX49EMszJXqlvw@y>~vyXsQ&Yvs)C3} zg7(hn2iYUtbuVjp=sOU^YVm6W3GP*o^)YkLl$ciR)$2EA-*qu>5qpEK74#e|cN6V; zn3IX9zd@VF8_n=d_VQf<{j>uv4(y3yrRjEDX(x;}+A}V>(`K zg9mGl_5wL^I;6|IX#-8Fs4uQLIh~sT0NJ8H-$Nnn@9pd!A03eezKQ@qHu_Ep`fwX~ zaG41Rjw14o3@|`8trXPA%#%lhvO$Z%T_e1J+8`%jao-;9dmn6tW&{xE7e;LIq38b} D5!=)r literal 0 HcmV?d00001 diff --git a/public/assets/favicons/favicon-32x32.png b/public/assets/favicons/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..124de9c8881ef13da6207d034f73db615135d209 GIT binary patch literal 2023 zcmZvcYdjN*8^^~ca~Wk0(u{DhLQHcnx4B=EO)S|abB&lSZKyW2$aT4i-^zy5*n`tsVsE20l|zi&buYN>N^U7V zJc&nK9J9`~EH$2eSa5lkW8l5nj|^ebAwlKBYv2>Dey)Rq2aGr1S8~D-##}#1yIX3% z%7cO$x;*a8=rgO&NLa(Z@8x#jMos^MH<%pc3*g!`jvl-6?r~!~7zy-9 zb$zc?nmFLX(L48kRs0a&Qk~q};=?sMR)h{)v`~AnC{7siOu!U|hJ^dw4g^?BtNn>tbFv z%0j{iZ@HiDXi35-p1N9@5r8zRHXDgo;p!Vw4JLThQ@PJl6J1!FJznlzyfy*OxyskF zD6W`4nk**XN0xiJp`-?_h?5hARe!zeeQO!dfAxbbLTZOBA)qGT`@t?a5OMgVNa?AA zoezKs-&=J~*iM5Gn1~ z(Wj9kQP|PVK)eQeqf zU7yS|h!W?U#f%`-o=~hSA>=P{P|!+O0cB582x!L9=`~yPU5ynp9`gw+kK<$h5GeB; zU$bU7)o`A1i@{b&OA;buae&p3s`=c;YI9JC*(e)(FIurFZ|1jNTR8xc{juT=IV+qN zw@C=oR-+Iq@U7!-u%*rD_~~7%PuQ5gq`T3Hd7c0tbDhi4#Vc$l`@wI+96^hT1OPOO zTH(HeZcfyMGk=M?>0;xJ?5@zSC?BkeVk3zbd_rZEd>gyCqH%lG}pYN{;gTH zo*9c>WafX~)9$-sX6|-yem=l1e+muHjCIo}I_qt`^R52SgG(2lAVw94w>;eY6MzNV zx637Z;3xoqsosB*qSZJgZx8SK`(RzSsid}F&Cn^Ru-68E6M5wP;fPu(DIgFi=bO<% zxISVTT#EG0KF01MTGhJBQw75zk3r~9QAFVgwQ(w?%W(c|{EcRgpdw;$|;C)x>XJx~+S zn>^*XGkjuLnEJ&vGZR<5LqkT;1Aj*^`t9OCWAof0F06&)V0{8C@{G)y+)+H9VLtvPS>!^@ z^g(yqNtcPS>*G`*3j`|W`&J&K89F*=2Fjdu@1w33GL{b1l&OIK0`pY(4r^8zOj$Nr zF+G1Cr;aCT$u-{Lx+uRjCm(9)^kb9cI45O3TG|V1^*-ZE3sqm{aP9_<&wQ}>2A(+m zQ$W!DnDbWEHkI8RSr}^mnTHuoJG?sw5sR2?grDi8a~WivM1rQqdVOQl<;nAtRalUE z_KQ-%#r_NLV9WnpZ!G{F$qi4R_h<-&XFO|>39^2iRHqYTe7YmWNI7I)gq@D5iko4j z_&-u=j?Y-nG43{BdGT|9cy-OefRrIqOEHa}MK9~5Pq=;B7$ptf3*34a9e)Kyu=8yG zo3&umXS6>P8*!Asl|^||f%vm;s+idQUWIZoDf7BAQcIF7>x^*pIUy^t zN=)~$)bCeI#7m2dJw6o`Pw(0#py`U8o9#>Yy11yGcO3 rhgh9~*W-OXgFUbw*#U+}rI#sSPJI`3*%?*5y#nCr>W6N0CZ_)%RK%W= literal 0 HcmV?d00001 diff --git a/public/assets/favicons/favicon.ico b/public/assets/favicons/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..327f9860b140097f95cabfbf364b2f58e399f4de GIT binary patch literal 7406 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 + + + +Created by potrace 1.14, written by Peter Selinger 2001-2017 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/favicons/site.webmanifest b/public/assets/favicons/site.webmanifest new file mode 100644 index 0000000..a2bfb44 --- /dev/null +++ b/public/assets/favicons/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/assets/favicons/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/assets/favicons/android-chrome-256x256.png", + "sizes": "256x256", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/public/assets/icons/humbleicons--external-link.svg b/public/assets/icons/humbleicons--external-link.svg new file mode 100644 index 0000000..987376e --- /dev/null +++ b/public/assets/icons/humbleicons--external-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/icons/moon.svg b/public/assets/icons/moon.svg new file mode 100644 index 0000000..66ff0a9 --- /dev/null +++ b/public/assets/icons/moon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/image/avatar.webp b/public/assets/image/avatar.webp new file mode 100644 index 0000000000000000000000000000000000000000..7830add085ce6fb4b3cc62f60315621aab40c9b0 GIT binary patch literal 17542 zcmaI7W0dYd*DdPi6Q|WdShyrw{?y0c-#U|J4Kja}ECa{7e56TSrr7rvFkvutER;*!IuQ11SIi zkq7{M#r^zzZQ@&Evir+<9h|8OL^002S|0MIh{Kb&DI0MHr= z0AQ@y8#oyJ_dFo~_Q0m50Kk1I005@}0HDkQ0MJ_hD{lX6|FHuKR{#K&f3cF80szu8 z001(xe|2mBU-}LCPw@Z6?f=*3|Bc_jJD1?EAOLXN3CISbq5+}-;$uV)7bYSkM76AT zBLD%dZ}nk=RdxU@i%_b1pS;+K)No&Xto68l1%88U|B~&pIAWdKdFvVRWc#5#w|o4# zH0zDM=(+T5oB7Ob^11iz@SysddiwK|eKGUVT2cDy``X>p-QfGxrRcTk`}!g2bNOzf ztL&rPmpklZ_euY}vpI8zxB7GD_I29xsvF=-{xR}_f88D8yLT)9K)>#L<{S77_UZUG z@{WJK6So7^!hh%K_rv+!@q@q2|H%iH zoA?v^VRH-erTnq-h48R_zO(-G_+xdFdRF_jbJ`8epW|!&)A%jFk@(ZoNiW5}p8F+s z4hR_1xhlx*ojVW~dRE+w z*oATf!MH%I=vl`PUK8ls!MN|DkwC{T7s(;W;=hEOk5T|d))WrDPKJt7f)iRs^wv6D z;a9<7d7Yubb;XzyGaoqD<8ihzor|}fWVBUgB4xI-$r;j`=lp((>DX?0;fqVZotffR zkzaZoV(AQ#kl_21B-6RBmd4J_{~yOqCVNt+#V<8i(oMP3`@}Tv8@f|h%K2gwkaUcm zCi!9h+;8)Lt@k#tFv~zxsEK5B=q}lDtKQ|cm5@e@0q-*M!g`+xe5fGOE~yhF&Yo_dv|@`qaKO z^Nn-QW_u9L0N9_Kw~5;CZ}7f=e~$L*U8Zl54@H~y@%r+v0p4N<0@;29zHagpfi6dE zh#f5vIbl8fgZg@K*FrKCi+{o?`+WsB=M<>~qRQ2THXkMC!E3Q~ zG8tfL9!u$)zLYbw#9TN4szW7GPkrJY@_dDozV17y9-jOJ5_g$f>>9w2Q|&PeM?;5e z5mnp)hKhi#TzHXr#10N_-#hQ^6rnhSHZL_8;wlgvi{YOHX!thkGOe^7n69^dmi>CX zT{#}-I>FELp&{ptJjoG1cqy2Kx#FEfmx5qO^VS%@Sn8L9+J-zWjdl29;U0Ms9~}1F z>m`{o(|oS;Rc$l=&8+T@FP=yEfl1?C)2hv~IXqrHQ4Sk7ofyYR+Dm$sBqB3$M*w{Y zD>td2hJ$@A#4__7@*t>XG~kn3d+HAbS0SS z7h9H-=m`n-i5uQ7?tZ#@x`}g!Uf-Dk=%TY0ipzGX^SX)*4u~a5*AFu*Nwxv)LjMw%K^R_4bcn`=P?%8 z5snA3`Km&HtCZSFVkf%z(**ynlYEd*D;GhiGX#jcU3Vqx!5S{#D*`?+w-!c z$w#3(BZY+UU{+YVQugRtA}dQ*j=qhhTPUZHe!wEH)9bzoiklMrR#k$8M%a05P@5vQ zs$sJDV;>RcZ#_-<#BlkUazBD~OOj6THi7@&!QkT8hFSgZ_n}?@;QObSSU^oOFRXl% zG||ybA_oBQ@MGNsp0_#mtt4$fqJXWjX z;NQ`TEgyc~yhN6#Xjt5c91dB6K4{7m3N6p{<0sezfXu}i%1!N)gHKX@RFr^7^|Tc&}M9aUKK0 z-bZ!RVH)IrRxzuV`U&Ssr!mfk2D=ETv`Q$W8&Fda=n#yD84(&cW~R}zgj8RAT|d0Ep`KO2d(#&pb!FfV#7kSp7d)p zD8zX*>_3=GcAdnlR29M*9w;qTaE-Mm#*8u|2vRptW}H9*;Un;bM#wdbULxcn!8KAAv6}h)-H{3$z0) zG#bwUxKe_!)uxfKiupZHZ`zk*;$NXjGv%a(2BIKr+l(IQmZA%v34^nkYs)X2&u{2V zO~hmlEUrIiU@!Jve_iK+QU6v>;ad4S_{8=aO~ zc(MyL*aBSZW)Flpccy{zee+GxAFPUsZk8A3(atZ+Mis}pLnZ14&>pOc!eKfdR*{^= z2KOdwsXqHned=DsM{WD|i#DTu=l3o}CmnKDscmuF5DKYjp7Fz>hMLavX$BSMBT>P* za@|k$r(O=6T?)>yQXxYQ$AQP`jPYq<4 z103}&g#iiXHYEkcSpGx83GMQ+zE)a52^5dlQPr^O--y`i0 z_cZgkpPb{x!hJL08NIUZA&`Owe6SOLag0T=N>b0|_^uIIZ=Xur~#A z4KWqM)lbFPX+`NGO>@c>|0p>!OzqoZyf!X&=&b*ipZsmM>M}P?#*5u;vJoB=cvZAE zY>|~#84RZVSp6E$R1t|^B2h+uH_%R73kfL7j zOu*;_5y?t&zBLUc7;hi&S)<|d8rcS;=(NmUW9FF>K=JpHxc#Lm*z6T@gr5?7k_0=P zKz83Z#=MkL__zH<&}?aoB_{%8Ga*^qw81gA(WYc4)XhIqN^7^U7Dr|)^+V$f4A=UlfrAj0l_9w6_duJh4t zq-Uz)NGG+!3`J`M=|>#>4f@7Ck?gDWEj~(hbj(B?>R)Io9i9g?9U~B`X-fOqA}(AnX|&+cm=N3`S@D;6XV^&LZ{Uv2dV_ zlS3LF&k@H*VxRYZ7tDGeHp19Nr!F#@7_}eC)oGNc-OpsL>9zk-t9?$~Z#QLRS0dPO zeH&p6Fn)ie)JH8LTGKF3c_{Do9@FPmJ`r22ScPysY70uI+`ZVnGT!1s6Z9~oYQbBk z!cC?LYU{>YN%6IEjTQy+lttb+962_kauh80U_ZgyQz@M_H#L;H40-oH=A->6=q8vsno5FCY-Y>j79qz!B`fLT$#8xJ+Omi>3KGxNZIPXM~OMa zIW7?@#Fj!%TT6*Fj$yUMHN6)y714Eyl`ZIWjVFhvjxhB|R23+V2u_<46{)vXwFy`H zx!=a9>bdUN`x8kiK7&e6S_Og8owq^!&U}45dm)z~5v=zDK>RF{wlzKH&XrxeLodLn znCg3{7i@7z+M*J%%lhDpNt*W|Uz$HZ09P1*0-N%H8icI(;^QmG9ig)n9$*=}avAVb zZzksVVu157{OE{W;#h`X4-6)K@GqyPA~-Cxe7(1GF(%Ee2;y8))_Z*_PM$kku+b&9wIoWAa!lnM+mPhJ1LiOih+gwp;7(LHEEC5H@sfu4o;R@p^p@MEIuq zNtNSM5sm0&{Rw>hz*u47=m<%lx0l_E{QDM89h=f>NU(9H?HI?sJ-5jMN7XU{DU=D* zrV`l~g`HQZ{+;=YfzD>b=9HUya#u8{|Irw7O!NZ}4Q8q|{{{2FG(QOmw{b!TgKg_Z zjNL&f2eDit8&_VXm*3D9w}|{FDLoATIpo@Y10rbU_BY6;$8|*z`p}sBczZ+T&RhcZ zQUs$z;5TMAFOc=Fb-lkO&`z$z75#6?Rcp_fNovOvkW{m8CZ7xjD68Di85Ybyr@6Bxk9F2bwp=-MuWs zmzz_@&`^O3tq8K8V41gNwHxQ$R=VQuaB!cyUUneM8uVUz2gPVrt93v>T%BFlin0ki zQ~a@1JSZ_qjPrNMn8_&?hYpNQFJ{`F;G{_F&2<)ll&gX!?~^$`>3Y}I5gq&D9EnM` zpc!;OP&P9d*00!eia1CG*5V|!pw2JtcP(b=SDo9Ji58nsgrCj7c}TftynyZmubTeIJ}!{HGyC;Mi9);0P^APc!LKset?A8k`) z)Occgg^Z9yC^bP_YD^Luus3^s*mnz6R4{JXE|SScR7Jr)fQA~J35(NJebw=QsSZMY3^l??$h=;ud;k zS~11!jDay?vr*~-O|#|wIy9ItigGeseBvdx7{bl%8Yl!$LY>DTdRFyuA4s@9xDm<*6)HkXfhi4Loy4jnp2G&5 zQdPy^KMu5tF+lyT^{VM+!@vACFy9ALSFAoz{Tf&0^l1s_(dk^5;)qxDc3!wu+ZR() zAAx`iRSz1UEA?I(ifTtX7e$L!R{I^eM7g?-+!B1T_O!n z7f1vt3db~_megdA3O-ru&W>><#9$e+6o^;NMELOs)OOe@5-cQaKza07qDZ=#!Q{w< zM~p?#;1ZLs9qlWe@1#_F{2hKNwupjHJ^K#WL}V{-&GX|umlG*5a_tryTOY3Ih#>0I z#nsdX=?!h%&D{C}z=*d|r~$La=^W^p+Ugcs$hHTXGcrCVX+kZLEBFC(D%a?x^ejDW z;$9f-M`_ZYDPF;95@VIyoP1y($OazB2qWy?#-@uw=WsRCVb_GxgbxaVxz4!g z`5#OQ>TUUCex(xi?BBp=DeKugpmjqn^<$!DE*P%c>Ppdm)Q*wYR6Xu^Z8KN5cgArv z{zxxdr<*Yh5(Mand!;rFX)X}=z^*%u%0Rp|c}c}gTfB^Q``Qn19Dh7l3{{!kJQL<5 z>MSRKoCSt+<8c9CyK}tVC?qIA*~WwBEshl~D(U5*4^_zY$aCIpK#Gd+?N-HSe8V}x zy2W9?j@nJr#(u)naiQ$2XtN*#heK!V z5C}`MD~Eam&1?Q3FCaK6y4+0)XhIM6!;=5xG|UAHO4wC@s;5aT=tmwRak9swGiDr( zbTm$>G%IACs&8Lc!C%LMt>`15 zl1ef7lHzYS`hzkjbE)54520lcRS}ago`>25WANb#C0vIuL*f{2*6j|zj7wMBdp>xW zCd;$&ydF$(D5`r1lsH%nV>;##jO!vczV-XKa^8@I;_f#!K!*Z}fcX&B-uu7NIKxzE zI4&cCnJ9GXMan;~zL2ZRH9%n{3{t%{W^V~Pak7m>a+3=9 z@SL-}GfYE4JWm02rN_$$a8e_I9-5-=-E~%f zWuAqsf$}2hMm$f?lq;>n+;RovEb84{GyOU5+b(h$H6t~$h|4!VbcXo+SonuL?&h#c z+Pj(QphP#q;u83b%ag~&cygn^M?d0Qk&vcFGLNBEd#h)mGYaig+~hFYFK*Mc+i$Id zL&?naI(e`&OKRBU5K6A+OD71ZPs4L_vz{r7%j3O)PtEpFqX%AovT=UD1*f9bMiA;m zYoyR|xFF$5E6I=Uuxr5}0Q#0ozD6E!NVN{p)9O~fp*#6>Fqj{AV?SZxOGet-b^TX$ zfkPUgGcPISf?gWN__cq>GpGEKLJ7b+ehrms9vJYr(c966#QIwd*oO0WwZ#0< zw>z`WInAJte4FOlZZk?qz|ktLLP~NX@0h5)P!kAw1vTZ2B`RXAti}y)#+mgaW-Hji zu5%)0nxz^}_)%EcZ?rl_6fcI*D=9i8Ow*Y=bw4(jVMnv}1Ysh`rpMV{pkgoJN_~Xw zk}u&L9DW8O;L<#5FjX4EFd~P{5r`6&e7!lhgcPSK}sN-QV6Zr)d#t(z=aQR=3R2g?eSN~cW%ow z*L(;M=$d}yLt`iS!ML+yc%Le<)%J4+pP70%`{Y?uT?%a+P>qgN;%JG`Y9W_|;bQf1 zc?&+`sdXCM8w#KBHt9M@{T>neX!FFJyzzxOj?}G%QXmPY3|Vg9oe6COj$f!j1sAt! zTnr`46p57}eV}gl7O0l;{2dEqlKj{sgp1~fb{zmUCRFX_&WJh{c+Lyr1Oi*l0F~KK z0gq;990^KwYNfx0sG%*3=U!khLM#Y$$(SH6$G2@m!P}BVgy(z=4SY^`^K53qc28jr zcCcM(6Zi{763VqTY4>*b49jlEf)YH!{3@qK+C9wrHxj*mAeHZaawF8fV z2Ze@1?-3oz@kKinV<|=ie^y6Nh-^~jUCbwa6bem&Uba5TJ;7ok>gCxS8Ptv^nZCPC zbm&ULU$7)36W8U9GJpjONTdYuQQJ!H^0=-2bR}$;-H%N#&EuXzK%9ha+^9pWy!=zM z7~6dpxfnFwG`rFlG!gfHZMtbCot>0jo4H0^C}^>^%a7UaBA>V0P$zKinkv*EL03D( zZ=gA)jmejimKbd@$-r~)j&m2TkxA85kXCG z-~ow28^RGoH~9Mk_`Gl^Rb}r@eOf^dWAX_kw!r$-o8Y2VXmB$m@i-DCb>74oU zhJJK2$WMulaIDz}4_$^4y~uz>`GU&w!7{D+X{S0Dkk7(dJcZxkd(u)~rIyP(C1S*t z*@c7q^3(@yMppVsWNr~gI<-FHfQDb0tKP`gOJvt?QV4sWaQBlM7phS%Z7@m4r&@t z_WM}CJAmEbFK|9`Hye214Rw{S3U-M-^kvz1qj^#1$mc42QpR#O*kfPzLj7+$MAW{jeEU-LlVBvQ z(_Z&fsin~IUbL$jOF>Ve9F%?EL^4#=oTE1D!wNsS_JTC@luSr_atdBC){YN%0nZa} z-B5~1g%ubkN9IwD!5xcA(k$ezVv$}8U8lBiucEP{p7p_9y zjEWeLvy*eP-ZMH=vI$o&HnUT1O;apfgw-mEw!=$xa>AmVFbSum$OG0_Mq*bmMo^hpsbIJZH-NStf?F!3b)Z_mZC?M4e}YfVvMAu@LunAV;%XWy>` zn->t&+SR!hsY-qt`8g>b+hKAIn5d4hEc%r@4y$)gN1PJ)Vn>5d=m<*Glp`RP`ZR4H z`r|3~i(HmdLdpzdKuLzE@o+mgpY7!lkT{)IRSxnyx*a@KXK+?zyu}6vk1;|t%tlOU znfi6cURsqn(B@3K48*pisPuvi3y1~BQgEFiCDn{shN~tspkK5{=FL)&-Y6JWUgALK zSlBB{L+jOFTxChlXi}_I^;gCL`!_w zlh`V9O`ZzSI;TI7%NGJIvC>{*6gjWu3o`#E(Ahmb6%4LE%|;>7t+>7%?@ZBgSx%5o zX=wB2m`TR&ZzmVNp&;XnVlN*iZ>BdDor*DDeM!+l7dM~I|j_#Im|RyCH^2d{t90vCXv+HO_EbY(!aM7;uYe?7jA~xf|Z%}C~M3PWi?vsc)!&l7T z!^?$r@kdAesZR@X?3hB3Ds5SBY}VOZhf8^eZoV#};tMaWxoS6M9=v4KyjAxJ6`Z$e zdtHl{M(~1RLJy~Jd88YKLxzK_Gq|x^2>=Fo=#5$c9V~fUVW|CCqnI1(f1+d81f|aB; zV|1Dzs57@e$yj{XB@*Xq+TvAtyTQnE`%ySZGeJCD(`o;PG6q35BOiQ^5uG;aVWbEn z$i5Ons1F>*r&{Zd1B?KLoTRz1WZs`8qj|`i0sc?SeOd=bg~KCiZl0giGM`_o4f%Lva{ximRwp5zltGYrMCd)<1Dq})i? z^{M|paEu3nwML1nsJ7gR|Fp%ti0$f_vOS=Y4nOyNe49pav2*Jo|0b8zKlMC1>$N1; z45Ylk7H;%Y9zyV3ZpSNYZMjyA5gWA^l%bW<9I@Ot3Zb#H1k->#6v+G_JY4D%05Pb9 zrp>y$06)$rS@!XcwKrZRCP78aE~fL*>TVYIYAYfZ=aAdQ^hK>tsrM=XhDwI$f!laj ziGaaTJv&t4mUM7CE&0fTJLb#B`c!;Hbe^0CZNv_o;fNMqVSV%9ScReq!2d>FK27jI zhk^e<<)2lQ@wMX7tZxxvqDlJ7ZQO5Z4N5Zf66AMa5#mapeCywI5ICz<%t|^+-bsmOvQ^txpR=n%a@fbN4KI$fNDCA@KTX}eA3HIG2-Yz-Kx5uAqH)P zwp0X=Wf=5xt$`>6QVX(E*-qXF|B2+mY;$Vfl1I)H6j-+-T|Gd?0oiq-4+p z%R+40H|Q1pI0?qtER&`=*2c?vzVY#*ljz7(@N;ky?qpyOd{Oop8X}dw9Wt=Ua}ir* z#fq0L$wM+Tjtl(rymRgBCCYsyO|4ESZ)JQ^l$A42x6ZwZNgas!&J@4RU94AV4P@8R zL;lkVdo7gV2)Pj%Px=Ji2fM7T@NWC0^xJbkpQT_`*EtTXd^&d+`1^(PK|H4V9w6NK638#PSf9pWPSr!~oe_vdg? z3Jyd18T-N;15%|qUFb-)AjkfJVCqE&@2O6K5((9=gNe(xC9P0_hX0N5dhd|th!^}Wk;=LB2+ zLN!{GQ$*w}>!p&(lg|)M%8;=tGCt5#S*`iUxnrjha*E8sZNjAm--OzZiY+?{40i-r zJDWlQUe$|i^Y)S)J$_o5)8zC)rWF|*na?_Qq23DddueH7d?qJ0-p2nku9!Zp{63EH zz>XtF2Gm*3P${|Wk$A4+4~qorms_vEVv+L?kt5E9@5OUHY(r%ZXhTNz1q>Ql<_^m6 zGZm+=iCg0$lsxSx3L7Z6uQ!sbe8$H`8h5Q+z{Yu-iaUPiH2))t`;?_T-155^qJA)1{-L_wy5t7|yxe8(fP(@Kro=m5iWf7Y4!Z{xL)X zMS?HwiGyyz=fn+7$gNybe$aqBbjx()%-dv<%N=)}Ei&}i*vh*$+%sw) zcHp@XZNc|+mx}^ta3Vte+{`Pj^cAKhA&K?UjM}JdvlWPwMi?DZ7HhJwIt6&!z|b5q ztCBFA^xgwx%E7y%BoiClb?o$zZ-LS!qMx>@KDU(2#lL2Y6!t^;)#1@Lvo;G_=?M<6>4ObN zw8shQ=XU(i+v?%k)ce0I16=Dc(?xh_FL zF{G`Bg>OANV34>JcK$L>qHf-I%m>~b=b=KEvEhQ6jz)0XHomulvV+H$6JxSIr$#fMxlznbYCoCDtZD>L!K z;KUz&YnqGDJl{3@x7h(>+{xdwncU#oQ4;*V9--sKrkGmS z63A{Y3p`OBFn6R8>RlGRRWMGO5l0Lv(Dl?C1)0pZIym7EJUOt_vaR+snh={~ryGED+P2Jm)g1P>%;7TUTdZOd4ib5PCKQ}X>f|UYc!jt*gSfIal=luL9X}9Od1`Y&aLP_!K-NpX^ zX3ilkpqH_w;9xL9(iAN0xnp&|wc0Cp(Q;K=U!Nx2D^KD~7vmRX&?Rk-9XRhZU&4y3av08|w}$p5R%ej<{OPw+@f zAxfOX>rilrOokv>1M4ilhNo3yoM1D5E95fr#rE)GTYuMR*R4yWNI9$1E-cU-_x86p z^w?kkY3u_++6r;frf~Zh4T9sU1Vhl_98Bo-xb?I}r{ zfm1hM^aV%(B1H|-ticNHy4*@~=)V++o*z8WrZa#hLak1A1ege(Zz0eD4tjquXRqh^ zGQl~Az~k&Ry26Po>!FskVQD(R;Xw4v3+R;TcNZ(Y2aBiPGo1a@#mbsS3sGO9!@VN| z$jBgctv2H)7m#^&2UxQ%cHZ_OBCCEluez5Xwj`?&SA6M#9(l_H|CVn1LgK$Qq-#^{ zja>P`c&v{hphsDCGxp$};)MX%OtWviEDx1*SiyKv*F25`h@sIm@eU zQ7kx6v6EO1AAag&HR#?B5Xd03cCK_5jpk3Z|LwaR{_&$PZ{UhPLbK=%zI*uoNoj%H zaUG`ehrC15P>woosbg33tbOQ*m3r`N#9Dk(por4|LJpnRmc(u1DR6s>m$yA)AgqU4 z6prTrUdu6&khHT}zqU4-&|a4c^}L|V%mt+8F=HVM+xQGjutipJQv85Z3TG6WrnjS^ zRZMc#$c}%;?-ZC?7bXDQ%pH%Hyc3{Rr(0jWSAiapRp^9pe-LK=t^&yobI$Lh*tt0} zO}*p`Y?W+>>FE>g;PR2!<^G=STP2UdKazYz?B7Gl`=U?FM5z%hdb5PTJif%fVFyCK z5`_P*OKmkUHhwKgm(N>SH=ID=7=Kj(-#zn*C8%=K5{ zg#q3IBrUvx4H8c4#prq`JH1lQskS%3>=a8z}S5M&S2F7!xtP=V9hXPxjS}xXH^sXF4#<}J@wwAB=HG2_MocpI2V^g)H-CJO^nXd_ zek~tuXcf9A8_#_E!kol+Kd!rh(2RQ=Zlz~JnR?{^K}>H!$@sc15rppfTgHh1zJBrZ z43?U@$8@2F(EsN)sbSf0-oy_D*n`yI7^MY<=F+};Qess$9KUkBYb_?^XsCAHOkjjn zKG29%c!v)7z)Ek8S%FhO=_kiO|AsIzneX#N2rTu`HMA;|)A5eKOV*KnVeKt~asP4) zq<|ff&nq@}=Yg29wzdO@%GB~i(+&La5zT~F+J(|Of{7F@#rNOacZ?7uIbhTc%R!-` zjcfJq?f~WQce0_Bzf&_h;WZH@=wevX5)Kd-HE9!V66#OTzo1v@;8EB}8QN?O$)Y!( z#Dt2HK@+H<1QBLFCgj8vv%RzBca!a45cuI57+Ku&v2PkVQ@JACNt0DU@lQ7y<3k`P zw!OYdO&I`D*yF!dni?7t{8^KBKLU#L`EOP+&~DdPf(&%_(Ts6;`cA3DZD z9{#Y|jVYc4a=XP=y6(6DXAgW9{2+`dG~c?voXvB%j)+32Ntuwj0RU2$m@iyqeH~=j08RrS(#VNt59Lktd^CZyq z&fk_omQ7nc>!fk#hE;J0#3{dE1jA+4-AqGHiss=vchGjx%!grZ1zk z+bx5SNMw@~ekzkzj-^{pmmsY!--KTYMEn=z zkU45A3nWBynS+P`w&Qw82Q&uw;~z&=Q)gciO3#C|d_cD*S6C>^y2LMi6&0HKk^Mqp z@AQlb+_P1lIV9nW9}+?&&Vp)Wtz#72=Ya~EJ@(LY95q)svCX~xzXC-wf{Z8I3tVW) zgVnpv1lmj!YHilpYgMSbP&Ek{2tnkXcLebxKZP8xl~BVL^E7a<;?W&se;RCj>%KYy;?6MPy6|kfZpeRpxsoU%!ZGEgo$i~}%)ozg_VoS-=2m*whI$84$qikl^#;f7SoJd1xVKd zOMNg-cDo-6$`P+eevP?o?v8*;dmYufwbO8=)oT;j5E{&Aag4sl4DY#k)GFYa;5(xp zveU-8GFd20grXRdsIluzH%^mjxf*)S(K7aTt{P2&^i1Jc9Ex=|gSagMy*(Cjv%LGTU#v2Cu!u z3y)yXfSj4E9j0z_w#0WHLpMvt1G-XcSx0|^X^{ei+2NcYOY+fZL3SaoW{80u#qFvf z6G3d-C=L}}Umeg4-e|dj&nliof4sp_nY*m{b7z=9C~&jJZd5oY|H}}yFkLex*IN1mk*B5Dtt8p{xVIOJ7^-w z@R^aF+rTyICu}Q4x4Cp3nkT}x_O!I5v|S)B=83vd_als^f)a+j&?IEeuzvG6d`-Tt zNe$CHI%Nt}*f8T`d2Y_xIe{*c&T!3act}@g`cf@c-d$q(uHU+#)&XZc$KIzAf=uqy z(yix{1_DL&s7mtlFB)7y*f`dI3LqA#NW_jF(J@VC%ga1D_4wqS%Gn|9Ba2W>^xFu0 ze(ppG#eYH7^P@Gd%YjQ)NoAV!Lv@@1NA1n+^#J(@at)Rz5~6t5&^y4e*S=naEs!_Uk4+LT9Y(NZOE zY}@s#J+s4q!5Mw+rcxt@mq*WE|E92wBGj3v9B&J53)|{k>YTfhmCcZ3c4EUu(lbn( z5Ho-VnviYs5{iuzXxG=WnjUlIyLbeUl!<2mhq=F&y*A^;4fnR{mj6Azc~Io2&-mRm3(3Qo2iIVaHjo{L4djYrJTLQtG>wlTnG8h;cKx@=E5Ymm3Lv(!AsIPN|}+202eBK~OiO9jV&hJRgK z1I|Te;%P8h?wM<3Tl2YK$Wy_h+dGfLR@>D~4@JL=Fluq2f>CbLIr>Ll{qv6;?BIq< zTs<0Z7lL9UhX?Zkxm^2craA%xWyN=AkZIev>&8SR1n5kN@n}2;$0l%3 z8+;@a%$BTaW+q<$6R85TNAleiyjqJj*SS0+P?q(ccOZb@Q1vdbFy3lj6&?PB3?4l;$W7ZL^HbGUFZPfC~Z z$zQi+@E63=i-{0sV{WNE9dP36m=d{Q0NoduY-edKnr{gp^`n`|n7q4&D_c_X>S4XifGQ&wS~K5Of+fbst z04PT4B`^pEHHwgV)DeSB1Ts5f!h(Jrh(5-zN$+B!=UFL=*H#Bt z1=czZPFAmO=)AP&3gpMWl%HJPkJ4jGuy?Xer-W{DH07qfpb&kIjaig_!M-7GVo|5~ z68L^E8xz8v&B9p;2V<62B4AnZ(c)qq{x9WUj`*btE051<$A>X%x>?vf ztTc9k^0*vH_d8Zj(E+O^j4@h^`;meHvFgsxDD`wY4Mm-Hrlu4ioiqha-z;I+m3~jX z(S1fS{oIYQaT?64e)gJpL|3&_Ry5HrMSREah7x($tC2eAWNcEuD>Jj+n{;zA%Lo<= zPIA(RlzTtQ%h@+dkj;JnE?W&sinUy$J8Kwf3@;@UW2fsXyz`St+oJR!Kl8E^yQ~5;Q>QrSz0E_sJljSCw)b{U$u}o+ z&>Zf!Dr)nFsJKqFJR{E+s$&|{Xx(VFbp(Y0|Ettq%yQs?^B-bi?btcbnUQlus(;QW zFLwu2A`T|0#swuHNUT@WLKg4S@pvh;;bB=3X;B!OU+*8!8NlT?_A^o}0s|SAG}vm? zq_%`m;{%ze@LpbwxWYohsR!W3Y|kTrG_9zR!@-~M{%8Ow-h|$NHZgNb3aa4?nf{2H aPFX~DwMhz9Y2zuYBLDyZ000000000*7G18HEKnwr?4A*`B z9BRtSI=NunB>>KKwnn1x6aWC};_0EMq6B+j@(@O_3J?J_z?F%{(i-KasH3BCmHpq_ z(KrCQij2aq=KAkB|EiMN*rKcf00hHjC|J9Bc;eUs$6`L7ZdaU!V;XCOr45eDaeUhY zw?G_EUg=hU^X3)X|KUHIqVX`$Q^xI$2B*X9|AVdmgRK!BNL-ExE{D?w>4KXd{NQi4 zx#GYpMml@p*7m1e?U2;g#ZVtNa^gA@paQ4?nt%?jtX6;*-~c!So&X#-y5JNPpofbq z{fnRRk6#DpvckC>0BfA%F5n6v0n0yr;OZIRa&YaR+M?`)h5kq&QY8SmK8MBb-vj`H z6actL!eYDpkM+33~;s57y^LT=>WiGkDJ@{ zU-nIiGyGrO{@9|okZUIslk&>U!Yf@P=9w3TSkxg0hTv@HoBE*kR>RhOOX_cJgPhqQCHeY8+A|72 z?*Mp+C$_B%`--}&>Z|#j7uGNUZ=xy_@j+WEm%kyq*%=|Rg^a%Xh^|a%hLMkzE zvl)<253$BTakVjP|ft&UG*yQ?pT)$9`Rvvl!eAi&>%UdG`mE&Hn8|_D8l+!|~W3BEOCv|+F78Wa< zX3Mpc8@bvtlQg`Uqj^#3<#vWx+FFHE8anmo^dtW zgiRaFK_HqzC@Bt+FG>1YL(GWLSavqTr_p!l>8bl`E|Wsbp{a<;`G=$~_|R^C7hGxC z_D-t5SnNLYX-s1_rkJ6AwW^FO?_JJ-3#Yb{{h;OOS(hu9_l9a6t=CRIO`^r&MYql) ziQH}(Qm`b9L~8N`I7^@E-iOSWf(!#|^DztRF+r;hkoY1iXK}L^OVre01v?)CbIS{t ztZ8ST(Ah~^TV-YPPJ%4riP@yIEz{x}l%)bQR9=5{Pb!{oe~Ib_jI6Z8`KY*7Oa zy%ncc+9yI2wai^;4u6N!*Ha?F4V-;S4`c<@KbzsbodV~AA3-%Tqi7A5Y~G~*mQsgY z|FM2id1e^M*A-j&!QS4NV=SK0f?eI1?G^O8#Fji&XwXxM(oNmR4it7j!OBwCsKc=b zVpt0KAFZboJHZe5t?=m!8_4JFX`1eYCs6v+fGCF*ihq3hCWcM9dnVXAZu6RHgL*)`f}W=L`G0BOboB>lIzGw@Xp`mrxqnpU#SRMzrdde!uNB z#?YCydyl$EQTd{XruJQG0xJ@{kDk>`y@>()%@5y{YTTS#9I3w}jOWLY9E@JXaMu)m z9^1Rl_>nh&s)hrSf+o!9DBSrn6C}*N9jC}9=7gH{quT@_^6^Lb%EbeDla4l0%IPJl zYxLZkccb4gZOq^yu4gBL;KAVizs0IL(F^32mF2Bchg1K)i|Ff z?!vObMgtMS`-+l|CkxWQ1|wV`L%s#(*vcfq#HMWN%HeeU;f3{sQ|u+8=vn@E1S=>G}E4R_LpQ zZeYC^QH?|xM++J2z-MGnHG+)skA9NH`CAaLooU^Clhoq#T7!eWv%%-v=Ybc9D)DQE z(ntIvL;SEzKSbPsh7Q4>iHB1j+@amwlukd3q&cXWjUo&8{h-44a4}Mo{^AWRF>K?6 zf77B7s)Y*rAd^9O!O(NN%ROhizh&%=kj2wXg?g`p?3t-F(XsRQ-@G!|WA|6#j(3U+ zjDCxgo0OvDT764KM3EyKdQ7!Zl%*%S3%;%vJ?Jg|i-T&BzNYU_)g|I+qs4M=?>~rp z=jc(Er;4OtA#Y$)C}?lAmaV==gATVC?rmpsJ%O&bCo|=vc_|KMxBd0aDYRha+NgyF z3H7Gx><6TgiqJ7%xK=`f$xeotPpD9NN1MA`O$W8CLg-tF#og~b0vU2N?E}=8C=n1) z1iP_QV!@@}eD>PCYqvJ=W=EBDy8B3P+;*5@imu?p(SzaEh+VnDF>idoOJ)ao$g`x& zoy$_=(e_XEj2#!#IZm=v=V#4$UA~|aaKevnhnxoQU>x_cuenD1;Kjw>KtA-`c&ONFYE35UUi3-dz{T2@{%&^k4Y(W{Ou2954lsH!3Q1c z%Bo|QCaz5$!K`O)(Hr(O>GnmwXNW`%hE!$W?{OY>g0jz-Z_&lil5F%<$-kuIakd+S zvwGhL>0=)9PVwIt;XBl;Wi813r6P%ViovHB7`6M7U5*lWD%-z>A@_OCUKj_-QfaX@ zRUg8FGmiFJCNqnBF29I6Ttl)_h2&}9MS!WDU^Xy;`qik>`I{fpgIo7&D;sBR?CjTH zkl;VAP(>w>gvmEq>)tWP>kUXbbd(a|BwKm)?)@pn*94Vx8aXcmO?EyqyIr5s;zsU} z%|hZPt^N3VEb{aDg@zn5XC_B2bBfW(JxnG(5Q}Xg=HoWd7!4Mm`E~2WmwiguYmGZ6E7Qgh)8;&;|@?`t_HQ>4b`HrAZdnr3PIp%+yPGbsdH!pYjJW2Y`%|l${k2yBy&ole4V7y)!2)^#FCr}_uZs7 zCzBR^a*35v?igRcsSFe%%+byqQ?oi2@0jGUcpmgqX3_?SFBM%kcIl z5frH`o>>X2qTX=p8*F^xQ_fX89TmX=d>{&h5Q-!OjTSjo(EBCFPQ)}Dtvoy2*H-2* zsnH|e;X15MEKlSZnqAetyt(}>S=D5q&+0M%@NsbNf}d(+)olLxpxGSJM0w$>14YnR zt%GWw0gzb;FP-iAQs2?7G8sr4?FNGG@)! zLImc1G!tjJIl=`Itec~f@N89mUCj35-R@&{tX7v3%4CXYjZ|l*JV-hvYdG9}1^Lk(MKt6M#p@{c{b_muqWSVm^zO_xfS5IiIL6kjizAEsXj zk|b|_%?Nw!{?;JUixb)^>*CiJ_}lRV~9CZ=s^KG*PlY@#p(Se{#%(h zpZZ}WpR+qGS<6o?j%y|m1ZTMW$}9`p8UCUi8n|Ff`LXK;c@si&lam2Mm}a`B;hk<; zq>B-^SRlw7tfo$irb|xI)RjQt>!&gZJWY^4pL>=e2GMz0a(5?Gm`7?S0=g*L+O~LD z#Zy1mS=`jK1s@^y#F%^|Qj8}ZQ?e$@XMeL5Eb~``4So}(@aKG;SoRTuFg-S`UI4os z-dQYK;F$Ko_wo4(mwYv21Uuz|!wji|hXJ`z><~<-)-@ks=0M;d^3eW@qNvwZCHp$9 zr7W(sI#g)TsVVzjd{h`C-3MJHb%Nx3L=#fJPtdIFaanpj=KARSu8%Ii@xz!mK9|eR zfpfQ)@YckOC#{1yyPTRSs?u5{;vTB(Y5x}4X`kBLoUM}WZ;z3y+mGJ6Er#b=UVAHg z_$~goj-B933sAH#JO~jy{pbdJ&`?*$QxGWUGZMqC=}<@Rd?P#i9Cqr4zO|J-wBC{B zU=^7d(w)(|HWsj6ROnN2{YK5R@yMhXkz=DSZ{NK$0~6^hb$t{wL8Q`}!-nbuS_&s> zhXZIvslxbp{BuUmmkRl4UQa+3G8+>SP)eud6Q3yLpleTndoQT;Vfk^6|6I2FT8!21 z@*^1PTGW1Hd6O2hK3e`cT2bgMN`77izSeh;MJNblk_UNgmhgE+N?`DwYpFyg857$ItE@J*d5*U~W5m)*` z1xZWO%hgJc1x_7QE>@%rpb+NhB2Syn9d58vKuSpcqoynedMjN%4w^7F4qquTQe$1i9C$E$S!}@Wu~zEvZ>ce} ga$`Svw?m3_&*LMWEH!$2I-Sz9*hpXfHv_=`0Ax??+yDRo literal 0 HcmV?d00001 diff --git a/public/assets/image/avatar_compress.webp b/public/assets/image/avatar_compress.webp new file mode 100644 index 0000000000000000000000000000000000000000..c17c4d3b048f0bcea828775858e7a3e23c768176 GIT binary patch literal 9682 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'GET', '/', 'App\Controllers\Home'); +$router->map('GET', '/posts/{page}', 'App\Controllers\Posts'); +$router->map('GET', '/posts', 'App\Controllers\Posts'); +$router->map('GET', '/post/{slug}', 'App\Controllers\Post'); +$router->map('GET', '/about', 'App\Controllers\Page'); +$router->map('GET', '/now', 'App\Controllers\Page'); +$router->map('GET', '/favs', 'App\Controllers\Page'); +$router->map('GET', '/blogroll', 'App\Controllers\Page'); +$router->map('GET', '/slashes', 'App\Controllers\Page'); +$router->map('GET', '/use', 'App\Controllers\Page'); +$router->map('GET', '/contact', 'App\Controllers\Page'); // use special page +$router->map('GET', '/colophon', 'App\Controllers\Page'); +if ($config['debug'] === true) { + $router->map('GET', '/dev', 'App\Controllers\Dev'); +} + +$match = $router->match($config); + +if ($config['useCache'] === false) { + Cache::clearCache('page'); + Cache::clearCache('feed'); + Cache::clearCache('post'); + Cache::clearCache('posts'); +} +/* +@todo +add system for live preview whitout regen cache*/ +if (isset($match['params']['extraParams']['live']) && $match['params']['extraParams']['live'] == 1 && $match['params']['config']['debug'] == true) { + $match['params']['config']['useCache'] = $config['useCache'] = false; +} + + +if ($match) { + if (Cache::isCache($match['params']) && Cache::isValidPage($match['params']) && Cache::isValidConfig() && $config['useCache'] === true) { + $gen = Cache::getCache($match['params']['cacheName'], $match['params']['type']); + $genType = 'Serve from cache in : '; + } else { + $gen = $router->render(); + if ($config['useCache'] === true) { + Cache::setCache($match['params']['cacheName'], $gen, $match['params']['type']); + } + $genType = 'Build in : '; + } + + $time_end = microtime(true); + $executionTime = round(($time_end - $time_start), 5); + $gen = preg_replace("/<% buildTime %>/", $genType . $executionTime . 's', $gen); + echo $gen; + exit; +} else { + header("Location: /"); + exit; +} diff --git a/template/bone.php b/template/bone.php new file mode 100644 index 0000000..a07fa52 --- /dev/null +++ b/template/bone.php @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/template/dev.php b/template/dev.php new file mode 100644 index 0000000..530fcdc --- /dev/null +++ b/template/dev.php @@ -0,0 +1,22 @@ +
    +
    +
    +
    +

    +

    + +

    +

    + +

    +

    + +

    +

    +
    + +
    +
    +
    \ No newline at end of file diff --git a/template/footer.php b/template/footer.php new file mode 100644 index 0000000..6b42f2e --- /dev/null +++ b/template/footer.php @@ -0,0 +1,11 @@ +
    + + + + + \ No newline at end of file diff --git a/template/head.php b/template/head.php new file mode 100644 index 0000000..b245a5e --- /dev/null +++ b/template/head.php @@ -0,0 +1,32 @@ + + + + + <?= $siteName; ?> - <?= $title; ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/template/home.php b/template/home.php new file mode 100644 index 0000000..03984f4 --- /dev/null +++ b/template/home.php @@ -0,0 +1,73 @@ +
    +
    +

    C'est quoi ici ?!

    +

    + C'est ma page d'accueil, mon petit coin de web à moi, ça renvoie vers d'autres trucs, n'hésitez pas à fouiller. +

    + +
    +

    + J'ai réellement découvert internet en 1999 avec un Pentium 166mhz et un modem 33k sur un port ISA. J'ai tout de suite adoré ça, même un peu trop au vu de mes factures téléphonique de l'époque :-( . + Depuis je n'ai jamais quitté internet. +

    +

    + Je n'ai qu'un seul pseudonyme (parfois écrit Knah-Tsaeb, quand les sites n'autorisent pas les espaces) et un seul avatar. Donc si vous croisez un Knah Tsaeb quelque part sur le web, il y a de forte chance que ce soit moi. +

    +

    + Si vous voulez plus d'info, la page /about ou à propos en français est faite pour ça. +

    +
    +
    + + + +
    +

    Derniers billets

    +

    + Quelques articles écrits plus ou moins récemment. +

    + +

    + Tous mes posts +

    +
    + +
    +

    Derniers marque-pages partagés

    +

    + Ce sont mes derniers marque-pages partagés, l'ensemble est disponible sur mon Shaarli. +

    + + Tous mes partages +
    + +
    +

    Dernières mise à jours

    +

    + Les dernières mise à jours de mes apps. +

    + + Toutes les mises à jours +
    + +
    +

    Dernières images partagées

    +

    + Ma galerie d'image et de photos. +

    +
    + +
    + Toutes mes images/photos +
    +
    \ No newline at end of file diff --git a/template/nav.php b/template/nav.php new file mode 100644 index 0000000..d16121a --- /dev/null +++ b/template/nav.php @@ -0,0 +1,32 @@ + +
    + +
    \ No newline at end of file diff --git a/template/page.php b/template/page.php new file mode 100644 index 0000000..b2b76e9 --- /dev/null +++ b/template/page.php @@ -0,0 +1,8 @@ +
    +
    + + +
    +
    \ No newline at end of file diff --git a/template/post.php b/template/post.php new file mode 100644 index 0000000..48dcb5f --- /dev/null +++ b/template/post.php @@ -0,0 +1,21 @@ +
    +
    + +
    + +
    +

    + + + +
    +
    \ No newline at end of file diff --git a/template/posts.php b/template/posts.php new file mode 100644 index 0000000..d556255 --- /dev/null +++ b/template/posts.php @@ -0,0 +1,38 @@ + +
    +
    + +
    + +
    + $post): ?> +
    +
    +

    +
    + +
    + +
    + + +
    + + + +
    +
    \ No newline at end of file