Implémente un formulaire simple
de réservation d'un préstataire * p8-av4.xxs.jpg: * p8-av4.xxs.png: inutile * NoLogin.master: * Entity.cs: * OAuth2.cs: * ApiClient.cs: * PeopleApi.cs: * MapTracks.cs: * SkillManager.cs: * Skills.aspx: * EntityQuery.cs: * CalendarApi.cs: * SimpleJsonPostMethod.cs: * GoogleHelpers.cs: * EventPub.aspx: * GoogleController.cs: * Notification.cs: * UserSkills.aspx: * BackOfficeController.cs: * BackOfficeController.cs: * Notification.cs: * MessageWithPayLoad.cs: * MessageWithPayloadResponse.cs: refabrication * IContentProvider.cs: * NpgsqlBlogProvider.cs: xml doc * NpgsqlContentProvider.cs: implemente un listing des prestataire du code APE en base. * NpgsqlSkillProvider.cs: implemente un listing des domaines de compétence du préstataire en base. * XmlCatalogProvider.cs: Le catalogue de vente implémente mainenant l'interface d'un fournisseur de donnée comme les autres. Il pourrait par exemple vouloir définir des activité et des compétences. Pour l'instant, il n'est pas activé par la configuration, et reste le fournisseur du catalogue legacy (voir </FrontOffice/Catalog> ). * FrontOfficeController.cs: format du code * Global.asax.cs: Une route customisée pour le Front Office : /do (genre, ici, ça bouge.) * activity.sql: implémente en base de donnée le modèle des activités et compétences, ajoute aussi deux activités : l'edition logicielle et "Artiste" * style.css: changement de mes images de fond ... tombées du camion de Xavier et onlinehome.us * p8-av4.s.jpg: changement de taille * AccountController.cs: Met le code MEA à "none" quand il est spécifié non disponible. * BlogsController.cs: fixe un bug de l'edition d'un billet * FrontOfficeController.cs: implemente le contrôle booking simple * HomeController.cs: ajoute l'assemblage du catalog dans le listing dédié * YavscAjaxHelper.cs: Implemente un outil de representation JSon des objets côté serveur * parallax.js: deux fois plus de mouvement autout de x dans le parallax * yavsc.rate.js: imlemente un callback JS pour le rating * Activities.aspx: Des labels au formulaire de déclaration des activités * Activity.ascx: un panneau activité descent * Booking.aspx: implemente l'UI web du booking simple. * EavyBooking.aspx: refabrication du booking lourd * Index.aspx: supprime le panneau du tag Accueil, affiche les activités en cours du site (avec au moins un préstataire valide pour cette activité) * Web.config: Implemente une cote utilisateur, par une nouvelle valeur de son profile (Rate). * Yavsc.csproj: refabrique du code API Google, qui part dans le model. * MarkdownDeep.dll: le tag <p> ne convenait pas, le remplacer par le tag <span> non plus. Maintenant ça devrait être correct, c'est un div, mais que en cas de tag englobant non défini. * BookingQuery.cs: Le booking lourd devient une commande basée sur des activités concernée par l'intervention * ChangeLog: nettoyage * CatalogProvider.cs: implemente l'interface d'un fournissseur de contenu * PerformerProfile.cs: implemente le profile prestataire * SimpleBookingQuery.cs: Les besoin sont exprimé sous forme d'un tableau de valeur du parametrage de la commande * LocalizedText.resx: * LocalizedText.fr.resx: * LocalizedText.Designer.cs: * LocalizedText.fr.Designer.cs: internationalisation * Profile.cs: implemente un accès à l'id d'enregistrement Google GCM * SkillEntity.cs: La compétence appartient à un domaine d'activité, on lui associe un et un seul code APE * SkillProvider.cs: Fait chercher les compétences à partir d'un code activité * WorkFlowManager.cs: implemente l'accès à la liste des préstataires de telle activité * YavscModel.csproj: refabrications * Skills.sql: vient de passer dans activity.Sql * T.cs: la traduction est faite plus simple à appeler (sans cast vers `string`).main
parent
d89b6c39df
commit
a99232ba2b
Binary file not shown.
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 20 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 22 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 132 KiB |
@ -1,78 +0,0 @@
|
|||||||
//
|
|
||||||
// Manager.cs
|
|
||||||
//
|
|
||||||
// Author:
|
|
||||||
// Paul Schneider <paulschneider@free.fr>
|
|
||||||
//
|
|
||||||
// Copyright (c) 2015 Paul Schneider
|
|
||||||
//
|
|
||||||
// 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.Helpers;
|
|
||||||
using System.Web.Profile;
|
|
||||||
using Yavsc.Model.Google;
|
|
||||||
using System.Net;
|
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace Yavsc.Helpers.Google
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Google base API client.
|
|
||||||
/// This class implements the identification values for a Google Api,
|
|
||||||
/// and provides some scope values.
|
|
||||||
/// </summary>
|
|
||||||
public class ApiClient
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// The CLIENT Id.
|
|
||||||
/// </summary>
|
|
||||||
public static string CLIENT_ID { get ; set ; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The CLIENt SECREt
|
|
||||||
/// </summary>
|
|
||||||
public static string CLIENT_SECRET { get ; set ; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The API KEY.
|
|
||||||
/// </summary>
|
|
||||||
public static string API_KEY { get ; set ; }
|
|
||||||
/* // to use in descendence
|
|
||||||
*
|
|
||||||
protected static string getPeopleUri = "https://www.googleapis.com/plus/v1/people";
|
|
||||||
private static string authUri = "https://accounts.google.com/o/oauth2/auth";
|
|
||||||
*/
|
|
||||||
/// <summary>
|
|
||||||
/// The Map tracks scope .
|
|
||||||
/// </summary>
|
|
||||||
protected static string scopeTracks = "https://www.googleapis.com/auth/tracks";
|
|
||||||
/// <summary>
|
|
||||||
/// The calendar scope.
|
|
||||||
/// </summary>
|
|
||||||
protected static string scopeCalendar = "https://www.googleapis.com/auth/calendar";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The scope openid.
|
|
||||||
/// </summary>
|
|
||||||
protected static string[] scopeOpenid = {
|
|
||||||
"openid",
|
|
||||||
"profile",
|
|
||||||
"email"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,134 +0,0 @@
|
|||||||
//
|
|
||||||
// Calendar.cs
|
|
||||||
//
|
|
||||||
// Author:
|
|
||||||
// Paul Schneider <paulschneider@free.fr>
|
|
||||||
//
|
|
||||||
// Copyright (c) 2015 Paul Schneider
|
|
||||||
//
|
|
||||||
// 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.Helpers;
|
|
||||||
using System.Web.Profile;
|
|
||||||
using Yavsc.Model.Google;
|
|
||||||
using System.Net;
|
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System.Web;
|
|
||||||
using System.Runtime.Serialization.Json;
|
|
||||||
using Yavsc.Model;
|
|
||||||
|
|
||||||
namespace Yavsc.Helpers.Google
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Google Calendar API client.
|
|
||||||
/// </summary>
|
|
||||||
public class CalendarApi : ApiClient
|
|
||||||
{
|
|
||||||
public CalendarApi(string apiKey)
|
|
||||||
{
|
|
||||||
API_KEY = apiKey;
|
|
||||||
}
|
|
||||||
/// <summary>
|
|
||||||
/// The get cal list URI.
|
|
||||||
/// </summary>
|
|
||||||
protected static string getCalListUri = "https://www.googleapis.com/calendar/v3/users/me/calendarList";
|
|
||||||
/// <summary>
|
|
||||||
/// The get cal entries URI.
|
|
||||||
/// </summary>
|
|
||||||
protected static string getCalEntriesUri = "https://www.googleapis.com/calendar/v3/calendars/{0}/events";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The date format.
|
|
||||||
/// </summary>
|
|
||||||
private static string dateFormat = "yyyy-MM-ddTHH:mm:ss";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The time zone. TODO Fixme with machine time zone
|
|
||||||
/// </summary>
|
|
||||||
private string timeZone = "+01:00";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the calendar list.
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>The calendars.</returns>
|
|
||||||
/// <param name="cred">Cred.</param>
|
|
||||||
public CalendarList GetCalendars (string cred)
|
|
||||||
{
|
|
||||||
CalendarList res = null;
|
|
||||||
HttpWebRequest webreq = WebRequest.CreateHttp (getCalListUri);
|
|
||||||
webreq.Headers.Add (HttpRequestHeader.Authorization, cred);
|
|
||||||
webreq.Method = "GET";
|
|
||||||
webreq.ContentType = "application/http";
|
|
||||||
using (WebResponse resp = webreq.GetResponse ()) {
|
|
||||||
using (Stream respstream = resp.GetResponseStream ()) {
|
|
||||||
res = (CalendarList) new DataContractJsonSerializer(typeof(CalendarList)).ReadObject (respstream);
|
|
||||||
}
|
|
||||||
resp.Close ();
|
|
||||||
}
|
|
||||||
webreq.Abort ();
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets a calendar.
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>The calendar.</returns>
|
|
||||||
/// <param name="calid">Calid.</param>
|
|
||||||
/// <param name="mindate">Mindate.</param>
|
|
||||||
/// <param name="maxdate">Maxdate.</param>
|
|
||||||
/// <param name="upr">Upr.</param>
|
|
||||||
public CalendarEventList GetCalendar (string calid, DateTime mindate, DateTime maxdate,string cred)
|
|
||||||
{
|
|
||||||
if (string.IsNullOrWhiteSpace (calid))
|
|
||||||
throw new Exception ("the calendar identifier is not specified");
|
|
||||||
|
|
||||||
string uri = string.Format (
|
|
||||||
getCalEntriesUri, HttpUtility.UrlEncode (calid)) +
|
|
||||||
string.Format ("?orderBy=startTime&singleEvents=true&timeMin={0}&timeMax={1}&key=" + API_KEY,
|
|
||||||
HttpUtility.UrlEncode (mindate.ToString (dateFormat) + timeZone),
|
|
||||||
HttpUtility.UrlEncode (maxdate.ToString (dateFormat) + timeZone));
|
|
||||||
|
|
||||||
HttpWebRequest webreq = WebRequest.CreateHttp (uri);
|
|
||||||
|
|
||||||
webreq.Headers.Add (HttpRequestHeader.Authorization, cred);
|
|
||||||
webreq.Method = "GET";
|
|
||||||
webreq.ContentType = "application/http";
|
|
||||||
CalendarEventList res = null;
|
|
||||||
try {
|
|
||||||
using (WebResponse resp = webreq.GetResponse ()) {
|
|
||||||
using (Stream respstream = resp.GetResponseStream ()) {
|
|
||||||
try {
|
|
||||||
res = (CalendarEventList) new DataContractJsonSerializer(typeof(CalendarEventList)).ReadObject (respstream);
|
|
||||||
} catch (Exception ) {
|
|
||||||
respstream.Close ();
|
|
||||||
resp.Close ();
|
|
||||||
webreq.Abort ();
|
|
||||||
throw ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
resp.Close ();
|
|
||||||
}
|
|
||||||
} catch (WebException ) {
|
|
||||||
webreq.Abort ();
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
webreq.Abort ();
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,56 +0,0 @@
|
|||||||
//
|
|
||||||
// Entity.cs
|
|
||||||
//
|
|
||||||
// Author:
|
|
||||||
// Paul Schneider <paulschneider@free.fr>
|
|
||||||
//
|
|
||||||
// Copyright (c) 2015 Paul Schneider
|
|
||||||
//
|
|
||||||
// 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.Helpers;
|
|
||||||
using System.Web.Profile;
|
|
||||||
using Yavsc.Model.Google;
|
|
||||||
using System.Net;
|
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace Yavsc.Helpers.Google
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Entity.
|
|
||||||
/// </summary>
|
|
||||||
public class Entity
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// The I.
|
|
||||||
/// </summary>
|
|
||||||
public string ID;
|
|
||||||
/// <summary>
|
|
||||||
/// The name.
|
|
||||||
/// </summary>
|
|
||||||
public string Name;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The type: AUTOMOBILE: A car or passenger vehicle.
|
|
||||||
/// * TRUCK: A truck or cargo vehicle.
|
|
||||||
/// * WATERCRAFT: A boat or other waterborne vehicle.
|
|
||||||
/// * PERSON: A person.
|
|
||||||
/// </summary>
|
|
||||||
public string Type;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,46 +0,0 @@
|
|||||||
//
|
|
||||||
// EntityQuery.cs
|
|
||||||
//
|
|
||||||
// Author:
|
|
||||||
// Paul Schneider <paulschneider@free.fr>
|
|
||||||
//
|
|
||||||
// Copyright (c) 2015 Paul Schneider
|
|
||||||
//
|
|
||||||
// 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.Helpers;
|
|
||||||
using System.Web.Profile;
|
|
||||||
using Yavsc.Model.Google;
|
|
||||||
using System.Net;
|
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace Yavsc.Helpers.Google
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Entity query.
|
|
||||||
/// </summary>
|
|
||||||
public class EntityQuery {
|
|
||||||
/// <summary>
|
|
||||||
/// The entity identifiers.
|
|
||||||
/// </summary>
|
|
||||||
public string [] EntityIds;
|
|
||||||
/// <summary>
|
|
||||||
/// The minimum identifier.
|
|
||||||
/// </summary>
|
|
||||||
public string MinId;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
//
|
|
||||||
// PeopleApi.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 System.IO;
|
|
||||||
using System.Net;
|
|
||||||
using System.Text;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using Yavsc.Model.Google;
|
|
||||||
using System.Web.Profile;
|
|
||||||
using System.Web;
|
|
||||||
using Yavsc.Model;
|
|
||||||
using System.Runtime.Serialization.Json;
|
|
||||||
using Yavsc.Helpers.Google;
|
|
||||||
|
|
||||||
namespace Yavsc.Helpers.Google
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Google People API.
|
|
||||||
/// </summary>
|
|
||||||
public class PeopleApi: ApiClient
|
|
||||||
{
|
|
||||||
private static string getPeopleUri = "https://www.googleapis.com/plus/v1/people";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the People object associated to the given Google Access Token
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>The me.</returns>
|
|
||||||
/// <param name="gat">The Google Access Token object <see cref="AuthToken"/> class.</param>
|
|
||||||
public static People GetMe (AuthToken gat)
|
|
||||||
{
|
|
||||||
People me;
|
|
||||||
DataContractJsonSerializer ppser = new DataContractJsonSerializer (typeof(People));
|
|
||||||
HttpWebRequest webreppro = WebRequest.CreateHttp (getPeopleUri + "/me");
|
|
||||||
webreppro.ContentType = "application/http";
|
|
||||||
webreppro.Headers.Add (HttpRequestHeader.Authorization, gat.token_type + " " + gat.access_token);
|
|
||||||
webreppro.Method = "GET";
|
|
||||||
using (WebResponse proresp = webreppro.GetResponse ()) {
|
|
||||||
using (Stream prresponseStream = proresp.GetResponseStream ()) {
|
|
||||||
me = (People)ppser.ReadObject (prresponseStream);
|
|
||||||
prresponseStream.Close ();
|
|
||||||
}
|
|
||||||
proresp.Close ();
|
|
||||||
}
|
|
||||||
webreppro.Abort ();
|
|
||||||
return me;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,9 +1,10 @@
|
|||||||
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Activity>" %>
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Activity>" %>
|
||||||
|
<div>
|
||||||
<h1 class="activity">
|
<div data-type="background" data-speed="10" style="width:100%; height:10em; background: url(<%=Ajax.JString(Model.Photo)%>) 50% 50% repeat fixed;" >
|
||||||
<%=Html.Icon("act"+Model.Id)%>
|
</div>
|
||||||
<%=Html.Markdown(Model.Title)%></h1>
|
<h1><a href="<%= Url.RouteUrl("Default", new { controller="FrontOffice", action="Booking", id=Model.Id }) %>">
|
||||||
<i>(<%=Html.Markdown(Model.Id)%>)</i>
|
<%=Html.Encode(Model.Title)%></a></h1>
|
||||||
|
<i>(<%=Html.Translate("MEACode")%>: <%=Html.Encode(Model.Id)%>)</i>
|
||||||
<p>
|
<p>
|
||||||
<%=Html.Markdown(Model.Comment)%>
|
<%=Html.Markdown(Model.Comment)%>
|
||||||
</p>
|
</p></div>
|
||||||
|
|||||||
Binary file not shown.
@ -1,71 +0,0 @@
|
|||||||
//
|
|
||||||
// MessageWithPayloadResponse.cs
|
|
||||||
//
|
|
||||||
// Author:
|
|
||||||
// paul <paul@pschneider.fr>
|
|
||||||
//
|
|
||||||
// Copyright (c) 2015 paul
|
|
||||||
//
|
|
||||||
// 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;
|
|
||||||
|
|
||||||
namespace Yavsc.Model.Google
|
|
||||||
{
|
|
||||||
// https://gcm-http.googleapis.com/gcm/send
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Message with payload response.
|
|
||||||
/// </summary>
|
|
||||||
public class MessageWithPayloadResponse {
|
|
||||||
/// <summary>
|
|
||||||
/// The multicast identifier.
|
|
||||||
/// </summary>
|
|
||||||
public int multicast_id;
|
|
||||||
/// <summary>
|
|
||||||
/// The success count.
|
|
||||||
/// </summary>
|
|
||||||
public int success;
|
|
||||||
/// <summary>
|
|
||||||
/// The failure count.
|
|
||||||
/// </summary>
|
|
||||||
public int failure;
|
|
||||||
/// <summary>
|
|
||||||
/// The canonical identifiers... ?!?
|
|
||||||
/// </summary>
|
|
||||||
public int canonical_ids;
|
|
||||||
/// <summary>
|
|
||||||
/// Detailled result.
|
|
||||||
/// </summary>
|
|
||||||
public class Result {
|
|
||||||
/// <summary>
|
|
||||||
/// The message identifier.
|
|
||||||
/// </summary>
|
|
||||||
public string message_id;
|
|
||||||
/// <summary>
|
|
||||||
/// The registration identifier.
|
|
||||||
/// </summary>
|
|
||||||
public string registration_id;
|
|
||||||
/// <summary>
|
|
||||||
/// The error.
|
|
||||||
/// </summary>
|
|
||||||
public string error;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The results.
|
|
||||||
/// </summary>
|
|
||||||
public Result [] results;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,62 +0,0 @@
|
|||||||
//
|
|
||||||
// Notification.cs
|
|
||||||
//
|
|
||||||
// Author:
|
|
||||||
// paul <>
|
|
||||||
//
|
|
||||||
// Copyright (c) 2015 paul
|
|
||||||
//
|
|
||||||
// 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;
|
|
||||||
|
|
||||||
namespace Yavsc.Model.Google
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Notification.
|
|
||||||
/// </summary>
|
|
||||||
public class Notification {
|
|
||||||
/// <summary>
|
|
||||||
/// The title.
|
|
||||||
/// </summary>
|
|
||||||
public string title;
|
|
||||||
/// <summary>
|
|
||||||
/// The body.
|
|
||||||
/// </summary>
|
|
||||||
public string body;
|
|
||||||
/// <summary>
|
|
||||||
/// The icon.
|
|
||||||
/// </summary>
|
|
||||||
public string icon;
|
|
||||||
/// <summary>
|
|
||||||
/// The sound.
|
|
||||||
/// </summary>
|
|
||||||
public string sound;
|
|
||||||
/// <summary>
|
|
||||||
/// The tag.
|
|
||||||
/// </summary>
|
|
||||||
public string tag;
|
|
||||||
/// <summary>
|
|
||||||
/// The color.
|
|
||||||
/// </summary>
|
|
||||||
public string color;
|
|
||||||
/// <summary>
|
|
||||||
/// The click action.
|
|
||||||
/// </summary>
|
|
||||||
public string click_action;
|
|
||||||
|
|
||||||
}
|
|
||||||
// https://gcm-http.googleapis.com/gcm/send
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue