URI encode filenames...
authorRoger Braun <roger@rogerbraun.net>
Wed, 9 Aug 2017 13:21:34 +0000 (15:21 +0200)
committerRoger Braun <roger@rogerbraun.net>
Wed, 9 Aug 2017 13:21:34 +0000 (15:21 +0200)
lib/pleroma/upload.ex
test/upload_test.exs

index 9275eff87b78a62196232565b024be61f35a42fe..5691c6845255a0668a19cc7f38dcb4634ce4a57f 100644 (file)
@@ -13,7 +13,7 @@ defmodule Pleroma.Upload do
       "url" => [%{
         "type" => "Link",
         "mediaType" => file.content_type,
-        "href" => url_for(Path.join(uuid, file.filename))
+        "href" => url_for(Path.join(uuid, URI.encode(file.filename)))
       }],
       "name" => file.filename,
       "uuid" => uuid
@@ -38,7 +38,7 @@ defmodule Pleroma.Upload do
       "url" => [%{
         "type" => "Link",
         "mediaType" => content_type,
-        "href" => url_for(Path.join(uuid, filename))
+        "href" => url_for(Path.join(uuid, URI.encode(filename)))
       }],
       "name" => filename,
       "uuid" => uuid
index e8c954341c0ce7f8f3655499bff5b0eeeb6e408c..d29a1f2ba574535f6397453b2913346ca5bdc07f 100644 (file)
@@ -4,9 +4,10 @@ defmodule Pleroma.UploadTest do
 
   describe "Storing a file" do
     test "copies the file to the configured folder" do
-      file = %Plug.Upload{content_type: "image/jpg", path: Path.absname("test/fixtures/image.jpg"), filename: "an_image.jpg"}
+      file = %Plug.Upload{content_type: "image/jpg", path: Path.absname("test/fixtures/image.jpg"), filename: "an image.jpg"}
       data = Upload.store(file)
-      assert data["name"] == "an_image.jpg"
+      assert data["name"] == "an image.jpg"
+      assert List.first(data["url"])["href"] == "http://localhost:4001/media/#{data["uuid"]}/an%20image.jpg"
     end
   end
 end