Welcome to mirror list, hosted at ThFree Co, Russian Federation.

page-ionossubmit.php - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87e08c828ccc6bae82808340e772d5dd838a4b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<head>
<meta charset="utf-8">
    <script>
	require(["require.config"], function() {
		require(["pages/enterprise"])
	});
</script>
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/pages/enterprise.css" rel="stylesheet">
</head>
<section class="enterprise-hero-section second-menu">
	<div class="container-fluid background">
		<div class="container">
			<div class="col-md-6 topheader">
                <h1><?php echo $l->t('Nextcloud Enterprise');?></h1>
                <h2><?php echo $l->t('The enterprise-ready Content Collaboration Platform');?></h2>
			</div>
		</div>
	</div>
</section>
<section>
<div class="container">
<?php
require_once realpath(dirname(__FILE__)) . '/lib/ratelimiter.php';

if(!canPerformLimitedAction("ionos-submit-action", 2)) {
  die("Too many requests. Please try again later.");
}

class ValidationException extends Exception {};

try {

if(isset($_POST['email'])) {
   function died($error) {
        	// error code goes here
    ?>
            <section class="section--whitepaper">
                <div class="container text-center">
                    <h3><?php echo $l->t('Sorry, there was an error with the form you submitted');?></h3>
                    <p><?php echo $l->t('The error(s) detected:');?><br/>
                        <?php
                        echo $error . "<br />";
                        ?>
                    </p>
                    <p><?php echo $l->t('Use the back key to go to the previous page and fix the issue!');?></p>
                </div>
            </section>
            <?php
        }

    // validation expected data exists
    if(!isset($_POST['yourname']) ||
        !isset($_POST['email']) ||
        !isset($_POST['organization']) ||
        !isset($_POST['phone']) ||
        !isset($_POST['address'])) {

        died('<li>Not all required fields are set (name, email, organization, phone number and address are required).</li>');
    }
    $yourname = $_POST['yourname']; // required
    $organization= $_POST['organization']; // required
    $phone = $_POST['phone']; // required
    $email_from = $_POST['email']; // required
    $comments = $_POST['comments']; // required
    $website = $_POST['website']; // required
	$address = $_POST['address']; // required
    $billing = $_POST['billing']; // required
    $vat = $_POST['vat']; // required
    $users = $_POST['users']; // required
//     $edition = $_POST['edition']; // required
//     $duration = $_POST['duration']; // required
//     $edugov = $_POST['edugov']; // required
//     $collabora = $_POST['collabora']; // required
//     $collabora = $_POST['collabora']; // required
//     $collaboraCheck = $_POST['collaboraCheck']  === 'collaboraCheck' ? 'yes' : 'no';
//     $onlyofficeCheck = $_POST['onlyofficeCheck']  === 'onlyofficeCheck' ? 'yes' : 'no';
    $outlook = $_POST['outlook'] === 'outlook' ? 'yes' : 'no';
//     $remoteinstall = $_POST['remoteinstall'] === 'remoteinstall' ? 'yes' : 'no';
    $givenprice = $_POST['givenPrice'];
    //$spreed = $_POST['spreed'];
    //$branding = $_POST['branding'];
    $dollars = $_POST['dollars'];
    $terms = $_POST['terms'] === 'terms' ? 'yes' : 'no';
    $error_message = "";

    $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,10}$/';
    if(!preg_match($email_exp,$email_from)) {
        $error_message .= '<li>The email address you entered does not appear to be valid.</li>';
    }
    $string_exp = "/^[A-Za-z .'-]+$/";
    if(!preg_match($string_exp,$yourname)) {
        $error_message .= '<li>The name you entered does not appear to be valid.</li>';
    }
    //   $string_exp = "/^((\+|00)\d{1,3})?(\d+|\s+)+\d$/";
    //   if(!preg_match($string_exp,$phone)) {
    //     $error_message .= 'The phone number you entered does not appear to be valid, did you add a country code like +49?<br />';
    //     }
    //   if(strlen($comments) < 8) {
    //     $error_message .= 'Your input is pretty short! <br />';
    //   }

    if ($terms !== 'yes') {
        $error_message .= '<li>Terms need to be signed.</li>';
    }

    $price = 0;
    // validate the input
        $usersPrice = $users * 9.5;

        if ($usersPrice === 0) {
            $error_message .= '<li>Invalid user count.</li>';
        } else {
            $outlookPrice = 0;

            // OUTLOOK
            if ($outlook === 'yes') {
                $outlookPrice = $users * 0.6;
            }

            if (!in_array($edugov, ['no', 'edu', 'gov', 'charity'])) {
                $edugov = 'no';
            }

            // give discounts of 10% on standard, no discounts on basic

            switch ($edugov) {
                case 'edu':
                    $usersPrice *= 0.9;
                    $outlookPrice *= 0.9;
                    $collaboraPrice *= 0.25;
                    break;
                case 'gov':
                    $usersPrice *= 0.9;
                    $outlookPrice *= 0.9;
                    break;
                case 'charity':
                    $usersPrice *= 0.9;
                    $outlookPrice *= 0.9;
                    break;
                }

//             if (!in_array($duration, [1, 2, 3])) {
//                 $error_message .= '<li>Invalid duration.</li>';
//             } else {
//                 switch ($duration) {
//                     case 2:
//                         $usersPrice *= 1.9;
//                         $outlookPrice *= 1.9;
//                         $collaboraPrice *= 1.9;
//                         $onlyofficePrice *= 2;
//                         break;
//                     case 3:
//                         $usersPrice *= 2.75;
//                         $outlookPrice *= 2.75;
//                         $collaboraPrice *= 2.75;
//                         $onlyofficePrice *= 3;
//                         break;
//                 }
//             }

            $price = $usersPrice + $outlookPrice;
            $price = round($price, 2);
        }

//     }

    if(strlen($error_message) > 0) {
        died($error_message);
    }

    if($price > $givenprice) {
        $error_message = '<li>The pricing seems to have changed and doesn\'t match anymore.</li>';
        died($error_message);
    } elseif ($price < $givenprice) {
        // JS calculated more than PHP ;)
        error_log("JS ($givenprice)calculated something different than PHP ($price) " . json_encode($_POST));
    }


    function clean_string($string) {
        $bad = array("content-type","bcc:","to:","cc:","href");
        $string = str_replace($bad,"",$string);
        return htmlspecialchars($string);
    }

    if($error_message === '') {
        if($users == "201") {
            $givenprice = "requesting quote";
            $users = "more than 200, details below";
        }
		// the app review mailing list address
		$email_subject = "IONOS_Viakom_Order_form from " . clean_string($organization);

		$email_message = "";
		$email_message .= "Name: " . clean_string($yourname) . "\n";
		$email_message .= "Email: " . clean_string($email_from) . "\n";
		$email_message .= "Organization: " . clean_string($organization) . "\n";
		$email_message .= "Website: " . clean_string($website) . "\n";
		$email_message .= "Phone number: " . clean_string($phone) . "\n";
		$email_message .= "Address: " . clean_string($address) . "\n";
		$email_message .= "Billing address: " . clean_string($billing) . "\n";
		$email_message .= "VAT ID: " . clean_string($vat) . "\n";
		$email_message .= "Comments: " . clean_string($comments) . "\n\n" . "*Order details* \n";
		$email_message .= "Number of users: " . clean_string($users) . "\n";
// 		$email_message .= "Edition: " . clean_string($edition) . "\n";
// 		$email_message .= "How many years: " . clean_string($duration) . "\n";
// 		$email_message .= "Education/government/charity discount: " . clean_string($edugov) . "\n\n" . "Options:\n";
		$email_message .= "Outlook option (€0.6/user/month): " . clean_string($outlook) . "\n";
// 		$email_message .= "Number of Collabora users (17€ for first 99, then 16€/user): " . clean_string($collaboraCheck) . "\n";
// 		$email_message .= "Would like ONLYOFFICE option (935€ for first 250): " . clean_string($onlyofficeCheck) . "\n";
// 		$email_message .= "Would like remote installation help (990 €): " . clean_string($remoteinstall) . "\n\n";
		// 	$email_message .= "Would like Branding option: ".clean_string($branding)."\n";
		// 	$email_message .= "Would like Spreed option: ".clean_string($spreed)."\n";
		$email_message .= "Price per month: " . clean_string($givenprice) . "\n";
		//$email_message .= "Would like to pay in dollars: ".clean_string($dollars)."\n";
		$email_message .= "Signed terms: " . clean_string($terms) . "\n\n";

		// create email headers
// 		$headers = 'From: sales@nextcloud.com' . "\r\n" .
// 			'Reply-To:  ' . $email_from . ', sales@nextcloud.com' . "\r\n" .
// 			'Cc: ' . $email_from . "\r\n" .
//             'Content-Type: text/plain; charset=UTF-8';
            $headers = 'From: sales@nextcloud.com' . "\r\n" .
			'Reply-To:  ' . $email_from . ', sales@nextcloud.com' . "\r\n" .
            'Content-Type: text/plain; charset=UTF-8';
		// Send the email
// 		$recipients = ['orders'];
// 		$recipients = ['sales', 'jos', 'frank'];
		$recipients = ['viakom-sales'];
// 		$recipients = ['jos','jos.poortvliet',]; // for testing
// 		$recipients = ['frank']; // for testing
		$successfullySend = true;
		foreach ($recipients as $recipient) {
			$successfullySend &= mail($recipient . '@nextcloud.com', $email_subject, $email_message, $headers);
		}
		// send to user themselves

		$email_message_user = "Thank you for your submission! The form contents below have been send to our sales team.\n\n" . $email_message;

		mail($email_from, $email_subject, $email_message_user, $headers);
        // store in log
        $data = [
                'subject' => $email_subject,
                'message' => $email_message,
                'headers' => $headers,
        ];
        file_put_contents('/var/log/sales-leads.txt', json_encode($data) . PHP_EOL, FILE_APPEND | LOCK_EX);

		if ($successfullySend) {
			?>
            <h1><?php echo $l->t('Thanks for your order!');?></h1>
            <p><?php echo $l->t('We are preparing a contract and invoice, as well as deployment. Check your inbox for a contract and login details on the next working day.');?></p>
            <p><?php echo $l->t('We received following details:');?></p>
            <pre><?php
				echo $email_message;
				?></pre>
				<p><?php echo $l->t('Find a copy in your inbox.');?></p>
			<?php
		} else {
			// TODO: log something here
			error_log('could not send all emails - ' . $email_message . json_encode($_POST));
			?>
            <h1><?php echo $l->t('Something went wrong!');?></h1>
            <p><?php echo $l->t('We had some troubles processing your Nextcloud Support Subscription request. Please try again later.');?></p>
			<?php
		}
	}
}

} catch (ValidationException $e) {

    ?>
        <h1><?php echo $l->t('Something went wrong!');?></h1>
    <p><?php echo $l->t('We had some troubles processing your order request.');?></p>
    <p>
    <?php
    echo $e->getMessage();
    ?>
    </p>
    <?php
}
?>
</div>
</section>