mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
418 lines
10 KiB
C++
418 lines
10 KiB
C++
/* The Quickjs window object implementation. */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "elinks.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/mujs.h"
|
|
#include "ecmascript/mujs/window.h"
|
|
#include "ecmascript/timer.h"
|
|
#include "intl/libintl.h"
|
|
#include "main/select.h"
|
|
#include "main/timer.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 void
|
|
mjs_window_get_property_closed(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
js_pushboolean(J, 0);
|
|
}
|
|
|
|
static void
|
|
mjs_window_get_property_parent(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
/* XXX: It would be nice if the following worked, yes.
|
|
* The problem is that we get called at the point where
|
|
* document.frame properties are going to be mostly NULL.
|
|
* But the problem is deeper because at that time we are
|
|
* yet building scrn_frames so our parent might not be there
|
|
* yet (XXX: is this true?). The true solution will be to just
|
|
* have struct document_view *(document_view.parent). --pasky */
|
|
/* FIXME: So now we alias window.parent to window.top, which is
|
|
* INCORRECT but works for the most common cases of just two
|
|
* frames. Better something than nothing. */
|
|
|
|
js_pushundefined(J);
|
|
}
|
|
|
|
static void
|
|
mjs_window_get_property_self(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
js_copy(J, 0);
|
|
}
|
|
|
|
static void
|
|
mjs_window_get_property_status(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
js_pushundefined(J);
|
|
}
|
|
|
|
static void
|
|
mjs_window_set_property_status(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
struct ecmascript_interpreter *interpreter = (struct ecmascript_interpreter *)js_getcontext(J);
|
|
struct view_state *vs = interpreter->vs;
|
|
|
|
if (!vs) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
const char *str = js_tostring(J, 1);
|
|
|
|
if (!str) {
|
|
js_pushnull(J);
|
|
return;
|
|
}
|
|
char *text = stracpy(str);
|
|
|
|
mem_free_set(&vs->doc_view->session->status.window_status, text);
|
|
print_screen_status(vs->doc_view->session);
|
|
|
|
js_pushundefined(J);
|
|
}
|
|
|
|
static void
|
|
mjs_window_get_property_top(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
struct document_view *doc_view;
|
|
struct document_view *top_view;
|
|
struct ecmascript_interpreter *interpreter = (struct ecmascript_interpreter *)js_getcontext(J);
|
|
struct view_state *vs = interpreter->vs;
|
|
|
|
if (!vs) {
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s %d\n", __FILE__, __FUNCTION__, __LINE__);
|
|
#endif
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
doc_view = vs->doc_view;
|
|
top_view = doc_view->session->doc_view;
|
|
|
|
assert(top_view && top_view->vs);
|
|
if (top_view->vs->ecmascript_fragile)
|
|
ecmascript_reset_state(top_view->vs);
|
|
if (!top_view->vs->ecmascript) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
/* Keep this unrolled this way. Will have to check document.domain
|
|
* JS property. */
|
|
/* Note that this check is perhaps overparanoid. If top windows
|
|
* is alien but some other child window is not, we should still
|
|
* let the script walk thru. That'd mean moving the check to
|
|
* other individual properties in this switch. */
|
|
if (compare_uri(vs->uri, top_view->vs->uri, URI_HOST)) {
|
|
js_pushglobal((js_State *)top_view->vs->ecmascript->backend_data);
|
|
return;
|
|
}
|
|
/* else */
|
|
/****X*X*X*** SECURITY VIOLATION! RED ALERT, SHIELDS UP! ***X*X*X****\
|
|
|* (Pasky was apparently looking at the Links2 JS code . ___ ^.^ *|
|
|
\* for too long.) `.(,_,)\o/ */
|
|
js_pushundefined(J);
|
|
}
|
|
|
|
static void
|
|
mjs_window_alert(js_State *J)
|
|
{
|
|
struct ecmascript_interpreter *interpreter = (struct ecmascript_interpreter *)js_getcontext(J);
|
|
|
|
assert(interpreter);
|
|
struct view_state *vs = interpreter->vs;
|
|
|
|
const char *str = js_tostring(J, 1);
|
|
|
|
if (str) {
|
|
char *string = stracpy(str);
|
|
|
|
info_box(vs->doc_view->session->tab->term, MSGBOX_FREE_TEXT,
|
|
N_("JavaScript Alert"), ALIGN_CENTER, string);
|
|
}
|
|
|
|
js_pushundefined(J);
|
|
}
|
|
|
|
static void
|
|
mjs_window_clearTimeout(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
struct ecmascript_interpreter *interpreter = (struct ecmascript_interpreter *)js_getcontext(J);
|
|
const char *text = js_tostring(J, 1);
|
|
int64_t number = atoll(text);
|
|
timer_id_T id = reinterpret_cast<timer_id_T>(number);
|
|
|
|
if (found_in_map_timer(id)) {
|
|
struct ecmascript_timeout *t = (struct ecmascript_timeout *)(id->data);
|
|
kill_timer(&t->tid);
|
|
done_string(&t->code);
|
|
del_from_list(t);
|
|
mem_free(t);
|
|
}
|
|
js_pushundefined(J);
|
|
}
|
|
|
|
static void
|
|
mjs_window_open(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
struct view_state *vs;
|
|
struct document_view *doc_view;
|
|
struct session *ses;
|
|
const char *frame = NULL;
|
|
char *url, *url2;
|
|
struct uri *uri;
|
|
static time_t ratelimit_start;
|
|
static int ratelimit_count;
|
|
|
|
struct ecmascript_interpreter *interpreter = (struct ecmascript_interpreter *)js_getcontext(J);
|
|
vs = interpreter->vs;
|
|
doc_view = vs->doc_view;
|
|
ses = doc_view->session;
|
|
|
|
if (get_opt_bool("ecmascript.block_window_opening", ses)) {
|
|
#ifdef CONFIG_LEDS
|
|
set_led_value(ses->status.popup_led, 'P');
|
|
#endif
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
|
|
/* Ratelimit window opening. Recursive window.open() is very nice.
|
|
* We permit at most 20 tabs in 2 seconds. The ratelimiter is very
|
|
* rough but shall suffice against the usual cases. */
|
|
if (!ratelimit_start || time(NULL) - ratelimit_start > 2) {
|
|
ratelimit_start = time(NULL);
|
|
ratelimit_count = 0;
|
|
} else {
|
|
ratelimit_count++;
|
|
if (ratelimit_count > 20) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
}
|
|
|
|
const char *str;
|
|
str = js_tostring(J, 1);
|
|
|
|
if (!str) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
|
|
url = stracpy(str);
|
|
|
|
if (!url) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
trim_chars(url, ' ', 0);
|
|
url2 = join_urls(doc_view->document->uri, url);
|
|
mem_free(url);
|
|
|
|
if (!url2) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
|
|
if (true) {
|
|
frame = js_tostring(J, 2);
|
|
|
|
if (!frame) {
|
|
mem_free(url2);
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
}
|
|
|
|
/* TODO: Support for window naming and perhaps some window features? */
|
|
|
|
uri = get_uri(url2, URI_NONE);
|
|
mem_free(url2);
|
|
if (!uri) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
|
|
int ret = 0;
|
|
|
|
if (frame && *frame && c_strcasecmp(frame, "_blank")) {
|
|
struct delayed_open *deo = (struct delayed_open *)mem_calloc(1, sizeof(*deo));
|
|
|
|
if (deo) {
|
|
deo->ses = ses;
|
|
deo->uri = get_uri_reference(uri);
|
|
deo->target = stracpy(frame);
|
|
register_bottom_half(delayed_goto_uri_frame, deo);
|
|
ret = 1;
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
if (!get_cmd_opt_bool("no-connect")
|
|
&& !get_cmd_opt_bool("no-home")
|
|
&& !get_cmd_opt_bool("anonymous")
|
|
&& can_open_in_new(ses->tab->term)) {
|
|
open_uri_in_new_window(ses, uri, NULL, ENV_ANY,
|
|
CACHE_MODE_NORMAL, TASK_NONE);
|
|
ret = 1;
|
|
} else {
|
|
/* When opening a new tab, we might get rerendered, losing our
|
|
* context and triggerring a disaster, so postpone that. */
|
|
struct delayed_open *deo = (struct delayed_open *)mem_calloc(1, sizeof(*deo));
|
|
|
|
if (deo) {
|
|
deo->ses = ses;
|
|
deo->uri = get_uri_reference(uri);
|
|
register_bottom_half(delayed_open, deo);
|
|
ret = 1;
|
|
} else {
|
|
ret = -1;
|
|
}
|
|
}
|
|
|
|
end:
|
|
done_uri(uri);
|
|
|
|
if (ret == -1) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
js_pushboolean(J, ret);
|
|
}
|
|
|
|
static void
|
|
mjs_window_setTimeout(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
struct ecmascript_interpreter *interpreter = (struct ecmascript_interpreter *)js_getcontext(J);
|
|
int timeout = js_toint32(J, 2);
|
|
|
|
if (timeout <= 0) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
|
|
if (js_isstring(J, 1)) {
|
|
const char *code = js_tostring(J, 1);
|
|
|
|
if (!code) {
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
char *code2 = stracpy(code);
|
|
|
|
if (code2) {
|
|
timer_id_T id = ecmascript_set_timeout(interpreter, code2, timeout);
|
|
char res[32];
|
|
snprintf(res, 31, "%ld", (int64_t)id);
|
|
js_pushstring(J, res);
|
|
return;
|
|
}
|
|
} else {
|
|
js_copy(J, 1);
|
|
const char *handle = js_ref(J);
|
|
timer_id_T id = ecmascript_set_timeout2m(J, handle, timeout);
|
|
char res[32];
|
|
snprintf(res, 31, "%ld", (int64_t)id);
|
|
js_pushstring(J, res);
|
|
return;
|
|
}
|
|
js_pushundefined(J);
|
|
return;
|
|
}
|
|
|
|
static void
|
|
mjs_window_toString(js_State *J)
|
|
{
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
#endif
|
|
js_pushstring(J, "[window object]");
|
|
}
|
|
|
|
int
|
|
mjs_window_init(js_State *J)
|
|
{
|
|
js_newobject(J);
|
|
{
|
|
addmethod(J, "alert", mjs_window_alert, 1);
|
|
addmethod(J, "clearTimeout", mjs_window_clearTimeout, 1);
|
|
addmethod(J, "open", mjs_window_open, 3);
|
|
addmethod(J, "setTimeout", mjs_window_setTimeout, 2);
|
|
addmethod(J, "toString", mjs_window_toString, 0);
|
|
|
|
addproperty(J, "closed", mjs_window_get_property_closed, NULL);
|
|
addproperty(J, "parent", mjs_window_get_property_parent, NULL);
|
|
addproperty(J, "self", mjs_window_get_property_self, NULL);
|
|
addproperty(J, "status", mjs_window_get_property_status, mjs_window_set_property_status);
|
|
addproperty(J, "top", mjs_window_get_property_top, NULL);
|
|
addproperty(J, "window", mjs_window_get_property_self, NULL);
|
|
}
|
|
js_defglobal(J, "window", JS_DONTENUM);
|
|
|
|
js_dostring(J, "function alert(text) { return window.alert(text); }\n"
|
|
"function clearTimeout(h) { return window.clearTimeout(h); }\n"
|
|
"function open(a, b, c) { return window.open(a, b, c); }\n"
|
|
"function setTimeout(a, b) { return window.setTimeout(a, b); }\n"
|
|
"function toString() { return window.toString(); }\n");
|
|
|
|
return 0;
|
|
}
|