]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/opac/skin/default/js/sidebar.js
638fc79230e4a756c7c024f9b19aac256fd06359
[working/Evergreen.git] / Open-ILS / web / opac / skin / default / js / sidebar.js
1 /* set up the colors in the sidebar 
2         Disables/Enables certain components based on various state data */
3
4 attachEvt("common", "init", initSideBar);
5 attachEvt("common", "init", setSidebarLinks);
6
7 attachEvt("common", "unload", sidebarTreesFree );
8
9 function prevRResults() {
10         return buildOPACLink({ page : RRESULT });
11 }
12
13 function prevMResults() {
14         return buildOPACLink({ page : MRESULT });
15 }
16
17 function initSideBar() {
18         var page = findCurrentPage();
19
20         if( page == MRESULT ) 
21                 unHideMe($("sidebar_results_wrapper"));
22
23         if( page == RRESULT ) {
24                 unHideMe($("sidebar_results_wrapper"));
25                 unHideMe(G.ui.sidebar[MRESULT]);
26                 if( getRtype() == RTYPE_MRID )
27                         $("sidebar_title_group_results").setAttribute("href", prevMResults());
28                 else hideMe($("sidebar_title_group_results").parentNode);
29         }
30
31         if( page == RDETAIL ) {
32                 unHideMe($("sidebar_results_wrapper"));
33
34
35                 unHideMe(G.ui.sidebar[MRESULT]);
36                 if(getRtype())
37                         $("sidebar_title_results").setAttribute("href", prevRResults());
38                 unHideMe(G.ui.sidebar[RRESULT]);
39
40                 if( getRtype() == RTYPE_MRID )
41                         $("sidebar_title_group_results").setAttribute("href", prevMResults());
42                 else hideMe($("sidebar_title_group_results").parentNode);
43         }
44
45         unHideMe(G.ui.sidebar[page]);
46         addCSSClass(G.ui.sidebar[page], "sidebar_item_active");
47
48         /* if we're logged in, show it and replace the Login link with the Logout link */
49         if(grabUser()) {
50                 G.ui.sidebar.username_dest.appendChild(text(G.user.usrname()));
51                 unHideMe(G.ui.sidebar.logoutbox);
52                 unHideMe(G.ui.sidebar.logged_in_as);
53                 hideMe(G.ui.sidebar.loginbox);
54         }
55
56         if(G.ui.sidebar.login) G.ui.sidebar.login.onclick = initLogin;
57         if(G.ui.sidebar.logout) G.ui.sidebar.logout.onclick = doLogout; 
58
59         if(isXUL()) hideMe( G.ui.sidebar.logoutbox );
60 }
61
62 /* sets up the login ui components */
63 var loginBoxVisible = false;
64
65 function loginDance() {
66
67         if(doLogin(true)) {
68
69                 if(!strongPassword( G.ui.login.password.value ) ) {
70
71             dojo.require('dojo.cookie');
72                         dojo.cookie(COOKIE_SES, "");
73                         hideMe($('login_table'));
74                         unHideMe($('change_pw_table'));
75                         $('change_pw_current').focus();
76                         $('change_pw_button').onclick = changePassword;
77                         setEnterFunc($('change_pw_2'), changePassword);
78
79                 } else {
80                         loggedInOK();
81                 }
82         }
83 }
84
85 function loggedInOK() {
86         showCanvas();
87         G.ui.sidebar.username_dest.appendChild(text(G.user.usrname()));
88         unHideMe(G.ui.sidebar.logoutbox);
89         unHideMe(G.ui.sidebar.logged_in_as);
90         hideMe(G.ui.sidebar.loginbox);
91         runEvt( 'common', 'loggedIn');
92         
93         var org = G.user.prefs[PREF_DEF_LOCATION];
94         if(!org) org = G.user.home_ou();
95
96         var depth = G.user.prefs[PREF_DEF_DEPTH];
97         if(! ( depth && depth <= findOrgDepth(org)) ) 
98                 depth = findOrgDepth(org);
99
100         runEvt( "common", "locationChanged", org, depth);
101 }
102
103
104 function changePassword() {
105
106         var pc = $('change_pw_current').value;
107         var p1 = $('change_pw_1').value;
108         var p2 = $('change_pw_2').value;
109
110         if( p1 != p2 ) {
111                 alert($('pw_no_match').innerHTML);
112                 return;
113         }
114
115         if(!strongPassword(p2, true) ) return;
116
117         var req = new Request(UPDATE_PASSWORD, G.user.session, p2, pc );
118         req.send(true);
119         if(req.result()) {
120                 alert($('pw_update_successful').innerHTML);
121                 loggedInOK();
122         }
123 }
124
125 var pwRegexSetting;
126 function strongPassword(pass, alrt) {
127
128     /* first, let's see if there is a configured regex */
129     if(!pwRegexSetting) {
130         var regex = fetchOrgSettingDefault(G.user.home_ou(), 'global.password_regex');
131         if(regex) {
132             if(pass.match(new RegExp(regex))) {
133                 return true;
134             } else {
135                 if(alrt)
136                        alert($('pw_not_strong').innerHTML);
137                 return false;
138             }
139         }
140     }
141
142     /* no regex configured, use the default */
143
144         var good = false;
145
146         do {
147
148                 if(pass.length < 7) break;
149                 if(!pass.match(/.*\d+.*/)) break;
150                 if(!pass.match(/.*[A-Za-z]+.*/)) break;
151                 good = true;
152
153         } while(0);
154
155         if(!good && alrt) alert($('pw_not_strong').innerHTML);
156         return good;
157 }
158
159 function initLogin() {
160     swapCanvas(G.ui.login.box);
161     try{G.ui.login.username.focus();} catch(e) {}
162
163     G.ui.login.cancel.onclick = function(evt) { 
164         G.ui.login.form.setAttribute('action',
165             'javascript:showCanvas();runEvt("common", "loginCanceled");'); 
166     };
167
168     if(findCurrentPage() == MYOPAC) {
169         G.ui.login.cancel.onclick = function(evt) { 
170             G.ui.login.form.setAttribute('action','javascript:goHome();'); };
171     }
172 }
173
174 function setSidebarLinks() {
175         G.ui.sidebar.home_link.setAttribute("href", buildOPACLink({page:HOME}));
176         G.ui.sidebar.advanced_link.setAttribute("href", buildOPACLink({page:ADVANCED}));
177         G.ui.sidebar.myopac_link.setAttribute("href", buildOPACLink({page:MYOPAC}, false, true));
178 }
179
180 function sidebarTreesFree() {
181 /*
182         removeChildren($(subjectSidebarTree.rootid));
183         removeChildren($(authorSidebarTree.rootid));
184         removeChildren($(seriesSidebarTree.rootid));
185         subjectSidebarTree = null;
186         authorSidebarTree = null;
187         seriesSidebarTree = null;
188 */
189 }
190
191
192
193
194 /* --------------------------------------------------------------------------------- */
195 /* Code to support GALILEO links for PINES.  Fails gracefully
196 /* --------------------------------------------------------------------------------- */
197 attachEvt('common', 'init', buildEGGalLink);
198 function buildEGGalLink() {
199
200         /* we're in a lib, nothing to do here */
201         if( getOrigLocation() ) return;
202         if(!$('eg_gal_link')) return;
203
204         //var link = 'http://demo.galib.uga.edu/express?pinesid=';
205         var link = 'http://www.galileo.usg.edu/express?pinesid=';
206         if(grabUser()) {
207                 $('eg_gal_link').setAttribute('href', link + G.user.session);
208                 return;
209         }
210
211         $('eg_gal_link').setAttribute('href', 'javascript:void(0);');
212         $('eg_gal_link').setAttribute('target', '');
213         $('eg_gal_link').onclick = function() {
214                 /* we're not logged in.  go ahead and login */
215                 detachAllEvt('common','locationChanged');
216                 detachAllEvt('common','loggedIn');
217                 attachEvt('common','loggedIn', function() { goTo(link + G.user.session); })
218                 initLogin();
219         };
220 }
221 /* --------------------------------------------------------------------------------- */
222
223