comparison Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.cs @ 130:0ea32a748453

Se termina el publicador via el calendario de google, además se realizan las pruebas unitarias.
author alabra
date Sun, 10 Jul 2011 18:50:11 -0400
parents
children 2d02adb79322
comparison
equal deleted inserted replaced
129:a6d20ea228a5 130:0ea32a748453
1 using System;
2 using System.Globalization;
3 using AltNetHispano.Agendas.Domain;
4
5 namespace AltNetHispano.Agendas.Google.DetailsEvents
6 {
7 public class VanGEventDetail : IGEventDetail
8 {
9 private const string TextoVan =
10 "La comunidad ALT.NET Hispano (http://altnethispano.org) realizará una VAN sobre [NOMBRE], con [NOMBRE_EXPOSITOR]." +
11 "\n\rFecha: [FECHA] a las 18:00 hrs. Hora Internacional (GMT/UTC), con una duración aproximada de 2 horas." +
12 "\n\rPueden plantear sus comentarios e inquietudes sobre el tema de la reunión en: [URL_DISCUCION]" +
13 "\n\rPara mayor información sobre cómo atender la reunión consulten: http://tinyurl.com/van-hispano" +
14 "\n\rPueden vincular el Google Calendar al suyo (http://screenr.com/nr7)";
15
16
17 public string Title { get; private set; }
18 public string Location { get; private set; }
19 public string Summary { get; private set; }
20 public DateTime StartEvent { get; private set; }
21 public DateTime EndEvent { get; private set; }
22
23 public void Generate(Evento evento)
24 {
25 Title = "VAN sobre " + evento.Titulo;
26 Location = "http://snipr.com/virtualaltnet";
27 if (evento.Fecha != null)
28 StartEvent = new DateTime(evento.Fecha.Value.Year, evento.Fecha.Value.Month, evento.Fecha.Value.Day,
29 18, 0, 0, DateTimeKind.Utc);
30 EndEvent = StartEvent.AddHours(2);
31
32 var cultureInfo = new CultureInfo( "es-ES", false ).DateTimeFormat;
33
34 Summary = TextoVan.Replace("[NOMBRE]", evento.Titulo).
35 Replace("[NOMBRE_EXPOSITOR]", evento.Ponente.Nombre).
36 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)).
37 Replace("[URL_DISCUCION]", evento.UrlInvitacion);
38 }
39 }
40 }