comparison Agendas/trunk/src/Agendas.Google/DetailsEvents/EstudioGEventDetail.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 80156ae1493f
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 EstudioGEventDetail : IGEventDetail
8 {
9 private const string TextoEstudio =
10 "La comunidad ALT.NET Hispano (http://altnethispano.org) realizará un grupo de estudio sobre [NOMBRE]" +
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 public string Title { get; private set; }
17 public string Location { get; private set; }
18 public string Summary { get; private set; }
19 public DateTime StartEvent { get; private set; }
20 public DateTime EndEvent { get; private set; }
21
22 public void Generate(Evento evento)
23 {
24 Title = "Grupo de Estudio " + evento.Titulo;
25 Location = "http://snipr.com/virtualaltnet";
26 if (evento.Fecha != null)
27 StartEvent = new DateTime(evento.Fecha.Value.Year, evento.Fecha.Value.Month, evento.Fecha.Value.Day,
28 18, 0, 0, DateTimeKind.Utc);
29 EndEvent = StartEvent.AddHours(2);
30
31 var cultureInfo = new CultureInfo("es-ES", false).DateTimeFormat;
32
33 Summary = TextoEstudio.Replace("[NOMBRE]", evento.Titulo).
34 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)).
35 Replace("[URL_DISCUCION]", evento.UrlInvitacion);
36 }
37 }
38 }