summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/URL/URL.h
blob: 4ed9d98df26851f4960e811105b963a7da059dec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
 * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
 * Copyright (c) 2021, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/DeprecatedString.h>
#include <AK/URL.h>
#include <LibWeb/Bindings/PlatformObject.h>
#include <LibWeb/URL/URLSearchParams.h>
#include <LibWeb/WebIDL/ExceptionOr.h>

namespace Web::URL {

class URL : public Bindings::PlatformObject {
    WEB_PLATFORM_OBJECT(URL, Bindings::PlatformObject);

public:
    static WebIDL::ExceptionOr<JS::NonnullGCPtr<URL>> create(JS::Realm&, AK::URL url, JS::NonnullGCPtr<URLSearchParams> query);
    static WebIDL::ExceptionOr<JS::NonnullGCPtr<URL>> construct_impl(JS::Realm&, DeprecatedString const& url, DeprecatedString const& base);

    virtual ~URL() override;

    DeprecatedString href() const;
    WebIDL::ExceptionOr<void> set_href(DeprecatedString const&);

    DeprecatedString origin() const;

    DeprecatedString protocol() const;
    void set_protocol(DeprecatedString const&);

    DeprecatedString username() const;
    void set_username(DeprecatedString const&);

    DeprecatedString password() const;
    void set_password(DeprecatedString const&);

    DeprecatedString host() const;
    void set_host(DeprecatedString const&);

    DeprecatedString hostname() const;
    void set_hostname(DeprecatedString const&);

    DeprecatedString port() const;
    void set_port(DeprecatedString const&);

    DeprecatedString pathname() const;
    void set_pathname(DeprecatedString const&);

    DeprecatedString search() const;
    void set_search(DeprecatedString const&);

    URLSearchParams const* search_params() const;

    DeprecatedString hash() const;
    void set_hash(DeprecatedString const&);

    DeprecatedString to_json() const;

    void set_query(Badge<URLSearchParams>, DeprecatedString query) { m_url.set_query(move(query)); }

private:
    URL(JS::Realm&, AK::URL, JS::NonnullGCPtr<URLSearchParams> query);

    virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
    virtual void visit_edges(Cell::Visitor&) override;

    AK::URL m_url;
    JS::NonnullGCPtr<URLSearchParams> m_query;
};

HTML::Origin url_origin(AK::URL const&);
bool host_is_domain(StringView host);

}