|
|
|
|
|
//
|
|
|
|
|
|
// GoogleHelpers.cs
|
|
|
|
|
|
//
|
|
|
|
|
|
// Author:
|
|
|
|
|
|
// Paul Schneider <paul@pschneider.fr>
|
|
|
|
|
|
//
|
|
|
|
|
|
// Copyright (c) 2015 GNU GPL
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using Yavsc.Model.Google;
|
|
|
|
|
|
using System.Web.Profile;
|
|
|
|
|
|
using System.Configuration;
|
|
|
|
|
|
using System.Web;
|
|
|
|
|
|
using Yavsc.Model.Calendar;
|
|
|
|
|
|
using Yavsc.Model.Circles;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Web.Security;
|
|
|
|
|
|
using Yavsc.Model.Google.Api.Messaging;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Model.Google.Api
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Google helpers.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static class GoogleHelpers
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the events.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>The events.</returns>
|
|
|
|
|
|
/// <param name="profile">Profile.</param>
|
|
|
|
|
|
/// <param name="mindate">Mindate.</param>
|
|
|
|
|
|
/// <param name="maxdate">Maxdate.</param>
|
|
|
|
|
|
public static CalendarEventList GetEvents(this ProfileBase profile, DateTime mindate, DateTime maxdate)
|
|
|
|
|
|
{
|
|
|
|
|
|
string gcalid = (string) profile.GetPropertyValue ("gcalid");
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace (gcalid))
|
|
|
|
|
|
throw new ArgumentException ("NULL gcalid");
|
|
|
|
|
|
CalendarApi c = new CalendarApi ();
|
|
|
|
|
|
string creds = OAuth2.GetFreshGoogleCredential (profile);
|
|
|
|
|
|
return c.GetCalendar (gcalid, mindate, maxdate, creds);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the calendars.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>The calendars.</returns>
|
|
|
|
|
|
/// <param name="profile">Profile.</param>
|
|
|
|
|
|
public static CalendarList GetCalendars (this ProfileBase profile)
|
|
|
|
|
|
{
|
|
|
|
|
|
string cred = OAuth2.GetFreshGoogleCredential (profile);
|
|
|
|
|
|
CalendarApi c = new CalendarApi ();
|
|
|
|
|
|
return c.GetCalendars (cred);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Login the specified response, state and callBack.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="response">Response.</param>
|
|
|
|
|
|
/// <param name="state">State.</param>
|
|
|
|
|
|
/// <param name="callBack">Call back.</param>
|
|
|
|
|
|
public static void Login(this HttpResponseBase response, string state, string callBack)
|
|
|
|
|
|
{
|
|
|
|
|
|
OAuth2 oa = new OAuth2 (callBack);
|
|
|
|
|
|
oa.Login (response, state);
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Cals the login.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="response">Response.</param>
|
|
|
|
|
|
/// <param name="state">State.</param>
|
|
|
|
|
|
/// <param name="callBack">Call back.</param>
|
|
|
|
|
|
public static void CalLogin(this HttpResponseBase response, string state, string callBack)
|
|
|
|
|
|
{
|
|
|
|
|
|
OAuth2 oa = new OAuth2 (callBack);
|
|
|
|
|
|
oa.GetCalendarScope (response, state);
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Creates the O auth2.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>The O auth2.</returns>
|
|
|
|
|
|
/// <param name="callBack">Call back.</param>
|
|
|
|
|
|
public static OAuth2 CreateOAuth2(string callBack)
|
|
|
|
|
|
{
|
|
|
|
|
|
return new OAuth2 (callBack);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Notifies the event.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>The event.</returns>
|
|
|
|
|
|
/// <param name="evpub">Evpub.</param>
|
|
|
|
|
|
public static MessageWithPayloadResponse NotifyEvent(EventCirclesPub evpub) {
|
|
|
|
|
|
using (var r =
|
|
|
|
|
|
new SimpleJsonPostMethod<MessageWithPayload<YaEvent>,MessageWithPayloadResponse>(
|
|
|
|
|
|
"https://gcm-http.googleapis.com/gcm/send")) {
|
|
|
|
|
|
r.SetCredential (ConfigurationManager.AppSettings ["GOOGLE_GCM_API_KEY"]);
|
|
|
|
|
|
|
|
|
|
|
|
if (evpub.CircleIds != null) {
|
|
|
|
|
|
var users = Circle.Union (evpub.CircleIds);
|
|
|
|
|
|
var regids = new List<string> ();
|
|
|
|
|
|
var to = new List<string> ();
|
|
|
|
|
|
foreach (var u in users) {
|
|
|
|
|
|
var p = ProfileBase.Create (u);
|
|
|
|
|
|
if (p != null) {
|
|
|
|
|
|
var regid = p.GetPropertyValue ("gregid");
|
|
|
|
|
|
if (regid == null) {
|
|
|
|
|
|
var muser = Membership.GetUser (u);
|
|
|
|
|
|
to.Add (muser.Email);
|
|
|
|
|
|
} else
|
|
|
|
|
|
regids.Add ((string)regid);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if (regids.Count == 0)
|
|
|
|
|
|
throw new InvalidOperationException
|
|
|
|
|
|
("No recipient where found for this circle list");
|
|
|
|
|
|
|
|
|
|
|
|
var msg = new MessageWithPayload<YaEvent> () {
|
|
|
|
|
|
notification = new Notification() { title = evpub.Title, body = evpub.Description, icon = "event" },
|
|
|
|
|
|
data = evpub , registration_ids = regids.ToArray() };
|
|
|
|
|
|
return r.Invoke (msg);
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
throw new NotImplementedException ();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Notifies the event.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>The event.</returns>
|
|
|
|
|
|
/// <param name="evpub">Evpub.</param>
|
|
|
|
|
|
public static MessageWithPayloadResponse NotifyEvent (NominativeEventPub evpub)
|
|
|
|
|
|
{
|
|
|
|
|
|
using (var r =
|
|
|
|
|
|
new SimpleJsonPostMethod<MessageWithPayload<YaEvent>,MessageWithPayloadResponse> (
|
|
|
|
|
|
"https://gcm-http.googleapis.com/gcm/send")) {
|
|
|
|
|
|
r.SetCredential ("key="+ConfigurationManager.AppSettings ["GOOGLE_API_KEY"]);
|
|
|
|
|
|
var userprofile = ProfileBase.Create (evpub.PerformerName);
|
|
|
|
|
|
var regid = userprofile.GetPropertyValue ("gregid") as string;
|
|
|
|
|
|
if (regid == null)
|
|
|
|
|
|
throw new NotImplementedException ("Notification via e-mail");
|
|
|
|
|
|
var msg = new MessageWithPayload<YaEvent> () {
|
recupération de mot de passe + prise de commande
* ResetPassword.txt: Un message pour le mot de passe oublié
* style.css: fixe un 404
* UpdatePassword.aspx: Implémente le formulaire de mise à jour du mot
de passe,
accessible depuis l'e-mail.
* Contact.aspx: implémente la page de contact préstataire
* UpdatePassword.cs: modèle de la modification de mot de passe au
jeton de securité (qui est encore un fake en l'état)
* CommandRegistration.cs: un enregistrement de commande
* NominativeCommandRegistration.cs: un enregistrement de commande
nominative
* .gitignore: ignore ma config LuaDebug
* NpgsqlMembershipProvider.cs: ne pas crasher à la lecture en base de
la question de
recupération du mot de passe quand elle est nulle.
* BasketController.cs: renvoie l'objet décrivant la prise de commande
* Global.asax.cs: ignorer les routes vers App_Data et App_Code
* instdbws.sql: passage du type json à jsonb pour les paramètres de la
commande
* RegistrationMail.txt: un piti message à l'enregistrement
* AccountController.cs: Envoi du message du mot de passe oublié,
methode de changemnet du mot de passe.
* AdminController.cs: xmldoc + refabrication helper Notify
* HomeController.cs:
* BlogsController.cs:
* GoogleController.cs: refabrication helper Notify
* FrontOfficeController.cs: Refabrication: Utilisation du nouvel
enregistrement de commande.
+ refabrication helper Notify
* YavscHelpers.cs: implémente la methode d'envoi du message de mot de
passe oublié
+ refabrication helper Notify
* App.master: Corrige la notification Html
* AppAdmin.master: Le lien vers la page de contact était associé
à tort à la classe css "thanks"
* yavsc.js: message plus parlant en cas de requête Ajax mal formée.
* Login.aspx: Implémente le lien vers le formulaire de recupération du
mot de passe
* UserPost.aspx: .
* Booking.aspx: format du code
* Performer.ascx: l'e-mail préstataire ne sera jamais fourni par
l'application,
aussi, on parlera de "prendre contact", d'échanger ... mais pas de
donner l'adresse e-mail.
L'information "son email" n'est donc pas disponible meme à
l'utilisateur autorisé.
La prise de contact, ou autre fux de comunication le sont.
* Performers.aspx: affiche la notification à l'envoi de la demande de
devis
* Product.aspx:
* Service.aspx: les periodes du catalogue et du calendrier sont
fondue.
* Contact.aspx: traduction en français
* Web.config:
* la procédure de recupération du mot de passe est
activée
* l'e-message envoyé est construit à partir d'un modèle, un fichier
texte trouvé dans /App_Data, et indiqué à l'application
par le paramêtre applicatif "LostPasswordMessage"
* Yavsc.csproj: reference les nouveaux fichiers
* Product.cs: utilise la période du calendrier
* Commande.cs: renvoie un objet à la prise de commande, indiquant
l'identifiant de commande, et les messages envoyés
en cas de commande nominative.
* GoogleHelpers.cs: icone à la notification mobile
* LocalizedText.resx:
* LocalizedText.fr.resx:
* LocalizedText.Designer.cs:
* LocalizedText.fr.Designer.cs: traductions
* UserNameBase.cs: fixe la dé-sérialisation
* WorkFlowManager.cs: refabrication de la prise de commande
* YavscModel.csproj: nouveaux objets du modèle
* OtherWebException.aspx: page obsolete
* Period.cs: fondre la période: celle du catalogue disparait, au
profit de celle du calendrier.
10 years ago
|
|
|
|
notification = new Notification() { title = evpub.Title, body = evpub.Description, icon = "icon" },
|
|
|
|
|
|
data = evpub, registration_ids = new string[] { regid } };
|
|
|
|
|
|
return r.Invoke (msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|