Subversion Repositories oidplus

Rev

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

Rev Author Line No. Line
117 daniel-mar 1
/*
2
 * OIDplus 2.0
3
 * Copyright 2019 Daniel Marschall, ViaThinkSoft
4
 *
5
 * Licensed under the Apache License, Version 2.0 (the "License");
6
 * you may not use this file except in compliance with the License.
7
 * You may obtain a copy of the License at
8
 *
9
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
 
18
function inviteFormOnSubmit() {
19
        $.ajax({
20
                url: "ajax.php",
21
                type: "POST",
22
                data: {
320 daniel-mar 23
                        plugin:"1.3.6.1.4.1.37476.2.5.2.4.2.92",
117 daniel-mar 24
                        action: "invite_ra",
25
                        email: $("#email").val(),
26
                        captcha: document.getElementsByClassName('g-recaptcha').length > 0 ? grecaptcha.getResponse() : null
27
                },
28
                error:function(jqXHR, textStatus, errorThrown) {
360 daniel-mar 29
                        alert(_L("Error: %1",errorThrown));
117 daniel-mar 30
                        if (document.getElementsByClassName('g-recaptcha').length > 0) grecaptcha.reset();
31
                },
32
                success: function(data) {
33
                        if ("error" in data) {
360 daniel-mar 34
                                alert(_L("Error: %1",data.error));
117 daniel-mar 35
                                if (document.getElementsByClassName('g-recaptcha').length > 0) grecaptcha.reset();
36
                        } else if (data.status == 0) {
360 daniel-mar 37
                                alert(_L("The RA has been invited via email."));
154 daniel-mar 38
                                window.location.href = '?goto='+$("#origin").val();
117 daniel-mar 39
                                //reloadContent();
40
                        } else {
360 daniel-mar 41
                                alert(_L("Error: %1",data));
117 daniel-mar 42
                                if (document.getElementsByClassName('g-recaptcha').length > 0) grecaptcha.reset();
43
                        }
44
                }
45
        });
46
        return false;
47
}
48
 
49
function activateRaFormOnSubmit() {
50
        $.ajax({
51
                url: "ajax.php",
52
                type: "POST",
53
                data: {
320 daniel-mar 54
                        plugin:"1.3.6.1.4.1.37476.2.5.2.4.2.92",
117 daniel-mar 55
                        action: "activate_ra",
56
                        email: $("#email").val(),
57
                        auth: $("#auth").val(),
58
                        password1: $("#password1").val(),
59
                        password2: $("#password2").val(),
60
                        timestamp: $("#timestamp").val()
61
                },
62
                error:function(jqXHR, textStatus, errorThrown) {
360 daniel-mar 63
                        alert(_L("Error: %1",errorThrown));
117 daniel-mar 64
                },
65
                success: function(data) {
66
                        if ("error" in data) {
360 daniel-mar 67
                                alert(_L("Error: %1",data.error));
117 daniel-mar 68
                        } else if (data.status == 0) {
360 daniel-mar 69
                                alert(_L("Registration successful! You can now log in."));
154 daniel-mar 70
                                window.location.href = '?goto=oidplus:login';
117 daniel-mar 71
                                //reloadContent();
72
                        } else {
360 daniel-mar 73
                                alert(_L("Error: %1",data));
117 daniel-mar 74
                        }
75
                }
76
        });
77
        return false;
360 daniel-mar 78
}