]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - flakes/paste/paste/paste.py
Squash changes containing private information
[perso/Immae/Config/Nix.git] / flakes / paste / paste / paste.py
index 86666b8697d1b4a8ab969842bcc608e75190fb5d..3172de5fe9e9931283db9fe5952aac4a0282aff0 100644 (file)
@@ -10,9 +10,32 @@ import mimetypes
 
 magic = magic.Magic(mime=True)
 
+mit_license = """
+Copyright (c) 2022 Immae
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+"""
+
 config = {
         "directory": os.environ["PASTE_DIRECTORY"],
         "self_paste_id": "abcd123",
+        "license_paste_id": "license",
         "max_content_length": 16 * 1000 * 1000
         }
 
@@ -33,6 +56,8 @@ def read_paste(paste_id):
         if mime.startswith("text/x-script."):
             mime="text/plain"
         return (content, mime)
+    elif paste_id == config["license_paste_id"]:
+        return (mit_license, "text/plain")
     else:
         abort(404)
 
@@ -69,9 +94,11 @@ $ curl -X POST --data-binary @{self} {host}
 -> GET {paste}/download
    force download of file
 </pre>
-<a href="{paste}/py">Get the source</a>
+<a href="{paste}/py">Get the source</a><br />
+Software licensed under the terms of the <a href="{host}/license">MIT license</a>
 '''.format(host=url_for('post_paste', _external=True, _scheme="https"),
                  paste=url_for('get_paste', _external=True, _scheme="https", paste_id=config["self_paste_id"]),
+                 license=url_for('get_paste', _external=True, _scheme="https", paste_id=config["license_paste_id"]),
                  self=os.path.basename(__file__)
                  ), mimetype="text/html")