Commit graph

116 commits

Author SHA1 Message Date
d96cf3d34d fup/cmd/serve: add viper bindings for all the flags 2021-03-23 00:45:51 +00:00
5b74ceec4e fup: add auth middleware machinery
This allows clients to register an authentication middleware which will be
provided values in the context that it can use to make an authn/authz decision.
2021-03-23 00:45:28 +00:00
ccb7d81f1a fup: allow PUT without filename 2021-03-22 23:31:58 +00:00
48be007f79 fup: clear the file input when we start the upload
This prevents the back button from upload the same files *again*.
2021-03-22 19:33:03 +00:00
75afddacc4 fup/hashfs: actually hash the thing
This previous behaviour was to, instead of hashing the file, just return the
first few bytes of it, which is neither intuitive nor the behaviour I was
looking for.
2021-03-22 19:25:55 +00:00
b4e785af8a fup: fix minor issue with shorter-than-512 byte file uploads
Reader.Read is permitted to return EOF on short reads, which had not been
anticipated by this code. There's probably more instances of this lurking...
2021-03-22 02:42:34 +00:00
a9a437cee4 fup: add systemd socket activation support to fup serve 2021-03-22 02:41:59 +00:00
ba95046e84 fup: add additional mimetypes to pretty page 2021-03-22 01:09:00 +00:00
01fb49549b fup: add drag and drop uploads
There's no UI indication that this is happening yet, but...
2021-03-22 01:08:42 +00:00
bb31335319 fup: add basic view and paste UIs 2021-03-22 00:25:32 +00:00
d05aa3ace1 fup: implement frontend bits 2021-03-21 23:10:15 +00:00
45b3a1fe44 fup: add reset.min.css before I start working on styling 2021-03-21 19:48:11 +00:00
5cd85b03db fup: add cheddar to PATH for nix derivation
This ensures that we always have syntax highlighting available.

For people using it directly, it's their responsibility to make sure that
cheddar is available in their path, if they want syntax highlighting.
2021-03-21 19:06:38 +00:00
c187956f19 fup/minicheddar: add basic spawn test 2021-03-21 19:05:59 +00:00
b7cd0d0e29 fup: add cheddar as a syntax highlighter 2021-03-21 18:52:22 +00:00
2306915e2c fup: implement file uploads!
TODO: tests for this.
2021-03-21 18:04:37 +00:00
a3601c2946 fup: add mimetype package to dependency set 2021-03-21 17:13:05 +00:00
7eac2c0c07 fup/fuphttp: add badRequest handler
We might get bad requests for e.g. file uploads, so we should have an error
handler for that.

This also disables mime type sniffing for the other text/plain error handler.
2021-03-21 17:08:29 +00:00
5d9b444a56 fup/fuphttp: add filename generator to options and application 2021-03-21 17:07:47 +00:00
7b969570a9 fup/fuphttp/fngen: expose UniqueName function, add tests for it 2021-03-21 17:02:56 +00:00
691babc0f7 fup: add fngen package, for generating filenames 2021-03-21 16:52:53 +00:00
de4897da06 fup/fuphttp: add missing SPDX comments 2021-03-21 15:34:50 +00:00
ad67e1025a fup/fuphttp: split download logic into a separate file.
It's neatly partitionable away from the rest of the logic, so it's easier to
put it in a separate file.
2021-03-21 15:23:43 +00:00
4c4bd46aa8 fup: factor out metadata retrieval into a separate file
We'll need this for cleanup operations as well. This should likely be factored
out again into an entirely separate package that deals with storage access.
2021-03-21 15:17:46 +00:00
7bac0aee74 fup: implement deleting expired files on request
This is a very basic implementation of gating that we only return files which
haven't expired.  If the file has expired, then we just delete it.
2021-03-21 14:56:42 +00:00
0e69199569 fup: shore up serving and add tests for supported methods
We support several methods of serving assets:

* Redirect to blobstore
    - This requires the backend to support signed URLs.
      We rely on the backend to support HTTP semantics, like supporting
      Range headers.
* Serve-using-http.ServeContent
    - This requires the backend to actually be providing a io.ReadSeeker.
      net/http provides Range/If- conditional support.
* Serve-proxy
    - This is the safest and most compatible method.
      We don't support conditionals nor Range headers. This mode is unlikely
      to be suitable for multimedia, like MP3s or video.
2021-03-21 14:35:04 +00:00
04eb6c0299 fup: fixup 2021-03-21 03:29:34 +00:00
08098fb666 fup: add file serving
This adds both redirect-to-signed-URL and proxy fileserving.

The proxy fileserving is somewhat limited: we don't support the Range header,
and it isn't easy to reuse the net/http ServeContent implementation because
that requires a SeekCloser. I think it might be possible to "bodge" a
SeekCloser on top of dynamically opening files, but it'll be a bit wonky and
will be slower than strictly necessary.
2021-03-21 03:04:38 +00:00
e21db7a061 fup: add a template function for getting paths to static assets
We add the hash of the file to the static assets, so they can be cached
indefinitely.  This also, however, means that we need some way of referring to
them.
2021-03-21 03:03:15 +00:00
5846385513 fup: move hashfs into its own package.
We need to depend on its API for fuphttp, so it's better if it's a separate
package to avoid embedding things we don't need.

In general it's probably a good idea to separate the logic from the embedded
content...
2021-03-20 23:43:59 +00:00
25443cfaab fup: add bucket-url flag for specifying storage
This allows setting the persistent storage location to save files into.

NOTE: defaults to mem:// for development purposes, which... is gonna be a bad
time.
2021-03-20 23:33:39 +00:00
7e4fb52cef fup: add viper for persistent config 2021-03-20 23:32:56 +00:00
cb44e7894f fup: add gocloud.dev blob backends 2021-03-20 23:17:02 +00:00
a261baedf4 fup: add SPDX headers 2021-03-20 20:40:40 +00:00
bcd39fae10 fup: create serve subcommand and fuphttp package
This is the skeleton of the application. Let's goooo!
2021-03-20 19:53:43 +00:00
a1bda601a9 fup: add extractstatic command
This extracts the hash-named static assets into a directory.  This is primarily
useful if you have multiple instances of fup running and you therefore need to
serve /static from a shared filesystem of some sort.
2021-03-20 19:53:04 +00:00
38d9449777 fupstatic: init embedding package 2021-03-20 19:52:10 +00:00
2104261536 fupstatic: add some basic templates/css/js. 2021-03-20 19:51:57 +00:00
03cf4ea939 fupstatic: create hashfs
I want to serve static files with hashes in, and I'm too lazy
to construct a preprocessing step.
2021-03-20 19:51:32 +00:00
ecbf5a6450 fup: init 2021-03-20 19:49:33 +00:00
2ce322a6dc web/quotes: change outputHash 2021-02-07 21:56:26 +00:00
a2cfdb62b9 web/quotes: add top margin to alerts 2021-01-23 00:00:45 +00:00
a3fdfcec40 web/quotes: increase root font size 2021-01-22 23:59:19 +00:00
e266f5bb2f web/quotes: format templates 2021-01-21 00:49:22 +00:00
2909cc2bcb web/quotes: switch to pre-wrap to format better on mobile 2021-01-21 00:21:49 +00:00
de8bb349f0 web/quotes: shipit 2021-01-20 23:14:58 +00:00
da459ee5c1 web/quotes: format oops 2021-01-20 22:48:41 +00:00
2d634def1c web/quotes: add new and view quotes views 2021-01-20 22:48:15 +00:00
eb8abcacec web/quotes: make login work 2021-01-20 22:20:07 +00:00
ee3299223a web/quotes: require login for all pages
...except things under /accounts/, because I generally just trust that to do
access control for me.
2021-01-20 18:14:22 +00:00
cf82eae2e3 web/quotes: switch to sans-serif font for everything 2021-01-20 17:55:17 +00:00
54bece932e web/quotes: add some styling to some things 2021-01-20 03:16:29 +00:00
d8d2a0affa web/quotes: remove accidental checked-in-static 2021-01-20 02:06:13 +00:00
ca27848285 web/quotes: add tailwind 2021-01-20 02:04:30 +00:00
1fe4e04464 ops/nixos: add dev-quotes.bfob.gg to server aliases 2021-01-20 00:22:54 +00:00
b0993ffd70 web/quotes: take discord settings from secrets 2021-01-19 23:54:59 +00:00
b7574660de web/quotes: prodify 2021-01-19 23:43:43 +00:00
b758c0a96c web/quotes: add hgkeep to static folder 2021-01-19 20:42:46 +00:00
169c243369 web: init quotes 2021-01-19 03:51:22 +00:00
596752caa0 etheroute-lon01: add unifi.int 2021-01-03 03:35:24 +00:00
26e379dfb7 depot-wide: create logged-out.int.lukegb.com 2020-12-30 00:57:53 +00:00
e0ab7d9ea4 web: remove login-int 2020-12-30 00:51:56 +00:00
6fbeb0d282 web/int: add more links 2020-12-30 00:03:28 +00:00
3a112b8218 clouvider-fra01: simplify 2020-12-28 15:54:43 +00:00
48011ebba9 licensing: Apache-2.0, make almost reuse-lint clean 2020-06-07 15:03:12 +01:00
e656191b7b clouvider-fra01: add int.lukegb.com which points at oauth2proxy 2020-05-31 22:28:01 +00:00