This source file includes following definitions.
- url
- href
- protocol
- host
- hostname
- port
- pathname
- search
- origin
- ancestorOrigins
- hash
- setHref
- setProtocol
- setHost
- setHostname
- setPort
- setPathname
- setSearch
- setHash
- assign
- replace
- reload
- setLocation
#include "config.h"
#include "core/frame/Location.h"
#include "bindings/v8/ExceptionState.h"
#include "core/dom/DOMURLUtilsReadOnly.h"
#include "core/dom/Document.h"
#include "core/dom/ExceptionCode.h"
#include "core/frame/DOMWindow.h"
#include "core/frame/LocalFrame.h"
#include "core/loader/FrameLoader.h"
#include "platform/weborigin/KURL.h"
#include "platform/weborigin/SecurityOrigin.h"
namespace WebCore {
Location::Location(LocalFrame* frame)
: DOMWindowProperty(frame)
{
ScriptWrappable::init(this);
}
inline const KURL& Location::url() const
{
ASSERT(m_frame);
const KURL& url = m_frame->document()->url();
if (!url.isValid())
return blankURL();
return url;
}
String Location::href() const
{
if (!m_frame)
return String();
return url().string();
}
String Location::protocol() const
{
if (!m_frame)
return String();
return DOMURLUtilsReadOnly::protocol(url());
}
String Location::host() const
{
if (!m_frame)
return String();
return DOMURLUtilsReadOnly::host(url());
}
String Location::hostname() const
{
if (!m_frame)
return String();
return DOMURLUtilsReadOnly::hostname(url());
}
String Location::port() const
{
if (!m_frame)
return String();
return DOMURLUtilsReadOnly::port(url());
}
String Location::pathname() const
{
if (!m_frame)
return String();
return DOMURLUtilsReadOnly::pathname(url());
}
String Location::search() const
{
if (!m_frame)
return String();
return DOMURLUtilsReadOnly::search(url());
}
String Location::origin() const
{
if (!m_frame)
return String();
return DOMURLUtilsReadOnly::origin(url());
}
PassRefPtr<DOMStringList> Location::ancestorOrigins() const
{
RefPtr<DOMStringList> origins = DOMStringList::create();
if (!m_frame)
return origins.release();
for (LocalFrame* frame = m_frame->tree().parent(); frame; frame = frame->tree().parent())
origins->append(frame->document()->securityOrigin()->toString());
return origins.release();
}
String Location::hash() const
{
if (!m_frame)
return String();
return DOMURLUtilsReadOnly::hash(url());
}
void Location::setHref(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& url)
{
if (!m_frame)
return;
setLocation(url, callingWindow, enteredWindow);
}
void Location::setProtocol(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& protocol, ExceptionState& exceptionState)
{
if (!m_frame)
return;
KURL url = m_frame->document()->url();
if (!url.setProtocol(protocol)) {
exceptionState.throwDOMException(SyntaxError, "'" + protocol + "' is an invalid protocol.");
return;
}
setLocation(url.string(), callingWindow, enteredWindow);
}
void Location::setHost(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& host)
{
if (!m_frame)
return;
KURL url = m_frame->document()->url();
url.setHostAndPort(host);
setLocation(url.string(), callingWindow, enteredWindow);
}
void Location::setHostname(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& hostname)
{
if (!m_frame)
return;
KURL url = m_frame->document()->url();
url.setHost(hostname);
setLocation(url.string(), callingWindow, enteredWindow);
}
void Location::setPort(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& portString)
{
if (!m_frame)
return;
KURL url = m_frame->document()->url();
url.setPort(portString);
setLocation(url.string(), callingWindow, enteredWindow);
}
void Location::setPathname(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& pathname)
{
if (!m_frame)
return;
KURL url = m_frame->document()->url();
url.setPath(pathname);
setLocation(url.string(), callingWindow, enteredWindow);
}
void Location::setSearch(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& search)
{
if (!m_frame)
return;
KURL url = m_frame->document()->url();
url.setQuery(search);
setLocation(url.string(), callingWindow, enteredWindow);
}
void Location::setHash(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& hash)
{
if (!m_frame)
return;
KURL url = m_frame->document()->url();
String oldFragmentIdentifier = url.fragmentIdentifier();
String newFragmentIdentifier = hash;
if (hash[0] == '#')
newFragmentIdentifier = hash.substring(1);
url.setFragmentIdentifier(newFragmentIdentifier);
if (equalIgnoringNullity(oldFragmentIdentifier, url.fragmentIdentifier()))
return;
setLocation(url.string(), callingWindow, enteredWindow);
}
void Location::assign(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& url)
{
if (!m_frame)
return;
setLocation(url, callingWindow, enteredWindow);
}
void Location::replace(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String& url)
{
if (!m_frame)
return;
m_frame->domWindow()->setLocation(url, callingWindow, enteredWindow, LockHistoryAndBackForwardList);
}
void Location::reload(DOMWindow* callingWindow)
{
if (!m_frame)
return;
if (protocolIsJavaScript(m_frame->document()->url()))
return;
m_frame->navigationScheduler().scheduleRefresh();
}
void Location::setLocation(const String& url, DOMWindow* callingWindow, DOMWindow* enteredWindow)
{
ASSERT(m_frame);
LocalFrame* frame = m_frame->loader().findFrameForNavigation(nullAtom, callingWindow->document());
if (!frame)
return;
frame->domWindow()->setLocation(url, callingWindow, enteredWindow);
}
}