diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-01-08 05:00:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-08 05:00:23 +0100 |
commit | e4a241abefaa68492938c3fbb7e5e5401d12138e (patch) | |
tree | f6f97d531d969aa6d32f6463045e1c2930e06dc2 /app/helpers | |
parent | 93555182c3cfd810fc481d9451e990955a696ea4 (diff) |
Fix bad URL schemes being accepted (#6219)
* Fix actors accepting invalid URI schemes or different host between URI and URL * Fix statuses accepting invalid URI scheme or different host to actor * Adjust tests to new requirements * Improve readability of mismatching_origin?/invalid_origin? methods
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/jsonld_helper.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/helpers/jsonld_helper.rb b/app/helpers/jsonld_helper.rb index 6c7c38070..9530ad9f3 100644 --- a/app/helpers/jsonld_helper.rb +++ b/app/helpers/jsonld_helper.rb @@ -39,6 +39,10 @@ module JsonLdHelper !json.nil? && equals_or_includes?(json['@context'], ActivityPub::TagManager::CONTEXT) end + def unsupported_uri_scheme?(uri) + !uri.start_with?('http://', 'https://') + end + def canonicalize(json) graph = RDF::Graph.new << JSON::LD::API.toRdf(json) graph.dump(:normalize) |