From d21447d096a320a08b3efb2b8768fad0dcdcfd64 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 5 May 2016 22:28:51 +0100 Subject: move frontends into sub directory --- frontends/amiga/login.c | 238 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 238 insertions(+) create mode 100755 frontends/amiga/login.c (limited to 'frontends/amiga/login.c') diff --git a/frontends/amiga/login.c b/frontends/amiga/login.c new file mode 100755 index 000000000..a4c0d62bb --- /dev/null +++ b/frontends/amiga/login.c @@ -0,0 +1,238 @@ +/* + * Copyright 2008 Chris Young + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * NetSurf is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "amiga/os3support.h" + +#include +#include +#include + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "utils/messages.h" +#include "utils/errors.h" +#include "content/urldb.h" +#include "desktop/mouse.h" +#include "desktop/gui_window.h" + +#include "amiga/gui.h" +#include "amiga/libs.h" +#include "amiga/misc.h" +#include "amiga/object.h" +#include "amiga/login.h" + +struct gui_login_window { + struct nsObject *node; + struct Window *win; + Object *objects[GID_LAST]; + nserror (*cb)(bool proceed, void *pw); + void *cbpw; + nsurl *url; + char *realm; + lwc_string *host; + char uname[256]; + char pwd[256]; +}; + +void gui_401login_open(nsurl *url, const char *realm, + nserror (*cb)(bool proceed, void *pw), void *cbpw) +{ + const char *auth; + struct gui_login_window *lw = ami_misc_allocvec_clear(sizeof(struct gui_login_window), 0); + lwc_string *host = nsurl_get_component(url, NSURL_HOST); + + assert(host != NULL); + + lw->host = host; + lw->url = nsurl_ref(url); + lw->realm = (char *)realm; + lw->cb = cb; + lw->cbpw = cbpw; + + auth = urldb_get_auth_details(lw->url, realm); + + if (auth == NULL) { + lw->uname[0] = '\0'; + lw->pwd[0] = '\0'; + } else { + const char *pwd; + size_t pwd_len; + + pwd = strchr(auth, ':'); + assert(pwd && pwd < auth + sizeof(lw->uname)); + memcpy(lw->uname, auth, pwd - auth); + lw->uname[pwd - auth] = '\0'; + ++pwd; + pwd_len = strlen(pwd); + assert(pwd_len < sizeof(lw->pwd)); + memcpy(lw->pwd, pwd, pwd_len); + lw->pwd[pwd_len] = '\0'; + } + + lw->objects[OID_MAIN] = WindowObj, + WA_ScreenTitle, ami_gui_get_screen_title(), + WA_Title, nsurl_access(lw->url), + WA_Activate, TRUE, + WA_DepthGadget, TRUE, + WA_DragBar, TRUE, + WA_CloseGadget, FALSE, + WA_SizeGadget, TRUE, + WA_PubScreen,scrn, + WINDOW_SharedPort,sport, + WINDOW_UserData,lw, + WINDOW_IconifyGadget, FALSE, + WINDOW_LockHeight,TRUE, + WINDOW_Position, WPOS_CENTERSCREEN, + WINDOW_ParentGroup, lw->objects[GID_MAIN] = LayoutVObj, + LAYOUT_AddChild, StringObj, + STRINGA_TextVal, + lwc_string_data(lw->host), + GA_ReadOnly,TRUE, + StringEnd, + CHILD_Label, LabelObj, + LABEL_Text,messages_get("Host"), + LabelEnd, + CHILD_WeightedHeight,0, + LAYOUT_AddChild, StringObj, + STRINGA_TextVal,lw->realm, + GA_ReadOnly,TRUE, + StringEnd, + CHILD_Label, LabelObj, + LABEL_Text,messages_get("Realm"), + LabelEnd, + CHILD_WeightedHeight,0, + LAYOUT_AddChild, lw->objects[GID_USER] = StringObj, + GA_ID,GID_USER, + GA_TabCycle,TRUE, + STRINGA_TextVal, lw->uname, + StringEnd, + CHILD_Label, LabelObj, + LABEL_Text,messages_get("Username"), + LabelEnd, + CHILD_WeightedHeight,0, + LAYOUT_AddChild, lw->objects[GID_PASS] = StringObj, + GA_ID,GID_PASS, + STRINGA_HookType,SHK_PASSWORD, + GA_TabCycle,TRUE, + STRINGA_TextVal, lw->pwd, + StringEnd, + CHILD_Label, LabelObj, + LABEL_Text,messages_get("Password"), + LabelEnd, + CHILD_WeightedHeight,0, + LAYOUT_AddChild, LayoutHObj, + LAYOUT_AddChild, lw->objects[GID_LOGIN] = ButtonObj, + GA_ID,GID_LOGIN, + GA_RelVerify,TRUE, + GA_Text,messages_get("Login"), + GA_TabCycle,TRUE, + ButtonEnd, + CHILD_WeightedHeight,0, + LAYOUT_AddChild, lw->objects[GID_CANCEL] = ButtonObj, + GA_ID,GID_CANCEL, + GA_RelVerify,TRUE, + GA_Text,messages_get("Cancel"), + GA_TabCycle,TRUE, + ButtonEnd, + LayoutEnd, + CHILD_WeightedHeight,0, + EndGroup, + EndWindow; + + lw->win = (struct Window *)RA_OpenWindow(lw->objects[OID_MAIN]); + + lw->node = AddObject(window_list,AMINS_LOGINWINDOW); + lw->node->objstruct = lw; +} + +static void ami_401login_close(struct gui_login_window *lw) +{ + /* If continuation exists, then forbid refetch */ + if (lw->cb != NULL) + lw->cb(false, lw->cbpw); + + DisposeObject(lw->objects[OID_MAIN]); + lwc_string_unref(lw->host); + nsurl_unref(lw->url); + DelObject(lw->node); +} + +static void ami_401login_login(struct gui_login_window *lw) +{ + ULONG *user,*pass; + STRPTR userpass; + + GetAttr(STRINGA_TextVal,lw->objects[GID_USER],(ULONG *)&user); + GetAttr(STRINGA_TextVal,lw->objects[GID_PASS],(ULONG *)&pass); + + userpass = ASPrintf("%s:%s",user,pass); + urldb_set_auth_details(lw->url,lw->realm,userpass); + FreeVec(userpass); + + lw->cb(true, lw->cbpw); + + /* Invalidate continuation */ + lw->cb = NULL; + lw->cbpw = NULL; + + ami_401login_close(lw); +} + +BOOL ami_401login_event(struct gui_login_window *lw) +{ + /* return TRUE if window destroyed */ + ULONG result; + uint16 code; + + while((result = RA_HandleInput(lw->objects[OID_MAIN], &code)) != WMHI_LASTMSG) + { + switch(result & WMHI_CLASSMASK) // class + { + case WMHI_GADGETUP: + switch(result & WMHI_GADGETMASK) + { + case GID_LOGIN: + ami_401login_login(lw); + return TRUE; + break; + + case GID_CANCEL: + ami_401login_close(lw); + return TRUE; + break; + } + break; + } + } + return FALSE; +} + -- cgit v1.2.3