]> git.mxchange.org Git - friendica.git/blob - mod/invite.php
Merge pull request #5830 from nupplaphil/update_from_boot
[friendica.git] / mod / invite.php
1 <?php
2 /**
3  * Module: invite.php
4  *
5  * Send email invitations to join social network
6  *
7  */
8
9 use Friendica\App;
10 use Friendica\BaseModule;
11 use Friendica\Core\Config;
12 use Friendica\Core\L10n;
13 use Friendica\Core\PConfig;
14 use Friendica\Core\System;
15 use Friendica\Database\DBA;
16 use Friendica\Protocol\Email;
17 use Friendica\Util\DateTimeFormat;
18 use Friendica\Util\Security;
19
20 function invite_post(App $a)
21 {
22         if (! local_user()) {
23                 notice(L10n::t('Permission denied.') . EOL);
24                 return;
25         }
26
27         BaseModule::checkFormSecurityTokenRedirectOnError('/', 'send_invite');
28
29         $max_invites = intval(Config::get('system', 'max_invites'));
30         if (! $max_invites) {
31                 $max_invites = 50;
32         }
33
34         $current_invites = intval(PConfig::get(local_user(), 'system', 'sent_invites'));
35         if ($current_invites > $max_invites) {
36                 notice(L10n::t('Total invitation limit exceeded.') . EOL);
37                 return;
38         }
39
40
41         $recipients  = !empty($_POST['recipients']) ? explode("\n", $_POST['recipients']) : [];
42         $message     = !empty($_POST['message'])    ? notags(trim($_POST['message']))     : '';
43
44         $total = 0;
45
46         if (Config::get('system', 'invitation_only')) {
47                 $invitation_only = true;
48                 $invites_remaining = PConfig::get(local_user(), 'system', 'invites_remaining');
49                 if ((! $invites_remaining) && (! is_site_admin())) {
50                         return;
51                 }
52         }
53
54         foreach ($recipients as $recipient) {
55                 $recipient = trim($recipient);
56
57                 if (! valid_email($recipient)) {
58                         notice(L10n::t('%s : Not a valid email address.', $recipient) . EOL);
59                         continue;
60                 }
61
62                 if ($invitation_only && ($invites_remaining || is_site_admin())) {
63                         $code = Friendica\Model\Register::createForInvitation();
64                         $nmessage = str_replace('$invite_code', $code, $message);
65
66                         if (! is_site_admin()) {
67                                 $invites_remaining --;
68                                 if ($invites_remaining >= 0) {
69                                         PConfig::set(local_user(), 'system', 'invites_remaining', $invites_remaining);
70                                 } else {
71                                         return;
72                                 }
73                         }
74                 } else {
75                         $nmessage = $message;
76                 }
77
78                 $additional_headers = 'From: ' . $a->user['email'] . "\n"
79                         . 'Sender: ' . $a->getSenderEmailAddress() . "\n"
80                         . 'Content-type: text/plain; charset=UTF-8' . "\n"
81                         . 'Content-transfer-encoding: 8bit';
82
83                 $res = mail(
84                         $recipient,
85                         Email::encodeHeader(L10n::t('Please join us on Friendica'), 'UTF-8'),
86                         $nmessage,
87                         $additional_headers);
88
89                 if ($res) {
90                         $total ++;
91                         $current_invites ++;
92                         PConfig::set(local_user(), 'system', 'sent_invites', $current_invites);
93                         if ($current_invites > $max_invites) {
94                                 notice(L10n::t('Invitation limit exceeded. Please contact your site administrator.') . EOL);
95                                 return;
96                         }
97                 } else {
98                         notice(L10n::t('%s : Message delivery failed.', $recipient) . EOL);
99                 }
100
101         }
102         notice(L10n::tt("%d message sent.", "%d messages sent.", $total) . EOL);
103         return;
104 }
105
106 function invite_content(App $a) {
107
108         if (! local_user()) {
109                 notice(L10n::t('Permission denied.') . EOL);
110                 return;
111         }
112
113         $tpl = get_markup_template('invite.tpl');
114         $invonly = false;
115
116         if (Config::get('system', 'invitation_only')) {
117                 $invonly = true;
118                 $x = PConfig::get(local_user(), 'system', 'invites_remaining');
119                 if ((! $x) && (! is_site_admin())) {
120                         notice(L10n::t('You have no more invitations available') . EOL);
121                         return '';
122                 }
123         }
124
125         $dirloc = Config::get('system', 'directory');
126         if (strlen($dirloc)) {
127                 if (intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED) {
128                         $linktxt = L10n::t('Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks.', $dirloc . '/servers');
129                 } else {
130                         $linktxt = L10n::t('To accept this invitation, please visit and register at %s or any other public Friendica website.', System::baseUrl())
131                         . "\r\n" . "\r\n" . L10n::t('Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join.', $dirloc . '/servers');
132                 }
133         } else { // there is no global directory URL defined
134                 if (intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED) {
135                         $o = L10n::t('Our apologies. This system is not currently configured to connect with other public sites or invite members.');
136                         return $o;
137                 } else {
138                         $linktxt = L10n::t('To accept this invitation, please visit and register at %s.', System::baseUrl()
139                         . "\r\n" . "\r\n" . L10n::t('Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks.'));
140                 }
141         }
142
143         $o = replace_macros($tpl, [
144                 '$form_security_token' => BaseModule::getFormSecurityToken("send_invite"),
145                 '$title'               => L10n::t('Send invitations'),
146                 '$recipients'          => ['recipients', L10n::t('Enter email addresses, one per line:')],
147                 '$message'             => ['message', L10n::t('Your message:'),L10n::t('You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.') . "\r\n" . "\r\n"
148                         . $linktxt
149                         . "\r\n" . "\r\n" . (($invonly) ? L10n::t('You will need to supply this invitation code: $invite_code') . "\r\n" . "\r\n" : '') .L10n::t('Once you have registered, please connect with me via my profile page at:')
150                         . "\r\n" . "\r\n" . System::baseUrl() . '/profile/' . $a->user['nickname']
151                         . "\r\n" . "\r\n" . L10n::t('For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca') . "\r\n" . "\r\n"],
152                 '$submit'              => L10n::t('Submit')
153         ]);
154
155         return $o;
156 }