| /* |
| * Copyright (C) 2009 Google Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are |
| * met: |
| * |
| * * Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * * Redistributions in binary form must reproduce the above |
| * copyright notice, this list of conditions and the following disclaimer |
| * in the documentation and/or other materials provided with the |
| * distribution. |
| * * Neither the name of Google Inc. nor the names of its |
| * contributors may be used to endorse or promote products derived from |
| * this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "V8Location.h" |
| |
| #include "BindingState.h" |
| #include "Document.h" |
| #include "Frame.h" |
| #include "FrameLoader.h" |
| #include "KURL.h" |
| #include "Location.h" |
| #include "V8Binding.h" |
| #include "V8DOMWindow.h" |
| #include "V8EventListener.h" |
| #include "V8Utilities.h" |
| #include <wtf/text/WTFString.h> |
| |
| namespace WebCore { |
| |
| void V8Location::hashAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.hash._set"); |
| Location* impl = V8Location::toNative(info.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String hash = toWebCoreString(value); |
| |
| impl->setHash(hash, activeDOMWindow(state), firstDOMWindow(state)); |
| } |
| |
| void V8Location::hostAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.host._set"); |
| Location* impl = V8Location::toNative(info.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String host = toWebCoreString(value); |
| |
| impl->setHost(host, activeDOMWindow(state), firstDOMWindow(state)); |
| } |
| |
| void V8Location::hostnameAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.hostname._set"); |
| Location* impl = V8Location::toNative(info.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String hostname = toWebCoreString(value); |
| |
| impl->setHostname(hostname, activeDOMWindow(state), firstDOMWindow(state)); |
| } |
| |
| void V8Location::hrefAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.href._set"); |
| Location* impl = V8Location::toNative(info.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String href = toWebCoreString(value); |
| |
| impl->setHref(href, activeDOMWindow(state), firstDOMWindow(state)); |
| } |
| |
| void V8Location::pathnameAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.pathname._set"); |
| Location* impl = V8Location::toNative(info.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String pathname = toWebCoreString(value); |
| |
| impl->setPathname(pathname, activeDOMWindow(state), firstDOMWindow(state)); |
| } |
| |
| void V8Location::portAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.port._set"); |
| Location* impl = V8Location::toNative(info.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String port = toWebCoreString(value); |
| |
| impl->setPort(port, activeDOMWindow(state), firstDOMWindow(state)); |
| } |
| |
| void V8Location::protocolAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.protocol._set"); |
| Location* impl = V8Location::toNative(info.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String protocol = toWebCoreString(value); |
| |
| ExceptionCode ec = 0; |
| impl->setProtocol(protocol, activeDOMWindow(state), firstDOMWindow(state), ec); |
| if (UNLIKELY(ec)) |
| setDOMException(ec, info.GetIsolate()); |
| } |
| |
| void V8Location::searchAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.search._set"); |
| Location* impl = V8Location::toNative(info.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String search = toWebCoreString(value); |
| |
| impl->setSearch(search, activeDOMWindow(state), firstDOMWindow(state)); |
| } |
| |
| v8::Handle<v8::Value> V8Location::reloadAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.reload._get"); |
| static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::reloadCallback, v8Undefined(), v8::Signature::New(V8Location::GetRawTemplate()))); |
| v8::Handle<v8::Object> holder = V8DOMWrapper::lookupDOMWrapper(V8Location::GetTemplate(), info.This()); |
| if (holder.IsEmpty()) { |
| // can only reach here by 'object.__proto__.func', and it should passed |
| // domain security check already |
| return privateTemplate->GetFunction(); |
| } |
| Location* imp = V8Location::toNative(holder); |
| if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError)) { |
| static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::reloadCallback, v8Undefined(), v8::Signature::New(V8Location::GetRawTemplate()))); |
| return sharedTemplate->GetFunction(); |
| } |
| return privateTemplate->GetFunction(); |
| } |
| |
| v8::Handle<v8::Value> V8Location::replaceAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.replace._get"); |
| static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::replaceCallback, v8Undefined(), v8::Signature::New(V8Location::GetRawTemplate()))); |
| v8::Handle<v8::Object> holder = V8DOMWrapper::lookupDOMWrapper(V8Location::GetTemplate(), info.This()); |
| if (holder.IsEmpty()) { |
| // can only reach here by 'object.__proto__.func', and it should passed |
| // domain security check already |
| return privateTemplate->GetFunction(); |
| } |
| Location* imp = V8Location::toNative(holder); |
| if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError)) { |
| static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::replaceCallback, v8Undefined(), v8::Signature::New(V8Location::GetRawTemplate()))); |
| return sharedTemplate->GetFunction(); |
| } |
| return privateTemplate->GetFunction(); |
| } |
| |
| v8::Handle<v8::Value> V8Location::assignAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) |
| { |
| INC_STATS("DOM.Location.assign._get"); |
| static v8::Persistent<v8::FunctionTemplate> privateTemplate = |
| v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::assignCallback, v8Undefined(), v8::Signature::New(V8Location::GetRawTemplate()))); |
| v8::Handle<v8::Object> holder = V8DOMWrapper::lookupDOMWrapper(V8Location::GetTemplate(), info.This()); |
| if (holder.IsEmpty()) { |
| // can only reach here by 'object.__proto__.func', and it should passed |
| // domain security check already |
| return privateTemplate->GetFunction(); |
| } |
| Location* imp = V8Location::toNative(holder); |
| if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError)) { |
| static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::assignCallback, v8Undefined(), v8::Signature::New(V8Location::GetRawTemplate()))); |
| return sharedTemplate->GetFunction(); |
| } |
| return privateTemplate->GetFunction(); |
| } |
| |
| v8::Handle<v8::Value> V8Location::reloadCallback(const v8::Arguments& args) |
| { |
| INC_STATS("DOM.Location.reload"); |
| Location* impl = V8Location::toNative(args.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| impl->reload(activeDOMWindow(state)); |
| return v8::Undefined(); |
| } |
| |
| v8::Handle<v8::Value> V8Location::replaceCallback(const v8::Arguments& args) |
| { |
| INC_STATS("DOM.Location.replace"); |
| Location* impl = V8Location::toNative(args.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String urlString = toWebCoreString(args[0]); |
| |
| impl->replace(urlString, activeDOMWindow(state), firstDOMWindow(state)); |
| return v8::Undefined(); |
| } |
| |
| v8::Handle<v8::Value> V8Location::assignCallback(const v8::Arguments& args) |
| { |
| INC_STATS("DOM.Location.assign"); |
| Location* impl = V8Location::toNative(args.Holder()); |
| BindingState* state = BindingState::instance(); |
| |
| // FIXME: Handle exceptions correctly. |
| String urlString = toWebCoreString(args[0]); |
| |
| impl->assign(urlString, activeDOMWindow(state), firstDOMWindow(state)); |
| return v8::Undefined(); |
| } |
| |
| v8::Handle<v8::Value> V8Location::valueOfCallback(const v8::Arguments& args) |
| { |
| // Just return the this object the way the normal valueOf function |
| // on the Object prototype would. The valueOf function is only |
| // added to make sure that it cannot be overwritten on location |
| // objects, since that would provide a hook to change the string |
| // conversion behavior of location objects. |
| return args.This(); |
| } |
| |
| v8::Handle<v8::Value> V8Location::toStringCallback(const v8::Arguments& args) |
| { |
| INC_STATS("DOM.Location.toString"); |
| v8::Handle<v8::Object> holder = args.Holder(); |
| Location* imp = V8Location::toNative(holder); |
| if (!BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame())) |
| return v8::Undefined(); |
| String result = imp->href(); |
| return v8String(result, args.GetIsolate()); |
| } |
| |
| bool V8Location::indexedSecurityCheck(v8::Local<v8::Object> host, uint32_t index, v8::AccessType type, v8::Local<v8::Value>) |
| { |
| // Only allow same origin access |
| Location* imp = V8Location::toNative(host); |
| return BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError); |
| } |
| |
| bool V8Location::namedSecurityCheck(v8::Local<v8::Object> host, v8::Local<v8::Value> key, v8::AccessType type, v8::Local<v8::Value>) |
| { |
| // Only allow same origin access |
| Location* imp = V8Location::toNative(host); |
| return BindingSecurity::shouldAllowAccessToFrame(BindingState::instance(), imp->frame(), DoNotReportSecurityError); |
| } |
| |
| } // namespace WebCore |