5 * Send email invitations to join social network
10 use Friendica\BaseModule;
11 use Friendica\Core\Config;
12 use Friendica\Core\L10n;
13 use Friendica\Core\PConfig;
14 use Friendica\Core\Renderer;
15 use Friendica\Core\System;
16 use Friendica\Module\Register;
17 use Friendica\Protocol\Email;
18 use Friendica\Util\Strings;
20 function invite_post(App $a)
23 notice(L10n::t('Permission denied.') . EOL);
27 BaseModule::checkFormSecurityTokenRedirectOnError('/', 'send_invite');
29 $max_invites = intval(Config::get('system', 'max_invites'));
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);
41 $recipients = !empty($_POST['recipients']) ? explode("\n", $_POST['recipients']) : [];
42 $message = !empty($_POST['message']) ? Strings::escapeTags(trim($_POST['message'])) : '';
45 $invitation_only = false;
46 $invites_remaining = null;
48 if (Config::get('system', 'invitation_only')) {
49 $invitation_only = true;
50 $invites_remaining = PConfig::get(local_user(), 'system', 'invites_remaining');
51 if ((! $invites_remaining) && (! is_site_admin())) {
56 foreach ($recipients as $recipient) {
57 $recipient = trim($recipient);
59 if (!filter_var($recipient, FILTER_VALIDATE_EMAIL)) {
60 notice(L10n::t('%s : Not a valid email address.', $recipient) . EOL);
64 if ($invitation_only && ($invites_remaining || is_site_admin())) {
65 $code = Friendica\Model\Register::createForInvitation();
66 $nmessage = str_replace('$invite_code', $code, $message);
68 if (! is_site_admin()) {
69 $invites_remaining --;
70 if ($invites_remaining >= 0) {
71 PConfig::set(local_user(), 'system', 'invites_remaining', $invites_remaining);
80 $additional_headers = 'From: ' . $a->user['email'] . "\n"
81 . 'Sender: ' . $a->getSenderEmailAddress() . "\n"
82 . 'Content-type: text/plain; charset=UTF-8' . "\n"
83 . 'Content-transfer-encoding: 8bit';
87 Email::encodeHeader(L10n::t('Please join us on Friendica'), 'UTF-8'),
94 PConfig::set(local_user(), 'system', 'sent_invites', $current_invites);
95 if ($current_invites > $max_invites) {
96 notice(L10n::t('Invitation limit exceeded. Please contact your site administrator.') . EOL);
100 notice(L10n::t('%s : Message delivery failed.', $recipient) . EOL);
104 notice(L10n::tt("%d message sent.", "%d messages sent.", $total) . EOL);
108 function invite_content(App $a) {
110 if (! local_user()) {
111 notice(L10n::t('Permission denied.') . EOL);
115 $tpl = Renderer::getMarkupTemplate('invite.tpl');
118 if (Config::get('system', 'invitation_only')) {
120 $x = PConfig::get(local_user(), 'system', 'invites_remaining');
121 if ((! $x) && (! is_site_admin())) {
122 notice(L10n::t('You have no more invitations available') . EOL);
127 $dirloc = Config::get('system', 'directory');
128 if (strlen($dirloc)) {
129 if (intval(Config::get('config', 'register_policy')) === Register::CLOSED) {
130 $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');
132 $linktxt = L10n::t('To accept this invitation, please visit and register at %s or any other public Friendica website.', System::baseUrl())
133 . "\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');
135 } else { // there is no global directory URL defined
136 if (intval(Config::get('config', 'register_policy')) === Register::CLOSED) {
137 $o = L10n::t('Our apologies. This system is not currently configured to connect with other public sites or invite members.');
140 $linktxt = L10n::t('To accept this invitation, please visit and register at %s.', System::baseUrl()
141 . "\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.'));
145 $o = Renderer::replaceMacros($tpl, [
146 '$form_security_token' => BaseModule::getFormSecurityToken("send_invite"),
147 '$title' => L10n::t('Send invitations'),
148 '$recipients' => ['recipients', L10n::t('Enter email addresses, one per line:')],
149 '$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"
151 . "\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:')
152 . "\r\n" . "\r\n" . System::baseUrl() . '/profile/' . $a->user['nickname']
153 . "\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"],
154 '$submit' => L10n::t('Submit')