emailer/src/main/scala/cz/xelfi/quoridor/emailer/Notify.scala
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 16 Feb 2010 01:22:36 +0100
changeset 228 3ea04696a115
child 229 a11db9324580
permissions -rw-r--r--
Preparing for more testable 'business' logic - splitting the for cycles and REST queries.
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor.emailer
    28 
    29 import scala.xml._
    30 import java.net.URL
    31 import scala.io._
    32 import scala.collection.Map
    33 import scala.collection.mutable.HashMap
    34 import javax.mail.internet._
    35 import javax.mail.Message
    36 import javax.mail.Transport
    37 
    38 abstract class Notify {
    39   protected def allPlayers(): Map[String,List[Node]]
    40   protected def emails(ids : Collection[String]): List[String]
    41   protected def sendEmail(address : String, subject : String, text : String) : Unit
    42 
    43   def process() {
    44     val ret = allPlayers()
    45 
    46     for (val address <- emails(ret.keySet)) {
    47         Console.println("Sending message to " + address)
    48 
    49         sendEmail(
    50           "quoridor@xelfi.cz",
    51           "Play Quoridor!",
    52           "Visit http://quoridor.xelfi.cz"
    53         )
    54     }
    55   }
    56 }