NightFlash : a Web API
* NFEvent.cs: * Period.cs: * OpenDay.cs: * WeekDay.cs: * Position.cs: * Schedule.cs: * Publishing.cs: * Periodicity.cs: * ProvidedEvent.cs: * NightFlashController.cs: * ProviderPublicInfo.cs: * PositionAndKeyphrase.cs:
This commit is contained in:
parent
629e80330d
commit
cfd023411d
12 changed files with 697 additions and 0 deletions
129
web/ApiControllers/NightFlash/NightFlashController.cs
Normal file
129
web/ApiControllers/NightFlash/NightFlashController.cs
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
//
|
||||
// NightFlashController.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 System.Web.Http;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Yavsc.ApiControllers.NightFlash.Model;
|
||||
|
||||
namespace Yavsc.ApiControllers.NightFlash
|
||||
{
|
||||
/// <summary>
|
||||
/// Night flash controller.
|
||||
/// </summary>
|
||||
public class NightFlashController: ApiController
|
||||
{
|
||||
/// <summary>
|
||||
/// List events according the specified search arguments.
|
||||
/// </summary>
|
||||
/// <param name="args">Arguments.</param>
|
||||
[ValidateAjaxAttribute]
|
||||
[HttpGet]
|
||||
public NFEvent[] List ([FromUri] PositionAndKeyphrase args)
|
||||
{
|
||||
return new NFEvent[] {
|
||||
new NFEvent () {
|
||||
Title = "Test",
|
||||
Description = "Test Descr",
|
||||
EventType = "Night club special bubble party",
|
||||
Location = new Position() {
|
||||
Longitude = 0,
|
||||
Latitude = 0
|
||||
}
|
||||
},
|
||||
new NFEvent () {
|
||||
Title = "Test2",
|
||||
ImgLocator = "http://bla/im.png",
|
||||
Location = new Position() {
|
||||
Longitude = 0,
|
||||
Latitude = 0
|
||||
}
|
||||
},
|
||||
new NFEvent () {
|
||||
Title = "Test",
|
||||
Description = "Test Descr",
|
||||
EventType = "Night club special bubble party",
|
||||
Location = new Position() {
|
||||
Longitude = 0,
|
||||
Latitude = 0
|
||||
}
|
||||
},
|
||||
new NFEvent () {
|
||||
Title = "Test2",
|
||||
ImgLocator = "http://bla/im.png",
|
||||
Location = new Position() {
|
||||
Longitude = 0,
|
||||
Latitude = 0
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Provider the specified ProviderId.
|
||||
/// </summary>
|
||||
/// <param name="ProviderId">Provider identifier.</param>
|
||||
[HttpGet]
|
||||
public ProviderPublicInfo Provider ([FromUri] string ProviderId)
|
||||
{
|
||||
return new ProviderPublicInfo () {
|
||||
DisplayName = "Yavsc clubing",
|
||||
WebPage = "http://yavsc.pschneider.fr/",
|
||||
Calendar = new Schedule () {
|
||||
Period = Periodicity.ThreeM,
|
||||
WeekDays = new OpenDay[] { new OpenDay () { Day = WeekDay.Saturday,
|
||||
Start = new TimeSpan(18,00,00),
|
||||
End = new TimeSpan(2,00,00)
|
||||
} },
|
||||
Validity = new Period[] { new Period() {
|
||||
Start = new DateTime(2015,5,29),
|
||||
End = new DateTime(2015,5,30)} }
|
||||
},
|
||||
Description = "Yavsc Entertainment Production, Yet another private party",
|
||||
LogoImgLocator = "http://yavsc.pschneider.fr/favicon.png",
|
||||
Location = new Position () { Longitude = 0, Latitude = 0 },
|
||||
LocationType = "Salle des fêtes"
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Posts the image.
|
||||
/// </summary>
|
||||
/// <returns>The image.</returns>
|
||||
/// <param name="NFProvId">NF prov identifier.</param>
|
||||
public string PostImage([FromUri] string NFProvId)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Posts the event.
|
||||
/// </summary>
|
||||
/// <returns>The event identifier.</returns>
|
||||
/// <param name="ev">Ev.</param>
|
||||
public int PostEvent ([FromBody] ProvidedEvent ev)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue