Subversion Repositories Kolibri OS

Rev

Rev 8594 | Rev 8954 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7739 leency 1
//Copyright 2007-2020 by Veliant & Leency
6978 leency 2
//Asper, lev, Lrz, Barsuk, Nable, hidnplayr...
3067 leency 3
 
4085 leency 4
#ifndef AUTOBUILD
5
	#include "lang.h--"
6
#endif
7
 
8332 leency 8
//===================================================//
9
//                                                   //
10
//                       LIB                         //
11
//                                                   //
12
//===================================================//
13
 
8413 leency 14
#define MEMSIZE 1024 * 130
5499 leency 15
#include "..\lib\gui.h"
4508 leency 16
#include "..\lib\draw_buf.h"
17
#include "..\lib\list_box.h"
18
#include "..\lib\cursor.h"
5978 leency 19
#include "..\lib\collection.h"
6795 leency 20
#include "..\lib\random.h"
7037 leency 21
#include "..\lib\clipboard.h"
5981 leency 22
 
5499 leency 23
#include "..\lib\obj\box_lib.h"
7049 leency 24
#include "..\lib\obj\libimg.h"
5499 leency 25
#include "..\lib\obj\http.h"
5690 leency 26
#include "..\lib\obj\iconv.h"
7748 leency 27
#include "..\lib\obj\proc_lib.h"
8330 leency 28
#include "..\lib\obj\netcode.h"
7757 leency 29
 
5978 leency 30
#include "..\lib\patterns\history.h"
7748 leency 31
#include "..\lib\patterns\simple_open_dialog.h"
7759 leency 32
#include "..\lib\patterns\toolbar_button.h"
7914 leency 33
#include "..\lib\patterns\restart_process.h"
5408 leency 34
 
8336 leency 35
#include "const.h"
36
#include "cache.h"
37
#include "show_src.h"
38
 
8332 leency 39
//===================================================//
40
//                                                   //
41
//                       DATA                        //
42
//                                                   //
43
//===================================================//
7757 leency 44
bool debug_mode = false;
8396 leency 45
bool show_images = true;
7771 leency 46
 
8016 leency 47
_history history;
48
 
7970 leency 49
enum { TARGET_SAME_TAB, TARGET_NEW_WINDOW, TARGET_NEW_TAB };
50
 
8330 leency 51
#include "TWB\TWB.c" //HTML Parser, a core component
7757 leency 52
 
7759 leency 53
TWebBrowser WB1;
7758 leency 54
 
7771 leency 55
#include "history.h"
7752 leency 56
 
7758 leency 57
#define PADDING 9
58
#define TSZE 25
7771 leency 59
#define STATUSBAR_H 15
60
#define TAB_H 20
7758 leency 61
dword TOOLBAR_H = PADDING+TSZE+PADDING+2;
4677 leency 62
 
7759 leency 63
_http http = 0;
7758 leency 64
 
7750 leency 65
bool source_mode = false;
7282 leency 66
 
8330 leency 67
progress_bar prbar;
7750 leency 68
proc_info Form;
7748 leency 69
 
8336 leency 70
#include "tabs.h"
71
 
72
dword cur_img_url;
73
dword shared_url;
8445 leency 74
dword http_get_type=PAGE;
8365 leency 75
dword render_start_time;
7780 leency 76
int menu_id=NULL;
77
 
7748 leency 78
char default_dir[] = "/rd/1";
7788 leency 79
od_filter filter2 = { 22, "TXT\0HTM\0HTML\0DOCX\0\0" };
7748 leency 80
 
7755 leency 81
char editURL[URL_SIZE+1];
8332 leency 82
edit_box omnibox_edit = {, PADDING+TSZE*2+PADDING+6, PADDING+3, 0xffffff,
7758 leency 83
	0x94AECE, 0xffffff, 0xffffff,0x10000000,URL_SIZE-2,#editURL,0,,19,19};
4534 leency 84
 
8332 leency 85
//===================================================//
86
//                                                   //
87
//                       CODE                        //
88
//                                                   //
89
//===================================================//
90
 
7748 leency 91
void LoadLibraries()
92
{
8330 leency 93
	load_dll(boxlib,      #box_lib_init,0);
94
	load_dll(libimg,      #libimg_init,1);
95
	load_dll(libHTTP,     #http_lib_init,1);
96
	load_dll(iconv_lib,   #iconv_open,0);
97
	load_dll(netcode_lib, #base64_encode,0);
98
	load_dll(Proc_lib,    #OpenDialog_init,0);
7748 leency 99
	OpenDialog_init stdcall (#o_dialog);
100
}
101
 
102
void HandleParam()
103
{
8278 leency 104
	if (!param) {
8336 leency 105
		history.add(DEFAULT_URL);
8278 leency 106
	} else {
107
		if (!strncmp(#param, "-source ", 8)) {
7750 leency 108
			source_mode = true;
7765 leency 109
			history.add(#param + 8);
7936 leency 110
		} else if (!strncmp(#param, "-new ", 5)) {
111
			history.add(#param + 5);
7748 leency 112
		} else {
7914 leency 113
			if (GetProcessesCount("WEBVIEW") == 1) {
114
				history.add(#param);
115
			} else {
116
				shared_url = memopen(#webview_shared, URL_SIZE+1, SHM_OPEN + SHM_WRITE);
117
				strncpy(shared_url, #param, URL_SIZE);
118
				ExitProcess();
119
			}
7748 leency 120
		}
121
	}
7914 leency 122
	shared_url = memopen(#webview_shared, URL_SIZE+1, SHM_CREATE + SHM_WRITE);
7920 leency 123
	ESDWORD[shared_url] = '\0';
7748 leency 124
}
125
 
3067 leency 126
void main()
127
{
8332 leency 128
	int redirect_count=0;
7748 leency 129
	LoadLibraries();
130
	HandleParam();
6045 leency 131
	WB1.list.SetFont(8, 14, 10011000b);
5779 leency 132
	WB1.list.no_selection = true;
7759 leency 133
	WB1.custom_encoding = -1;
8332 leency 134
	@SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER + EVM_STACK);
7914 leency 135
	loop() switch(@WaitEventTimeout(30))
6978 leency 136
	{
137
		case evMouse:
8332 leency 138
			edit_box_mouse stdcall (#omnibox_edit);
6978 leency 139
			mouse.get();
7970 leency 140
 
7282 leency 141
			if (WB1.list.MouseScroll(mouse.vert)) WB1.DrawPage();
7970 leency 142
 
8490 leency 143
			if (WB1.list.count > WB1.list.visible) {
144
				scrollbar_v_mouse (#scroll_wv);
145
				if (scroll_wv.delta2) {
146
					WB1.list.first = scroll_wv.position;
147
					WB1.DrawPage();
148
					break;
149
				}
6978 leency 150
			}
7970 leency 151
 
8500 leency 152
			if (WB1.list.MouseOver(mouse.x, mouse.y)) && (links.hover(WB1.list.y, WB1.list.first))
7758 leency 153
			{
8330 leency 154
				if (mouse.key&MOUSE_MIDDLE) && (mouse.up) {
8500 leency 155
					GetKeyModifier();
7970 leency 156
					if (key_modifier&KEY_LSHIFT) || (key_modifier&KEY_RSHIFT) {
157
						EventClickLink(TARGET_NEW_WINDOW);
158
					} else {
159
						EventClickLink(TARGET_NEW_TAB);
160
					}
161
				}
8330 leency 162
				if (mouse.key&MOUSE_LEFT) && (mouse.up) {
7970 leency 163
					CursorPointer.Restore();
164
					EventClickLink(TARGET_SAME_TAB);
165
				}
8330 leency 166
				if (mouse.key&MOUSE_RIGHT) && (mouse.up) {
7970 leency 167
					CursorPointer.Restore();
168
					EventShowLinkMenu();
169
				}
170
			} else {
171
				CursorPointer.Restore();
8330 leency 172
				if (mouse.key&MOUSE_RIGHT) && (mouse.up) && (WB1.list.MouseOver(mouse.x, mouse.y)) {
7970 leency 173
					EventShowPageMenu();
174
				}
7758 leency 175
			}
6978 leency 176
			break;
5711 leency 177
 
6978 leency 178
		case evButton:
8332 leency 179
			ProcessButtonClick( @GetButtonID() );
6978 leency 180
			break;
5711 leency 181
 
6978 leency 182
		case evKey:
8332 leency 183
			@GetKeys();
184
			edit_box_key stdcall(#omnibox_edit);
185
			ProcessKeyEvent();
6978 leency 186
			break;
187
 
188
		case evReDraw:
8490 leency 189
			DefineAndDrawWindow(GetScreenWidth()-WIN_W/2-random(80),GetScreenHeight()-WIN_H/2-random(80),
190
			//DefineAndDrawWindow(0,0,
191
				WIN_W,WIN_H,0x73,0,0,0);
6978 leency 192
			GetProcessInfo(#Form, SelfInfo);
7780 leency 193
			ProcessMenuClick();
7806 leency 194
			sc.get();
7759 leency 195
			if (Form.status_window>2) break;
6978 leency 196
			if (Form.height<120) { MoveSize(OLD,OLD,OLD,120); break; }
197
			if (Form.width<280) { MoveSize(OLD,OLD,280,OLD); break; }
7748 leency 198
			draw_window();
6978 leency 199
			break;
200
 
201
		case evNetwork:
7758 leency 202
			if (http.transfer <= 0) break;
203
			http.receive();
8336 leency 204
 
205
			if (http_get_type==PAGE) {
206
				CheckContentType();
207
				prbar.max = http.content_length;
208
				if (prbar.value != http.content_received) {
209
					prbar.value = http.content_received;
210
					DrawProgress();
211
				}
212
			}
213
 
7758 leency 214
			if (http.receive_result != 0) break;
8499 leency 215
			if (debug_mode) {
216
				EAX = http.transfer;
217
				debugln(#EAX.http_msg.http_header);
218
			}
7758 leency 219
			if (http.status_code >= 300) && (http.status_code < 400)
220
			{
221
				// Handle redirects
222
				if (redirect_count<=5) {
223
					redirect_count++;
8305 leency 224
					HandleRedirect();
7758 leency 225
				} else {
226
					StopLoading();
7791 leency 227
					redirect_count = 0;
8440 leency 228
					if (http_get_type==IMG) goto _IMG_RES;
8457 leency 229
					notify("'Too many redirects.' -E");
4536 leency 230
				}
7758 leency 231
			} else {
232
				// Loading the page is complete, free resources
233
				redirect_count = 0;
8016 leency 234
				if (http_get_type==PAGE) {
8413 leency 235
					history.add(http.cur_url);
8462 leency 236
					if (!strchr(http.cur_url, '?')) {
8492 leency 237
						cache.add(http.cur_url, http.content_pointer, http.content_received, PAGE, WB1.custom_encoding);
8462 leency 238
					}
239
					LoadInternalPage(http.content_pointer, http.content_received);
8425 leency 240
					free(http.content_pointer);
8016 leency 241
				}
242
				else if (http_get_type==IMG) {
8440 leency 243
					_IMG_RES:
8454 leency 244
					if (http.status_code >= 200) && (http.status_code < 300) {
8492 leency 245
						cache.add(cur_img_url, http.content_pointer, http.content_received, IMG, NULL);
8454 leency 246
					} else {
8492 leency 247
						cache.add(cur_img_url, 0, 0, IMG, NULL);
8454 leency 248
					}
8698 leency 249
					http.hfree();
8425 leency 250
					free(http.content_pointer);
8336 leency 251
					GetImg(false);
8016 leency 252
				}
6978 leency 253
			}
7914 leency 254
			break;
255
		default:
256
			if (ESDWORD[shared_url] != '\0') {
257
				EventOpenNewTab(shared_url);
258
				ESDWORD[shared_url] = '\0';
259
				ActivateWindow(GetProcessSlot(Form.ID));
260
			}
6978 leency 261
	}
3067 leency 262
}
263
 
8332 leency 264
 
265
//===================================================//
266
//                                                   //
267
//                      EVENTS                       //
268
//                                                   //
269
//===================================================//
270
 
271
void ProcessButtonClick(dword id__)
7772 leency 272
{
8332 leency 273
	switch (id__)
274
	{
275
		case 1: ExitProcess();
276
		case TAB_CLOSE_ID...TAB_CLOSE_ID+TABS_MAX: EventTabClose(id__ - TAB_CLOSE_ID); return;
277
		case TAB_ID...TAB_ID+TABS_MAX: EventAllTabsClick(id__ - TAB_ID); return;
8492 leency 278
		case ENCODINGS...ENCODINGS+6: EventManuallyChangeEncoding(id__-ENCODINGS); return;
8332 leency 279
		case NEW_WINDOW:       RunProgram(#program_path, NULL); return;
280
		case NEW_TAB:          if (!http.transfer) EventOpenNewTab(URL_SERVICE_HOMEPAGE); return;
281
		case SCAN_CODE_BS:
282
		case BACK_BUTTON:      if (history.back()) OpenPage(history.current()); return;
283
		case FORWARD_BUTTON:   if (history.forward()) OpenPage(history.current()); return;
284
		case GOTOURL_BUTTON:   EventSubmitOmnibox();	return;
285
		case REFRESH_BUTTON:   EventRefreshPage(); return;
286
		case CHANGE_ENCODING:  EventShowEncodingsList(); return;
287
		case SANDWICH_BUTTON:  EventShowMainMenu(); return;
288
		case VIEW_SOURCE:      EventViewSource(); return;
289
		case EDIT_SOURCE:      EventEditSource(); return;
290
		case VIEW_HISTORY:     OpenPage(URL_SERVICE_HISTORY); return;
291
		case DOWNLOAD_MANAGER: EventOpenDownloader(""); return;
292
		case UPDATE_BROWSER:   EventUpdateBrowser(); return;
293
		case CLEAR_CACHE:      EventClearCache(); return;
294
		case IN_NEW_TAB:       EventClickLink(TARGET_NEW_TAB); return;
295
		case IN_NEW_WINDOW:    EventClickLink(TARGET_NEW_WINDOW); return;
296
		case COPY_LINK_URL:    EventCopyLinkToClipboard(); return;
297
		case DOWNLOAD_LINK_CT: EventOpenDownloader( GetAbsoluteActiveURL() ); return;
298
		case OPEN_FILE:        EventOpenDialog(); return;
299
	}
300
}
301
 
8500 leency 302
void ProcessKeyEvent()
8332 leency 303
{
304
	if (key_modifier&KEY_LSHIFT) || (key_modifier&KEY_RSHIFT)
305
	{
306
		if (key_scancode == SCAN_CODE_TAB) {EventActivatePreviousTab();return;}
8500 leency 307
		if (key_scancode == SCAN_CODE_KEY_T) {EventOpenNewTab(URL_SERVICE_TEST);return;}
8332 leency 308
	}
309
 
7772 leency 310
	if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL) switch(key_scancode)
311
	{
8500 leency 312
		case SCAN_CODE_KEY_O: EventOpenDialog(); return;
313
		case SCAN_CODE_KEY_H: ProcessButtonClick(VIEW_HISTORY); return;
314
		case SCAN_CODE_KEY_U: EventViewSource(); return;
315
		case SCAN_CODE_KEY_T: EventOpenNewTab(URL_SERVICE_HOMEPAGE); return;
316
		case SCAN_CODE_KEY_N: RunProgram(#program_path, NULL); return;
317
		case SCAN_CODE_KEY_J: ProcessButtonClick(DOWNLOAD_MANAGER); return;
318
		case SCAN_CODE_KEY_R: ProcessButtonClick(REFRESH_BUTTON); return;
319
		case SCAN_CODE_ENTER: EventSeachWeb(); return;
320
		case SCAN_CODE_LEFT:  ProcessButtonClick(BACK_BUTTON); return;
321
		case SCAN_CODE_RIGHT: ProcessButtonClick(FORWARD_BUTTON); return;
322
		case SCAN_CODE_KEY_W: EventCloseActiveTab(); return;
323
		case SCAN_CODE_TAB:   EventActivateNextTab(); return;
8336 leency 324
		case SCAN_CODE_F5:    EventClearCache(); return;
8500 leency 325
		default: return;
7772 leency 326
	}
8332 leency 327
 
328
	switch(key_scancode)
329
	{
330
		case SCAN_CODE_UP:    EventScrollUpAndDown(SCAN_CODE_UP); return;
331
		case SCAN_CODE_DOWN:  EventScrollUpAndDown(SCAN_CODE_DOWN); return;
332
		case SCAN_CODE_F6:    {omnibox_edit.flags=ed_focus; DrawOmnibox();} return;
333
		case SCAN_CODE_F5:    EventRefreshPage(); return;
334
		case SCAN_CODE_ENTER: if (omnibox_edit.flags & ed_focus) EventSubmitOmnibox(); return;
335
		case SCAN_CODE_F12:   EventToggleDebugMode(); return;
336
		case SCAN_CODE_F11:   show_images^=1; EventClearCache(); return;
337
		default:              if (WB1.list.ProcessKey(key_scancode)) WB1.DrawPage(); return;
338
	}
7772 leency 339
}
340
 
3067 leency 341
void SetElementSizes()
342
{
8332 leency 343
	omnibox_edit.width = Form.cwidth - omnibox_edit.left - 52 - 16;
8457 leency 344
	WB1.list.SetSizes(0, TOOLBAR_H+TAB_H, Form.cwidth - scroll_wv.size_x,
7771 leency 345
		Form.cheight - TOOLBAR_H - STATUSBAR_H - TAB_H, BASIC_LINE_H);
7759 leency 346
	WB1.list.wheel_size = 7 * BASIC_LINE_H;
7746 leency 347
	WB1.list.column_max = WB1.list.w - scroll_wv.size_x / WB1.list.font_w + 1;
6794 leency 348
	WB1.list.visible = WB1.list.h;
3067 leency 349
}
350
 
5981 leency 351
 
7748 leency 352
void draw_window()
3067 leency 353
{
7910 leency 354
	bool burger_active = false;
355
	if (menu_id == OPEN_FILE) burger_active = true;
356
 
3067 leency 357
	SetElementSizes();
7758 leency 358
 
7806 leency 359
	DrawBar(0,0, Form.cwidth,PADDING, sc.work);
360
	DrawBar(0,PADDING+TSZE+1, Form.cwidth,PADDING-1, sc.work);
361
	DrawBar(0,TOOLBAR_H-2, Form.cwidth,1, MixColors(sc.work_dark, sc.work, 180));
362
	DrawBar(0,TOOLBAR_H-1, Form.cwidth,1, sc.work_graph);
8332 leency 363
	DrawBar(0, PADDING, omnibox_edit.left-2, TSZE+1, sc.work);
364
	DrawBar(omnibox_edit.left+omnibox_edit.width+18, PADDING, Form.cwidth-omnibox_edit.left-omnibox_edit.width-18, TSZE+1, sc.work);
7758 leency 365
 
7910 leency 366
	DrawTopPanelButton(BACK_BUTTON, PADDING-1, PADDING, 30, false);
367
	DrawTopPanelButton(FORWARD_BUTTON, PADDING+TSZE+PADDING-2, PADDING, 31, false);
368
	DrawTopPanelButton(SANDWICH_BUTTON, Form.cwidth-PADDING-TSZE-3, PADDING, -1, burger_active); //burger menu
7758 leency 369
 
7806 leency 370
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,1, sc.work_graph);
7758 leency 371
 
372
	DrawRectangle(WB1.list.x + WB1.list.w, WB1.list.y, scroll_wv.size_x,
373
		WB1.list.h-1, scroll_wv.bckg_col);
374
 
8457 leency 375
	if (!canvas.bufw) {
8500 leency 376
		EventOpenFirstPage();
8457 leency 377
	} else {
7771 leency 378
		WB1.DrawPage();
8457 leency 379
		DrawOmnibox();
7771 leency 380
	}
381
	DrawProgress();
8413 leency 382
	DrawStatusBar(NULL);
7771 leency 383
	DrawTabsBar();
384
}
385
 
8500 leency 386
void EventOpenFirstPage()
387
{
388
	OpenPage(history.current());
389
}
390
 
8492 leency 391
void EventManuallyChangeEncoding(int _new_encoding)
7759 leency 392
{
393
	dword newbuf, newsize;
394
	WB1.custom_encoding = _new_encoding;
395
	newsize = strlen(WB1.o_bufpointer);
396
	newbuf = malloc(newsize);
397
	memmov(newbuf, WB1.o_bufpointer, newsize);
398
	LoadInternalPage(newbuf, newsize);
399
	free(newbuf);
400
}
3067 leency 401
 
7759 leency 402
 
8332 leency 403
void EventScrollUpAndDown(int _direction)
4413 leency 404
{
8332 leency 405
	int i;
406
	for (i=0;i
407
		if (_direction == SCAN_CODE_UP) WB1.list.KeyUp();
408
		if (_direction == SCAN_CODE_DOWN) WB1.list.KeyDown();
409
	}
410
	WB1.DrawPage();
4413 leency 411
}
412
 
8305 leency 413
void EventToggleDebugMode()
414
{
415
	debug_mode ^= 1;
416
	if (debug_mode) notify("'Debug mode ON'-I");
417
	else notify("'Debug mode OFF'-I");
418
}
419
 
420
void EventAllTabsClick(dword _n)
421
{
422
	if (mouse.mkm) {
8490 leency 423
		StopLoading();
8305 leency 424
		EventTabClose(_n);
425
	} else {
8490 leency 426
		if (!http.transfer) EventTabClick(_n);
8355 leency 427
	}
8305 leency 428
}
429
 
430
void EventEditSource()
431
{
432
	if (check_is_the_adress_local(history.current())) {
8330 leency 433
		RunProgram("/rd/1/quark", history.current());
8305 leency 434
	} else {
435
		CreateFile(WB1.bufsize, WB1.bufpointer, "/tmp0/1/WebView_tmp.htm");
8330 leency 436
		if (!EAX) RunProgram("/rd/1/quark", "/tmp0/1/WebView_tmp.htm");
8305 leency 437
	}
438
}
439
 
440
void EventClearCache()
441
{
442
	cache.clear();
443
	notify(#clear_cache_ok);
444
	EventRefreshPage();
445
}
446
 
447
void EventCopyLinkToClipboard()
448
{
449
	Clipboard__CopyText(GetAbsoluteActiveURL());
450
	notify("'URL copied to clipboard'O");
451
}
452
 
4636 leency 453
void StopLoading()
454
{
8305 leency 455
	if (http.stop()) pause(10);
8330 leency 456
	prbar.value = 0;
4645 leency 457
}
458
 
7756 leency 459
//rewrite into
7757 leency 460
//bool strrpl(dword dst, from, into, dst_len);
461
bool ReplaceSpaceInUrl(dword url, size) {
7756 leency 462
	unsigned int i, j;
7757 leency 463
	bool was_changed=false;
464
	for (i=url+size-3; i>url; i--)
7720 leency 465
	{
7756 leency 466
		if (ESBYTE[i]!=' ') continue;
7757 leency 467
		for (j=url+size-3; j>=i; j--) {
468
			ESBYTE[j+3]=ESBYTE[j+2];
7756 leency 469
			ESBYTE[j+2]=ESBYTE[j+1];
470
			ESBYTE[j+1]=ESBYTE[j];
471
		}
472
		ESBYTE[i] = '%';
473
		ESBYTE[i+1] = '2';
474
		ESBYTE[i+2] = '0';
7757 leency 475
		was_changed = true;
7720 leency 476
	}
7757 leency 477
	return was_changed;
7720 leency 478
}
479
 
7801 leency 480
bool HandleUrlFiles(dword _path, _data)
481
{
482
	dword url_from_file;
483
	if (!UrlExtIs(_path, "url")) return false;
7945 leency 484
	if (! url_from_file = strstri(_data, "URL=")) return false;
7801 leency 485
	replace_char(url_from_file, '\n', '\0', strlen(url_from_file));
7945 leency 486
	OpenPage(url_from_file);
487
	return true;
7801 leency 488
}
489
 
7755 leency 490
bool GetLocalFileData(dword _path)
4416 leency 491
{
7801 leency 492
	dword data, size;
8392 leency 493
	read_file(_path, #data, #size);
7801 leency 494
	if (!HandleUrlFiles(_path, data)) {
495
		LoadInternalPage(data, size);
4692 leency 496
	}
7801 leency 497
	free(data);
498
	return true;
7755 leency 499
}
7282 leency 500
 
8336 leency 501
bool GetUrl(dword _http_url)
8330 leency 502
{
503
	char new_url_full[URL_SIZE+1];
504
 
505
	if (!strncmp(_http_url,"http:",5)) {
506
		http.get(_http_url);
8336 leency 507
		return true;
8330 leency 508
	} else if (!strncmp(_http_url,"https://",8)) {
509
		strcpy(#new_url_full, "http://gate.aspero.pro/?site=");
510
		strncat(#new_url_full, _http_url, URL_SIZE);
511
		http.get(#new_url_full);
8336 leency 512
		return true;
8330 leency 513
	}
8336 leency 514
	return false;
8330 leency 515
}
516
 
7755 leency 517
void OpenPage(dword _open_URL)
518
{
519
	char new_url[URL_SIZE+1];
7788 leency 520
	int unz_id;
7755 leency 521
 
522
	StopLoading();
523
 
7771 leency 524
	SetOmniboxText(_open_URL);
525
 
7755 leency 526
	strncpy(#new_url, _open_URL, URL_SIZE);
527
 
528
	//Exclude # from the URL to the load page
529
	//We will bring it back when we get the buffer
7970 leency 530
	if (strrchr(#new_url, '#')) {
531
		anchors.take_anchor_from(#new_url);
532
	}
7755 leency 533
 
7976 leency 534
	/*
535
	There could be several possible types of addresses:
536
	- cached page (only http/https)
537
	- internal page
538
	- web page
539
	- local file
540
	So we need to detect what incoming address is
541
	and then halndle it in the propper way.
542
	*/
543
 
8016 leency 544
	if (cache.has(#new_url)) {
7764 leency 545
		//CACHED PAGE
8413 leency 546
		if (cache.current_type==PAGE) {
547
			history.add(#new_url);
8492 leency 548
			WB1.custom_encoding = cache.current_charset;
8413 leency 549
			LoadInternalPage(cache.current_buf, cache.current_size);
550
		}
551
		else {
552
			EventDownloadAndOpenImage(#new_url);
553
		}
7764 leency 554
 
555
	} else if (!strncmp(#new_url,"WebView:",8)) {
7755 leency 556
		//INTERNAL PAGE
8413 leency 557
		history.add(#new_url);
8492 leency 558
		WB1.custom_encoding = -1;
8278 leency 559
		if (streq(#new_url, URL_SERVICE_HOMEPAGE)) LoadInternalPage(#buildin_page_home, sizeof(buildin_page_home));
560
		else if (streq(#new_url, URL_SERVICE_HELP)) LoadInternalPage(#buildin_page_help, sizeof(buildin_page_help));
8457 leency 561
		else if (streq(#new_url, URL_SERVICE_TEST)) LoadInternalPage(#buildin_page_test, sizeof(buildin_page_test));
7976 leency 562
		else if (streq(#new_url, URL_SERVICE_HISTORY)) ShowHistory();
8278 leency 563
		else LoadInternalPage(#buildin_page_error, sizeof(buildin_page_error));
7800 leency 564
 
7755 leency 565
	} else if (!strncmp(#new_url,"http:",5)) || (!strncmp(#new_url,"https:",6)) {
566
		//WEB PAGE
7757 leency 567
		if (ReplaceSpaceInUrl(#new_url, URL_SIZE)) {
568
			strcpy(#editURL, #new_url);
569
		}
570
 
8016 leency 571
		http_get_type = PAGE;
8330 leency 572
		GetUrl(#new_url);
7758 leency 573
 
574
		DrawOmnibox();
575
 
7755 leency 576
		if (!http.transfer) {
8413 leency 577
			history.add(#new_url);
8278 leency 578
			LoadInternalPage(#buildin_page_error, sizeof(buildin_page_error));
4646 leency 579
		}
7755 leency 580
	} else {
581
		//LOCAL PAGE
8413 leency 582
		history.add(#new_url);
7788 leency 583
		if (UrlExtIs(#new_url,".docx")) {
584
			DeleteFile("/tmp0/1/temp/word/document.xml");
585
			CreateDir("/tmp0/1/temp");
586
			unz_id = RunProgram("/sys/unz", sprintf(#param, "-o \"/tmp0/1/temp\" -h \"%s\"", #new_url));
587
			while (GetProcessSlot(unz_id)) pause(2);
588
			strcpy(#new_url, "/tmp0/1/temp/word/document.xml");
589
		}
7755 leency 590
		if (!GetLocalFileData(#new_url)) {
8278 leency 591
			LoadInternalPage(#buildin_page_error, sizeof(buildin_page_error));
4650 leency 592
		}
4636 leency 593
	}
4416 leency 594
}
4415 leency 595
 
8278 leency 596
dword EventOpenDownloader(dword _url)
597
{
598
	//char download_params[URL_SIZE+50];
599
	return RunProgram("/sys/network/dl", _url);
600
}
7970 leency 601
 
602
bool EventClickAnchor()
4508 leency 603
{
7970 leency 604
	dword aURL = links.active_url;
605
 
606
	if (anchors.get_pos_by_name(aURL+1)!=-1) {
607
		WB1.list.first = anchors.get_pos_by_name(aURL+1);
8417 leency 608
		WB1.list.CheckDoesValuesOkey();
7970 leency 609
		strcpy(#editURL, history.current());
610
		strcat(#editURL, aURL);
611
		DrawOmnibox();
612
		WB1.DrawPage();
613
		return true;
614
	}
615
	return false;
616
}
617
 
618
void EventClickLink(dword _target)
619
{
7756 leency 620
	char new_url[URL_SIZE+1];
7936 leency 621
	char new_url_full[URL_SIZE+1];
7970 leency 622
	dword aURL = GetAbsoluteActiveURL();
623
	if (!aURL) return;
4415 leency 624
 
7970 leency 625
	strcpy(#new_url, aURL);
626
 
627
	if (ESBYTE[aURL]=='#') {
628
		if (_target == TARGET_SAME_TAB) {
629
			EventClickAnchor();
630
			return;
631
		} else {
632
			strcpy(#new_url, history.current());
633
			strcat(#new_url, aURL);
634
		}
635
	}
636
 
637
	if (_target == TARGET_NEW_TAB) {
638
		EventOpenNewTab(#new_url);
7758 leency 639
		return;
640
	}
641
 
7970 leency 642
	if (_target == TARGET_NEW_WINDOW) {
643
		strcpy(#new_url_full, "-new ");
644
		strncat(#new_url_full, #new_url, URL_SIZE);
645
		RunProgram(#program_path, #new_url_full);
7755 leency 646
		return;
5768 leency 647
	}
7742 leency 648
 
7970 leency 649
	if (!strncmp(#new_url,"mailto:", 7)) || (!strncmp(#new_url,"tel:", 4)) {
650
		notify(#new_url);
7755 leency 651
		return;
7742 leency 652
	}
4508 leency 653
 
7771 leency 654
	if (http.transfer) {
5774 leency 655
		StopLoading();
656
	}
6730 leency 657
 
7755 leency 658
	if (strrchr(#new_url, '#')!=0) {
659
		anchors.take_anchor_from(#new_url);
660
		OpenPage(#new_url);
6730 leency 661
		return;
662
	}
663
 
7755 leency 664
	if (!strncmp(#new_url,"WebView:",8)) {
665
		OpenPage(#new_url);
7742 leency 666
		return;
667
	}
6730 leency 668
 
7755 leency 669
	if (strncmp(#new_url,"http://",7)!=0) && (strncmp(#new_url,"https://",8)!=0)
5774 leency 670
	{
7755 leency 671
		if (UrlExtIs(#new_url,".htm")!=true) && (UrlExtIs(#new_url,".html")!=true)
6730 leency 672
		{
7755 leency 673
			if (strchr(#new_url, '|')) {
674
				ESBYTE[strchr(#new_url, '|')] = NULL;
675
				RunProgram(#new_url, strlen(#new_url)+1+#new_url);
676
			} else {
677
				RunProgram("/sys/@open", #new_url);
7422 leency 678
			}
6730 leency 679
			return;
680
		}
5774 leency 681
	}
7755 leency 682
	OpenPage(#new_url);
683
}
684
 
685
void EventSubmitOmnibox()
686
{
687
	char new_url[URL_SIZE+1];
688
	if (!editURL[0]) return;
689
	if (!strncmp(#editURL,"http:",5)) || (editURL[0]=='/')
690
	|| (!strncmp(#editURL,"https:",6)) || (!strncmp(#editURL,"WebView:",8)) {
691
		OpenPage(#editURL);
692
	} else {
693
		strcpy(#new_url, "http://");
7970 leency 694
		strncat(#new_url, #editURL, URL_SIZE-1);
7755 leency 695
		OpenPage(#new_url);
6931 leency 696
	}
5774 leency 697
}
698
 
7755 leency 699
void LoadInternalPage(dword _bufdata, _in_bufsize){
700
	if (!_bufdata) || (!_in_bufsize) {
8278 leency 701
		LoadInternalPage(#buildin_page_error, sizeof(buildin_page_error));
7755 leency 702
	} else {
703
		WB1.list.first = 0; //scroll page to the top
704
		DrawOmnibox();
705
		if(!strrchr(#editURL, '#')) {
706
			strcat(#editURL, #anchors.current);
707
			DrawOmnibox();
708
		}
8365 leency 709
		render_start_time = GetStartTime();
7759 leency 710
		WB1.ParseHtml(_bufdata, _in_bufsize);
8302 leency 711
		// REJECTED. Reason: infinite redirect at Google Results.
712
		/*
713
		if (WB1.redirect) { //
714
			get_absolute_url(#WB1.redirect, history.current());
715
			history.back();
716
			OpenPage(#WB1.redirect);
717
		}
718
		*/
8413 leency 719
		DrawStatusBar(NULL);
7771 leency 720
		DrawActiveTab();
7756 leency 721
		if (source_mode) {
722
			source_mode = false;
7799 leency 723
			WB1.custom_encoding = CH_CP866;
7759 leency 724
			ShowSource(WB1.bufpointer, _in_bufsize);
7757 leency 725
		} else {
8016 leency 726
			WB1.DrawPage();
7756 leency 727
		}
8698 leency 728
		http.hfree();
8445 leency 729
		if (WB1.img_url.count) { GetImg(true); DrawOmnibox(); }
7742 leency 730
	}
731
}
732
 
7799 leency 733
bool UrlExtIs(dword base, ext)
7742 leency 734
{
7755 leency 735
	if (!strcmpi(base + strlen(base) - strlen(ext), ext)) return true;
7742 leency 736
	return false;
737
}
738
 
739
void DrawProgress()
740
{
8330 leency 741
	dword pct;
742
	if (!http.transfer) return;
743
	if (http_get_type==PAGE) && (prbar.max) pct = prbar.value*30/prbar.max; else pct = 10;
8336 leency 744
	if (http_get_type==IMG) pct = prbar.value * 70 / prbar.max + 30;
8332 leency 745
	DrawBar(omnibox_edit.left-1, omnibox_edit.top+20, pct*omnibox_edit.width+16/100, 2, 0x72B7EB);
7742 leency 746
}
747
 
7770 leency 748
void EventShowPageMenu()
6782 leency 749
{
8020 leency 750
	open_lmenu(mouse.x, mouse.y, MENU_TOP_LEFT, NULL, #rmb_menu);
7780 leency 751
	menu_id = VIEW_SOURCE;
6782 leency 752
}
753
 
7770 leency 754
void EventShowLinkMenu()
7759 leency 755
{
8020 leency 756
	open_lmenu(mouse.x, mouse.y, MENU_TOP_LEFT, NULL, #link_menu);
7789 simsanutiy 757
	menu_id = IN_NEW_TAB;
7759 leency 758
}
759
 
7780 leency 760
void EventShowMainMenu()
761
{
8020 leency 762
	open_lmenu(Form.cwidth - PADDING -4, PADDING + TSZE + 3,
763
		MENU_TOP_RIGHT, NULL, #main_menu);
7780 leency 764
	menu_id = OPEN_FILE;
765
}
766
 
7770 leency 767
void EventShowEncodingsList()
7758 leency 768
{
8020 leency 769
	open_lmenu(Form.cwidth-4, Form.cheight - STATUSBAR_H + 12,
770
		MENU_BOT_RIGHT, WB1.cur_encoding + 1,
771
		"UTF-8\nKOI8-RU\nCP1251\nCP1252\nISO8859-5\nCP866");
7780 leency 772
	menu_id = ENCODINGS;
7758 leency 773
}
774
 
7780 leency 775
void ProcessMenuClick()
6795 leency 776
{
7780 leency 777
	int click_id;
7910 leency 778
	if (menu_id) {
779
		if (click_id = get_menu_click()) {
780
			click_id += menu_id - 1;
8332 leency 781
			ProcessButtonClick(click_id);
7910 leency 782
		}
783
		if (!menu_process_id) menu_id = NULL;
7780 leency 784
	}
6795 leency 785
}
786
 
7743 leency 787
void EventSeachWeb()
788
{
7755 leency 789
	char new_url[URL_SIZE+1];
8492 leency 790
	replace_char(#editURL, ' ', '+', URL_SIZE);
7755 leency 791
	strcpy(#new_url, "https://www.google.com/search?q=");
792
	strncat(#new_url, #editURL, URL_SIZE);
793
	OpenPage(#new_url);
7743 leency 794
}
795
 
7748 leency 796
void EventOpenDialog()
797
{
798
	OpenDialog_start stdcall (#o_dialog);
799
	if (o_dialog.status) {
7755 leency 800
		OpenPage(#openfile_path);
7748 leency 801
	}
802
}
803
 
7750 leency 804
void EventViewSource()
805
{
7771 leency 806
	source_mode = true;
807
	EventOpenNewTab(history.current());
7750 leency 808
}
809
 
7893 leency 810
void EventRefreshPage()
811
{
812
	if (http.transfer) {
813
		StopLoading();
814
		draw_window();
815
	} else {
816
		OpenPage(history.current());
817
	}
818
}
819
 
7765 leency 820
void EventUpdateBrowser()
821
{
822
	dword downloader_id, slot_n;
823
	dword current_size;
824
	dword new_size;
825
 
826
	draw_window();
827
 
8278 leency 828
	downloader_id = EventOpenDownloader(#update_param);
7765 leency 829
	do {
830
		slot_n = GetProcessSlot(downloader_id);
831
		pause(10);
832
	} while (slot_n!=0);
833
 
8392 leency 834
	current_size = get_file_size(#program_path);
835
	new_size = get_file_size("/tmp0/1/Downloads/WebView.com");
7765 leency 836
 
8413 leency 837
	if (!new_size) || (new_size<5000) { notify(#update_download_error); return; }
838
	if (current_size == new_size) { notify(#update_is_current);	return; }
7765 leency 839
 
8332 leency 840
	if (CopyFileAtOnce(new_size, "/tmp0/1/Downloads/WebView.com", #program_path)) {
7765 leency 841
		notify(#update_can_not_copy);
842
	} else {
843
		notify(#update_ok);
844
		RunProgram(#program_path, history.current());
845
		ExitProcess();
846
	}
847
}
848
 
8413 leency 849
void DrawStatusBar(dword _msg)
6795 leency 850
{
7970 leency 851
	dword status_y = Form.cheight - STATUSBAR_H + 4;
852
	dword status_w = Form.cwidth - 90;
8417 leency 853
	if (Form.status_window>2) return;
7806 leency 854
	DrawBar(0,Form.cheight - STATUSBAR_H+1, Form.cwidth,STATUSBAR_H-1, sc.work);
8413 leency 855
	if (_msg) {
856
		ESI = math.min(status_w/6, strlen(_msg));
857
		WriteText(10, status_y, 0, sc.work_text, _msg);
7758 leency 858
	}
7970 leency 859
	DefineHiddenButton(status_w+20, status_y-3, 60, 12, CHANGE_ENCODING);
860
	WriteTextCenter(status_w+20, status_y, 60, sc.work_text, WB1.cur_encoding*10+#charsets);
7758 leency 861
}
862
 
863
void DrawOmnibox()
864
{
7784 leency 865
	int imgxoff;
7758 leency 866
 
8332 leency 867
	DrawOvalBorder(omnibox_edit.left-2, omnibox_edit.top-3, omnibox_edit.width+18, 24, sc.work_graph,
7806 leency 868
		sc.work_graph, sc.work_graph, sc.work_dark);
8332 leency 869
	DrawBar(omnibox_edit.left-1, omnibox_edit.top-2, omnibox_edit.width+18, 1, 0xD8DCD8);
870
	DrawBar(omnibox_edit.left-1, omnibox_edit.top-1, omnibox_edit.width+18, 1, omnibox_edit.color);
871
	DrawBar(omnibox_edit.left-1, omnibox_edit.top, 1, 22, omnibox_edit.color);
7758 leency 872
 
8332 leency 873
	if (omnibox_edit.flags & ed_focus) omnibox_edit.flags = ed_focus; else omnibox_edit.flags = 0;
874
	EditBox_UpdateText(#omnibox_edit, omnibox_edit.flags);
875
	edit_box_draw stdcall(#omnibox_edit);
7784 leency 876
	if (http.transfer) imgxoff = 16*23*3; else imgxoff = 0;
8332 leency 877
	_PutImage(omnibox_edit.left+omnibox_edit.width+1, omnibox_edit.top-1, 16, 23, imgxoff + #editbox_icons);
878
	DefineHiddenButton(omnibox_edit.left+omnibox_edit.width-1, omnibox_edit.top-2, 17, 23, REFRESH_BUTTON);
7758 leency 879
 
880
	DrawProgress();
881
}
882
 
7771 leency 883
void SetOmniboxText(dword _text)
884
{
8336 leency 885
	edit_box_set_text stdcall (#omnibox_edit, _text);
8355 leency 886
	omnibox_edit.pos = omnibox_edit.flags = 0;
887
	DrawOmnibox();
7771 leency 888
}
7758 leency 889
 
7970 leency 890
dword GetAbsoluteActiveURL()
891
{
892
	char abs_url[URL_SIZE];
893
	if (links.active_url) {
894
		strncpy(#abs_url, links.active_url, URL_SIZE);
8291 leency 895
		get_absolute_url(#abs_url, history.current());
7970 leency 896
		return #abs_url;
897
	}
898
	return 0;
899
}
7771 leency 900
 
8305 leency 901
void CheckContentType()
902
{
903
	char content_type[64];
8319 leency 904
	if (http.header_field("content-type", #content_type, sizeof(content_type))) // application || image
8413 leency 905
 
906
	if (content_type[0] == 'i') {
907
		EventDownloadAndOpenImage(http.cur_url);
908
		StopLoading();
8499 leency 909
	}
910
	else if (content_type[0] == 'a') {
8444 leency 911
		EventOpenDownloader(http.cur_url);
8305 leency 912
		StopLoading();
913
	}
8499 leency 914
	else {
915
		WB1.custom_encoding = -1;
916
		if (EAX = strchr(#content_type, '=')) {
917
			WB1.custom_encoding = get_encoding_type_by_name(EAX+1);
918
		}
919
	}
8305 leency 920
}
921
 
8413 leency 922
void EventDownloadAndOpenImage(dword _url)
923
{
924
	char image_download_url[URL_SIZE];
925
	strcpy(#image_download_url, "-eo ");
926
	strncat(#image_download_url, _url, URL_SIZE);
927
	EventOpenDownloader(#image_download_url);
928
}
929
 
8305 leency 930
void HandleRedirect()
931
{
8500 leency 932
	dword redirect_url = malloc(URL_SIZE);
933
	http.header_field("location", redirect_url, URL_SIZE);
934
	get_absolute_url(redirect_url, http.cur_url);
8305 leency 935
	http.hfree();
8500 leency 936
	if (http_get_type==PAGE) OpenPage(redirect_url);
937
	else if (http_get_type==IMG) GetUrl(redirect_url);
938
	free(redirect_url);
8305 leency 939
}
940
 
8336 leency 941
dword GetImg(bool _new)
8016 leency 942
{
8336 leency 943
	int i;
8330 leency 944
	if (!show_images) return;
8336 leency 945
	http_get_type = IMG;
946
 
8396 leency 947
	for (i = 0; i < WB1.img_url.count; i++)
8336 leency 948
	{
8396 leency 949
		cur_img_url = WB1.img_url.get(i);
8440 leency 950
		if (debug_mode) {debug("get img: ");debugln(cur_img_url);}
8336 leency 951
		if (cache.has(cur_img_url)==false) {
8396 leency 952
			prbar.max = WB1.img_url.count;
8336 leency 953
			prbar.value = i;
8413 leency 954
			if (GetUrl(cur_img_url)) {DrawStatusBar(cur_img_url); DrawProgress(); return;}
8336 leency 955
		}
8016 leency 956
	}
8336 leency 957
	if (_new) return;
8016 leency 958
	DrawOmnibox();
8413 leency 959
	DrawStatusBar(T_RENDERING);
8500 leency 960
	WB1.Reparse();
8016 leency 961
	WB1.DrawPage();
8413 leency 962
	debugln(sprintf(#param, T_DONE_IN_SEC, GetStartTime()-render_start_time/100));
963
	DrawStatusBar(NULL);
8016 leency 964
}
965
 
5631 pavelyakov 966
stop: