2005-09-15 09:58:31 -04:00
|
|
|
/* The SpiderMonkey document object implementation. */
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "elinks.h"
|
|
|
|
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
|
|
|
|
#include "bfu/dialog.h"
|
|
|
|
#include "cache/cache.h"
|
|
|
|
#include "cookies/cookies.h"
|
|
|
|
#include "dialogs/menu.h"
|
|
|
|
#include "dialogs/status.h"
|
|
|
|
#include "document/html/frames.h"
|
|
|
|
#include "document/document.h"
|
|
|
|
#include "document/forms.h"
|
|
|
|
#include "document/view.h"
|
|
|
|
#include "ecmascript/ecmascript.h"
|
|
|
|
#include "ecmascript/spidermonkey/form.h"
|
|
|
|
#include "ecmascript/spidermonkey/location.h"
|
|
|
|
#include "ecmascript/spidermonkey/document.h"
|
|
|
|
#include "intl/gettext/libintl.h"
|
|
|
|
#include "main/select.h"
|
|
|
|
#include "osdep/newwin.h"
|
|
|
|
#include "osdep/sysname.h"
|
|
|
|
#include "protocol/http/http.h"
|
|
|
|
#include "protocol/uri.h"
|
|
|
|
#include "session/history.h"
|
|
|
|
#include "session/location.h"
|
|
|
|
#include "session/session.h"
|
|
|
|
#include "session/task.h"
|
|
|
|
#include "terminal/tab.h"
|
|
|
|
#include "terminal/terminal.h"
|
|
|
|
#include "util/conv.h"
|
|
|
|
#include "util/memory.h"
|
|
|
|
#include "util/string.h"
|
|
|
|
#include "viewer/text/draw.h"
|
|
|
|
#include "viewer/text/form.h"
|
|
|
|
#include "viewer/text/link.h"
|
|
|
|
#include "viewer/text/vs.h"
|
|
|
|
|
|
|
|
|
|
|
|
static JSBool document_get_property(JSContext *ctx, JSObject *obj, jsval id, jsval *vp);
|
|
|
|
static JSBool document_set_property(JSContext *ctx, JSObject *obj, jsval id, jsval *vp);
|
|
|
|
|
|
|
|
const JSClass document_class = {
|
|
|
|
"document",
|
|
|
|
JSCLASS_HAS_PRIVATE,
|
|
|
|
JS_PropertyStub, JS_PropertyStub,
|
|
|
|
document_get_property, document_set_property,
|
|
|
|
JS_EnumerateStub, JS_ResolveStub, JS_ConvertStub, JS_FinalizeStub
|
|
|
|
};
|
|
|
|
|
2006-02-01 03:31:26 -05:00
|
|
|
enum document_prop { JSP_DOC_LOC, JSP_DOC_REF, JSP_DOC_TITLE, JSP_DOC_URL };
|
2005-09-15 09:58:31 -04:00
|
|
|
/* "cookie" is special; it isn't a regular property but we channel it to the
|
|
|
|
* cookie-module. XXX: Would it work if "cookie" was defined in this array? */
|
|
|
|
const JSPropertySpec document_props[] = {
|
2006-02-01 03:31:26 -05:00
|
|
|
{ "location", JSP_DOC_LOC, JSPROP_ENUMERATE },
|
2005-09-15 09:58:31 -04:00
|
|
|
{ "referrer", JSP_DOC_REF, JSPROP_ENUMERATE | JSPROP_READONLY },
|
|
|
|
{ "title", JSP_DOC_TITLE, JSPROP_ENUMERATE }, /* TODO: Charset? */
|
|
|
|
{ "url", JSP_DOC_URL, JSPROP_ENUMERATE },
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
document_get_property(JSContext *ctx, JSObject *obj, jsval id, jsval *vp)
|
|
|
|
{
|
|
|
|
JSObject *parent = JS_GetParent(ctx, obj);
|
|
|
|
struct view_state *vs = JS_GetPrivate(ctx, parent);
|
|
|
|
struct document_view *doc_view = vs->doc_view;
|
|
|
|
struct document *document = doc_view->document;
|
|
|
|
struct session *ses = doc_view->session;
|
|
|
|
|
|
|
|
if (JSVAL_IS_STRING(id)) {
|
|
|
|
struct form *form;
|
|
|
|
unsigned char *string = jsval_to_string(ctx, &id);
|
|
|
|
|
|
|
|
#ifdef CONFIG_COOKIES
|
|
|
|
if (!strcmp(string, "cookie")) {
|
|
|
|
struct string *cookies = send_cookies(vs->uri);
|
|
|
|
|
|
|
|
if (cookies) {
|
|
|
|
static unsigned char cookiestr[1024];
|
|
|
|
|
|
|
|
strncpy(cookiestr, cookies->source, 1024);
|
|
|
|
done_string(cookies);
|
|
|
|
|
|
|
|
string_to_jsval(ctx, vp, cookiestr);
|
|
|
|
} else {
|
|
|
|
string_to_jsval(ctx, vp, "");
|
|
|
|
}
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
foreach (form, document->forms) {
|
|
|
|
if (!form->name || strcasecmp(string, form->name))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
object_to_jsval(ctx, vp, get_form_object(ctx, obj, find_form_view(doc_view, form)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JSVAL_IS_INT(id))
|
|
|
|
return JS_TRUE;
|
|
|
|
|
|
|
|
undef_to_jsval(ctx, vp);
|
|
|
|
|
|
|
|
switch (JSVAL_TO_INT(id)) {
|
2006-02-01 03:31:26 -05:00
|
|
|
case JSP_DOC_LOC:
|
|
|
|
JS_GetProperty(ctx, parent, "location", vp);
|
|
|
|
break;
|
2005-09-15 09:58:31 -04:00
|
|
|
case JSP_DOC_REF:
|
|
|
|
switch (get_opt_int("protocol.http.referer.policy")) {
|
|
|
|
case REFERER_NONE:
|
|
|
|
/* oh well */
|
|
|
|
undef_to_jsval(ctx, vp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case REFERER_FAKE:
|
|
|
|
string_to_jsval(ctx, vp, get_opt_str("protocol.http.referer.fake"));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case REFERER_TRUE:
|
|
|
|
/* XXX: Encode as in add_url_to_httset_prop_string(&prop, ) ? --pasky */
|
|
|
|
if (ses->referrer) {
|
|
|
|
astring_to_jsval(ctx, vp, get_uri_string(ses->referrer, URI_HTTP_REFERRER));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case REFERER_SAME_URL:
|
|
|
|
astring_to_jsval(ctx, vp, get_uri_string(document->uri, URI_HTTP_REFERRER));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case JSP_DOC_TITLE:
|
|
|
|
string_to_jsval(ctx, vp, document->title);
|
|
|
|
break;
|
|
|
|
case JSP_DOC_URL:
|
|
|
|
astring_to_jsval(ctx, vp, get_uri_string(document->uri, URI_ORIGINAL));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
INTERNAL("Invalid ID %d in document_get_property().", JSVAL_TO_INT(id));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool
|
|
|
|
document_set_property(JSContext *ctx, JSObject *obj, jsval id, jsval *vp)
|
|
|
|
{
|
|
|
|
JSObject *parent = JS_GetParent(ctx, obj);
|
|
|
|
struct view_state *vs = JS_GetPrivate(ctx, parent);
|
|
|
|
struct document_view *doc_view = vs->doc_view;
|
|
|
|
struct document *document = doc_view->document;
|
|
|
|
|
|
|
|
if (JSVAL_IS_STRING(id)) {
|
|
|
|
#ifdef CONFIG_COOKIES
|
|
|
|
if (!strcmp(jsval_to_string(ctx, &id), "cookie")) {
|
|
|
|
set_cookie(vs->uri, jsval_to_string(ctx, vp));
|
|
|
|
/* Do NOT touch our .cookie property, evil
|
|
|
|
* SpiderMonkey!! */
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JSVAL_IS_INT(id))
|
|
|
|
return JS_TRUE;
|
|
|
|
|
|
|
|
switch (JSVAL_TO_INT(id)) {
|
|
|
|
case JSP_DOC_TITLE:
|
|
|
|
mem_free_set(&document->title, stracpy(jsval_to_string(ctx, vp)));
|
2005-10-30 00:33:40 -04:00
|
|
|
print_screen_status(doc_view->session);
|
2005-09-15 09:58:31 -04:00
|
|
|
break;
|
2006-02-01 03:31:26 -05:00
|
|
|
case JSP_DOC_LOC:
|
2005-09-15 09:58:31 -04:00
|
|
|
case JSP_DOC_URL:
|
|
|
|
/* According to the specs this should be readonly but some
|
|
|
|
* broken sites still assign to it (i.e.
|
|
|
|
* http://www.e-handelsfonden.dk/validering.asp?URL=www.polyteknisk.dk).
|
|
|
|
* So emulate window.location. */
|
|
|
|
location_goto(doc_view, jsval_to_string(ctx, vp));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSBool document_write(JSContext *ctx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
|
2006-01-27 07:29:38 -05:00
|
|
|
static JSBool document_writeln(JSContext *ctx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
const JSFunctionSpec document_funcs[] = {
|
|
|
|
{ "write", document_write, 1 },
|
2006-01-27 07:29:38 -05:00
|
|
|
{ "writeln", document_writeln, 1 },
|
2005-09-15 09:58:31 -04:00
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static JSBool
|
2006-01-28 15:39:07 -05:00
|
|
|
document_write_do(JSContext *ctx, JSObject *obj, uintN argc, jsval *argv,
|
|
|
|
jsval *rval, int newline)
|
2005-09-15 09:58:31 -04:00
|
|
|
{
|
|
|
|
struct ecmascript_interpreter *interpreter = JS_GetContextPrivate(ctx);
|
2006-01-27 07:29:38 -05:00
|
|
|
struct string *ret = interpreter->ret;
|
|
|
|
|
|
|
|
if (argc >= 1 && ret) {
|
2006-02-11 23:33:42 -05:00
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for (; i < argc; ++i) {
|
|
|
|
unsigned char *code = jsval_to_string(ctx, &argv[i]);
|
|
|
|
|
|
|
|
add_to_string(ret, code);
|
|
|
|
}
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-28 15:39:07 -05:00
|
|
|
if (newline)
|
|
|
|
add_char_to_string(ret, '\n');
|
2006-01-27 07:29:38 -05:00
|
|
|
}
|
2005-09-15 09:58:31 -04:00
|
|
|
/* XXX: I don't know about you, but I have *ENOUGH* of those 'Undefined
|
|
|
|
* function' errors, I want to see just the useful ones. So just
|
|
|
|
* lighting a led and going away, no muss, no fuss. --pasky */
|
|
|
|
/* TODO: Perhaps we can introduce ecmascript.error_report_unsupported
|
|
|
|
* -> "Show information about the document using some valid,
|
|
|
|
* nevertheless unsupported methods/properties." --pasky too */
|
|
|
|
|
|
|
|
#ifdef CONFIG_LEDS
|
|
|
|
set_led_value(interpreter->vs->doc_view->session->status.ecmascript_led, 'J');
|
|
|
|
#endif
|
|
|
|
|
|
|
|
boolean_to_jsval(ctx, rval, 0);
|
|
|
|
|
|
|
|
return JS_TRUE;
|
|
|
|
}
|
2006-01-27 07:29:38 -05:00
|
|
|
|
|
|
|
static JSBool
|
2006-01-28 15:39:07 -05:00
|
|
|
document_write(JSContext *ctx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
2006-01-27 07:29:38 -05:00
|
|
|
{
|
|
|
|
|
2006-01-28 15:39:07 -05:00
|
|
|
return document_write_do(ctx, obj, argc, argv, rval, 0);
|
|
|
|
}
|
2006-01-27 07:29:38 -05:00
|
|
|
|
2006-01-28 15:39:07 -05:00
|
|
|
static JSBool
|
|
|
|
document_writeln(JSContext *ctx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
|
|
{
|
|
|
|
return document_write_do(ctx, obj, argc, argv, rval, 1);
|
2006-01-27 07:29:38 -05:00
|
|
|
}
|