wiki.techinc.nl/includes/SpecialEmailuser.php

140 lines
3.5 KiB
PHP
Raw Normal View History

<?php
2003-04-14 23:10:40 +00:00
require_once('UserMailer.php');
2003-04-14 23:10:40 +00:00
function wfSpecialEmailuser()
{
global $wgUser, $wgOut, $wgRequest;
2003-04-14 23:10:40 +00:00
if ( 0 == $wgUser->getID() ||
( false === strpos( $wgUser->getEmail(), "@" ) ) ) {
$wgOut->errorpage( "mailnologin", "mailnologintext" );
return;
}
$action = $wgRequest->getVal( $action );
$target = $wgRequest->getVal( $target );
2003-04-14 23:10:40 +00:00
if ( "" == $target ) {
$wgOut->errorpage( "notargettitle", "notargettext" );
return;
}
$nt = Title::newFromURL( $target );
$nu = User::newFromName( $nt->getText() );
$id = $nu->idForName();
if ( 0 == $id ) {
$wgOut->errorpage( "noemailtitle", "noemailtext" );
return;
}
$nu->setID( $id );
$address = $nu->getEmail();
if ( ( false === strpos( $address, "@" ) ) ||
( 1 == $nu->getOption( "disablemail" ) ) ) {
$wgOut->errorpage( "noemailtitle", "noemailtext" );
return;
}
$f = new EmailUserForm( $nu->getName() . " <{$address}>", $target );
2003-04-14 23:10:40 +00:00
if ( "success" == $action ) { $f->showSuccess(); }
else if ( "submit" == $action && $wgRequest->wasPosted() ) { $f->doSubmit(); }
2003-04-14 23:10:40 +00:00
else { $f->showForm( "" ); }
}
class EmailUserForm {
var $mAddress;
var $target;
var $text, $subject;
2003-04-14 23:10:40 +00:00
function EmailUserForm( $addr, $target )
2003-04-14 23:10:40 +00:00
{
global $wgRequest;
2003-04-14 23:10:40 +00:00
$this->mAddress = $addr;
$this->target = $target;
$this->text = $wgRequest->getText( 'wpText' );
$this->subject = $wgRequest->getText( 'wpSubject' );
2003-04-14 23:10:40 +00:00
}
function showForm( $err )
{
global $wgOut, $wgUser, $wgLang;
global $wpSubject, $wpText;
2003-04-14 23:10:40 +00:00
$wgOut->setPagetitle( wfMsg( "emailpage" ) );
$wgOut->addWikiText( wfMsg( "emailpagetext" ) );
if ( ! $wpSubject ) { $wpSubject = wfMsg( "defemailsubject" ); }
2003-04-14 23:10:40 +00:00
$emf = wfMsg( "emailfrom" );
$sender = $wgUser->getName();
$emt = wfMsg( "emailto" );
$rcpt = str_replace( "_", " ", $this->target );
2003-04-14 23:10:40 +00:00
$emr = wfMsg( "emailsubject" );
$emm = wfMsg( "emailmessage" );
$ems = wfMsg( "emailsend" );
$titleObj = Title::makeTitle( NS_SPECIAL, "Emailuser" );
$action = $titleObj->escapeLocalURL( "target={$this->target}&action=submit" );
2003-04-14 23:10:40 +00:00
if ( "" != $err ) {
$wgOut->setSubtitle( wfMsg( "formerror" ) );
$wgOut->addHTML( "<p><font color='red' size='+1'>{$err}</font>\n" );
}
$wgOut->addHTML( "<p>
<form id=\"emailuser\" method=\"post\" action=\"{$action}\">
<table border=0><tr>
<td align=right>{$emf}:</td>
<td align=left><strong>{$sender}</strong></td>
</tr><tr>
<td align=right>{$emt}:</td>
<td align=left><strong>{$rcpt}</strong></td>
</tr><tr>
<td align=right>{$emr}:</td>
<td align=left>
<input type=text name=\"wpSubject\" value=\"{$wpSubject}\">
</td>
</tr><tr>
<td align=right>{$emm}:</td>
<td align=left>
<textarea name=\"wpText\" rows=10 cols=60 wrap=virtual>
{$wpText}
</textarea>
</td></tr><tr>
<td>&nbsp;</td><td align=left>
<input type=submit name=\"wpSend\" value=\"{$ems}\">
</td></tr></table>
</form>\n" );
}
function doSubmit()
{
global $wgOut, $wgUser, $wgLang, $wgOutputEncoding;
global $wpSubject, $wpText, $this->target;
$from = wfQuotedPrintable( $wgUser->getName() ) . " <" . $wgUser->getEmail() . ">";
$mailResult = userMailer( $this->mAddress, $from, wfQuotedPrintable( $wpSubject ), $wpText );
if (! $mailResult)
{
$titleObj = Title::makeTitle( NS_SPECIAL, "Emailuser" );
$wgOut->redirect( $titleObj->getFullURL( "target={$this->target}&action=success" ) );
}
else
$wgOut->addHTML( wfMsg( "usermailererror" ) . $mailResult);
2003-04-14 23:10:40 +00:00
}
function showSuccess()
{
global $wgOut, $wgUser;
$wgOut->setPagetitle( wfMsg( "emailsent" ) );
$wgOut->addHTML( wfMsg( "emailsenttext" ) );
$wgOut->returnToMain( false );
}
}
?>