Design + email
This commit is contained in:
parent
821b537e93
commit
e328e4a903
@ -65,7 +65,6 @@ class Question
|
|||||||
echo 'Cours concerné : ' . $this->course . "<br>";
|
echo 'Cours concerné : ' . $this->course . "<br>";
|
||||||
echo 'La question est : ' . $this->question . "<br>";
|
echo 'La question est : ' . $this->question . "<br>";
|
||||||
echo 'Les réponses sont : ' . print_r($this->answers, true) . "<br/>";
|
echo 'Les réponses sont : ' . print_r($this->answers, true) . "<br/>";
|
||||||
echo 'ID : ' . $this->id;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -9,9 +9,12 @@ $id = $_GET['id'];
|
|||||||
|
|
||||||
$file = new QuestionsFile("questions.xml");
|
$file = new QuestionsFile("questions.xml");
|
||||||
$question = $file->get_question($id);
|
$question = $file->get_question($id);
|
||||||
$question->print_test();
|
|
||||||
|
|
||||||
|
$dest_mail = $question->get_validator();
|
||||||
|
$validationAddress = "validation.php?id=";
|
||||||
|
|
||||||
|
while ($dest_mail == $question->get_validator())
|
||||||
|
{
|
||||||
$file = fopen('email.txt', 'r');
|
$file = fopen('email.txt', 'r');
|
||||||
$number = fgets($file);
|
$number = fgets($file);
|
||||||
|
|
||||||
@ -19,33 +22,32 @@ $question->print_test();
|
|||||||
|
|
||||||
for ($i = 0; $i < $random; $i++)
|
for ($i = 0; $i < $random; $i++)
|
||||||
{
|
{
|
||||||
$line = fgets($file);
|
$dest_mail = fgets($file);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Oui, c'est moche de le réecrire 2 fois mais ma première belle
|
|
||||||
tentative s'est soldée par un echec
|
|
||||||
*/
|
|
||||||
|
|
||||||
while ($line == $question->get_validator())
|
|
||||||
{
|
|
||||||
$random = rand(1, $number);
|
|
||||||
|
|
||||||
for ($i = 0; $i < $random; $i++)
|
|
||||||
{
|
|
||||||
$line = fgets($file);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
echo 'Adresse mail: ' . $line . "<br/>";
|
|
||||||
fclose($file);
|
fclose($file);
|
||||||
|
}
|
||||||
|
|
||||||
/* This code works, perhaps should be placed in a method in Question class?*/
|
/* This code works, perhaps should be placed in a method in Question class?*/
|
||||||
$to = $line;
|
$to = $dest_mail;
|
||||||
$subject = "[Nemubot] Validation d'une question";
|
$subject = "[Nemubot] Validation d'une question";
|
||||||
$headers = "From: Nemubot <bot@nemunai.re>";
|
$headers = "From: Nemubot <bot@nemunai.re>";
|
||||||
$message = 'Bonjour,\n
|
$message = "Bonjour,\n
|
||||||
Adresse de validation d une question:
|
Une nouvelle question a été proposée à Nemubot.\n\n
|
||||||
$validationAddress . $quest->getId()';
|
|
||||||
|
Vous avez été sélectionné pour valider la question.\n
|
||||||
|
Vous pouvez cliquer sur le lien ci-dessous pour voir
|
||||||
|
les détails de la question et la valider si elle vous
|
||||||
|
semble juste.\n
|
||||||
|
Adresse de confirmation de la question:\n"
|
||||||
|
. "http://".$_SERVER["SERVER_NAME"]
|
||||||
|
. dirname($_SERVER["REQUEST_URI"])."/validation.php?id="
|
||||||
|
. $quest->getId()
|
||||||
|
. "\n\n Merci beaucoup de votre participation\n\n
|
||||||
|
|
||||||
|
Cordialement,\n\n
|
||||||
|
|
||||||
|
Nemubot.";
|
||||||
|
|
||||||
|
|
||||||
if (mail($to, $subject, $message, $headers))
|
if (mail($to, $subject, $message, $headers))
|
||||||
{
|
{
|
||||||
@ -55,19 +57,33 @@ while ($line == $question->get_validator())
|
|||||||
echo ("Error with the email");
|
echo ("Error with the email");
|
||||||
//*/
|
//*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echo "Merci de votre participation <br/>";
|
|
||||||
echo "Une personne va maintenant confirmer votre question"
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf8" />
|
<meta charset="utf8" />
|
||||||
|
<link rel="Stylesheet" href="style.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<header>
|
||||||
|
<div id="main_title">
|
||||||
|
<a href="http://www.h2g2.com" target="_blank">
|
||||||
|
<img src="marvin-robot_normal.png" alt="" id="banner"/>
|
||||||
|
</a>
|
||||||
|
<h1>Nemubot Questions</h1>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Merci de votre participation</h2>
|
||||||
|
<p>
|
||||||
|
Votre question a bien été prise en compte.<br/>
|
||||||
|
Un email a été envoyé à une personne du chan pour
|
||||||
|
qu'elle valide votre question.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Nemubot vous remercie de l'aider à agrandir sa base de donnée
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
3
|
2
|
||||||
bertrand.cournaud@gmail.com
|
bertrand.cournaud@gmail.com
|
||||||
|
bertrand.cournaud@epita.fr
|
||||||
|
|
||||||
ircquizz@23.tf
|
ircquizz@23.tf
|
||||||
ircquizz@p0m.fr
|
ircquizz@p0m.fr
|
||||||
|
@ -53,16 +53,31 @@ if (isset ($_POST['send']))
|
|||||||
|
|
||||||
// Get an email from the list
|
// Get an email from the list
|
||||||
|
|
||||||
echo 'Mail of user : ' . $_POST['email'] . "<br/>";
|
|
||||||
|
|
||||||
/* This code works, perhaps should be placed in a method in Question class?*/
|
/* This code works, perhaps should be placed in a method in Question class?*/
|
||||||
$to = $_POST['email'];
|
$to = $_POST['email'];
|
||||||
$subject = "[Nemubot] Confirmation de question";
|
$subject = "[Nemubot] Confirmation d'une question";
|
||||||
$headers = "From: Nemubot <bot@nemunai.re>";
|
$headers = "From: Nemubot <bot@nemunai.re>";
|
||||||
$message = "Bonjour,\n" .
|
$message = "Bonjour,\n
|
||||||
"Êtes vous la personne qui a posté une nouvelle question ?\n" .
|
Une nouvelle question a été proposée à Nemubot en utilisant
|
||||||
"Adresse de validation:"
|
cette adresse email.\n\n
|
||||||
. $confirmationAddress . $quest->getId();
|
|
||||||
|
Si vous avez effectivement posé cette question, merci
|
||||||
|
de cliquer sur le lien ci-dessous pour confirmer.\n
|
||||||
|
Si vous ne comprenez rien à cet email ou que vous n'avez pas
|
||||||
|
posté de nouvelles questions, vous pouvez supprimer ce message.\n\n
|
||||||
|
|
||||||
|
Adresse de confirmation de la question:\n"
|
||||||
|
. "http://".$_SERVER["SERVER_NAME"]
|
||||||
|
. dirname($_SERVER["REQUEST_URI"])."/confirmation.php?id="
|
||||||
|
. $quest->getId()
|
||||||
|
|
||||||
|
. "\n\n Merci beaucoup de votre participation\n\n
|
||||||
|
|
||||||
|
Cordialement,\n\n
|
||||||
|
|
||||||
|
Nemubot.";
|
||||||
|
;
|
||||||
|
|
||||||
|
|
||||||
if (mail($to, $subject, $message, $headers))
|
if (mail($to, $subject, $message, $headers))
|
||||||
{
|
{
|
||||||
@ -81,10 +96,20 @@ else
|
|||||||
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf8" />
|
<meta charset="utf8" />
|
||||||
|
<link rel="Stylesheet" href="style.css" />
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<header>
|
||||||
|
<div id="main_title">
|
||||||
|
<a href="http://www.h2g2.com" target="_blank">
|
||||||
|
<img src="marvin-robot_normal.png" alt="" id="banner"/>
|
||||||
|
</a>
|
||||||
|
<h1>Nemubot Questions</h1>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
<article id="validate">
|
<article id="validate">
|
||||||
<h2>Merci de votre participation!</h2>
|
<h2>Merci de votre participation!</h2>
|
||||||
@ -94,6 +119,11 @@ else
|
|||||||
à l'un des membres du chan pour qu'il valide votre question.
|
à l'un des membres du chan pour qu'il valide votre question.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<h3>Rappels de la questions</h3>
|
||||||
|
<?php $quest->print_test() ?>
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Vous pouvez proposer de nouvelles questions en cliquant
|
Vous pouvez proposer de nouvelles questions en cliquant
|
||||||
sur le lien ci-dessous.<br/>
|
sur le lien ci-dessous.<br/>
|
||||||
@ -101,19 +131,5 @@ else
|
|||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<p>
|
|
||||||
<h3>La partie ci dessous est uniquement réservée au debug</h3>
|
|
||||||
Merci de ne pas en tenir compte
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Rappels de la questions<br/>
|
|
||||||
<?php $quest->print_test() ?>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
URL de validation:<br/>
|
|
||||||
<a href=<?php echo
|
|
||||||
$confirmationAddress . $quest->getId() ?>>Valider la question</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
35
styleConfirmation.css
Normal file
35
styleConfirmation.css
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
body
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
width: 60%;
|
||||||
|
margin: auto;
|
||||||
|
background-color: #545455;
|
||||||
|
}
|
||||||
|
|
||||||
|
header
|
||||||
|
{
|
||||||
|
border-radius: 10px;
|
||||||
|
margin: 10px;
|
||||||
|
padding: 8px;
|
||||||
|
background-color: black;
|
||||||
|
color: orange;
|
||||||
|
}
|
||||||
|
|
||||||
|
#banner
|
||||||
|
{
|
||||||
|
display: inline-block;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
article h2, form h2
|
||||||
|
{
|
||||||
|
background-color: black;
|
||||||
|
color: orange;
|
||||||
|
margin-left: -10px;
|
||||||
|
margin-right: -10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
section
|
||||||
|
{
|
||||||
|
text-align: justify;
|
||||||
|
}
|
@ -5,19 +5,28 @@ include("Question.class.php");
|
|||||||
include("QuestionsFile.class.php");
|
include("QuestionsFile.class.php");
|
||||||
|
|
||||||
$id = $_GET['id'];
|
$id = $_GET['id'];
|
||||||
echo $id . "<br/>";
|
|
||||||
$file = new QuestionsFile("questions.xml");
|
$file = new QuestionsFile("questions.xml");
|
||||||
$question = $file->get_question($id);
|
$question = $file->get_question($id);
|
||||||
$question->print_test();
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf8" />
|
<meta charset="utf8" />
|
||||||
|
<link rel="Stylesheet" href="styleConfirmation.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div id="main_title">
|
||||||
|
<a href="http://www.h2g2.com" target="_blank">
|
||||||
|
<img src="marvin-robot_normal.png" alt="" id="banner"/>
|
||||||
|
</a>
|
||||||
|
<h1>Nemubot Questions</h1>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section>
|
||||||
<h1>Validation de la question</h1>
|
<h1>Validation de la question</h1>
|
||||||
<h3>Rappel de la question</h3>
|
<h3>Rappel de la question</h3>
|
||||||
<?php $question->print_test() ?><br/>
|
<?php $question->print_test() ?><br/>
|
||||||
@ -27,7 +36,7 @@ $question->print_test();
|
|||||||
|
|
||||||
<input type="button" value="Valider la question"
|
<input type="button" value="Valider la question"
|
||||||
onclick="<?php $question->validated(); $file->save() ?>"/>
|
onclick="<?php $question->validated(); $file->save() ?>"/>
|
||||||
|
</section>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Reference in New Issue
Block a user