
* NewProjectModel.cs: * ITContentProvider.csproj: refactoring * WebApiConfig.cs: Web Api Config * IModule.cs: * RssFeeds.cs: * IRenderer.cs: * Blog.cs: * ITagHandler.cs: * ViewRenderer.cs: * Comment.cs: * IViewRenderer.cs: * People.cs: * SignIn.cs: * BlogEntry.cs: * AuthToken.cs: * BlogHelper.cs: * DataAccess.cs: * Estimate.cs: * BlogManager.cs: * Writting.cs: * AskForADate.cs: * RestoreQuery.cs: * Basket.cs: * BlogProvider.cs: * CalendarList.cs: * Commande.cs: * StatusChange.cs: * WebFileInfo.cs: * WorkFlowManager.cs: * Euro.cs: * Unit.cs: * Text.cs: * Profile.cs: * Note.cs: * Link.cs: * BlogEditEntryModel.cs: * FindBlogEntryFlags.cs: * NewProjectModel.cs: * CalendarListEntry.cs: * CalendarEntryList.cs: * IContentProvider.cs: * CommandStatus.cs: * Label.cs: * Price.cs: * BlogEntryCollection.cs: * Period.cs: * Scalar.cs: * BlogEditCommentModel.cs: * Option.cs: * NpgsqlContentProvider.cs: * Product.cs: * LoginModel.cs: * Service.cs: * Catalog.cs: * Currency.cs: * NewEstimateEvenArgs.cs: * CheckBox.cs: * SaleForm.cs: * FileSystemManager.cs: * FormInput.cs: * TextInput.cs: * NewRoleModel.cs: * FileInfoCollection.cs: * FilesInput.cs: * NewAdminModel.cs: * SelectItem.cs: * SelectInput.cs: * RadioButton.cs: * StockStatus.cs: * Provider.cs: * DirNotFoundException.cs: * FormElement.cs: * ProductImage.cs: * WebFileInfoCollection.cs: * CatalogHelper.cs: * CatalogManager.cs: * RegisterViewModel.cs: * InvalidDirNameException.cs: * PhysicalProduct.cs: * CatalogProvider.cs: * ProductCategory.cs: * OrderStatusChangedEventArgs.cs: * ProviderCollection.cs: * WorkflowConfiguration.cs: * BlogProviderConfigurationElement.cs: * BlogProvidersConfigurationSection.cs: * BlogProvidersConfigurationCollection.cs: * CatalogProviderConfigurationElement.cs: * CatalogProvidersConfigurationSection.cs: * CatalogProvidersConfigurationCollection.cs: xml doc * SalesCatalog.csproj: * XmlCatalogProvider.cs: Maps the catalog using System.Web * BasketController.cs: * FrontOfficeController.cs: a Basket controller * Global.asax.cs: Session in Web Api * App.master: WebApi bas url as Javascript var 'apiBaseUrl' * Index.aspx: !!not sure of this change. * Web.csproj: compiles now includes WebApiConfig.cs * style.css: link background color * FileSystemController.cs: a file system controller
95 lines
2.4 KiB
C#
95 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.Http;
|
|
using Yavsc.Model.WorkFlow;
|
|
using System.Collections.Specialized;
|
|
using Yavsc.Model.FrontOffice;
|
|
using System.Web.SessionState;
|
|
|
|
namespace Yavsc.ApiControllers
|
|
{
|
|
/// <summary>
|
|
/// Basket controller.
|
|
/// Maintains a collection of articles
|
|
/// qualified with name value pairs
|
|
/// </summary>
|
|
public class BasketController : ApiController
|
|
{
|
|
/// <summary>
|
|
/// The wfmgr.
|
|
/// </summary>
|
|
protected WorkFlowManager wfmgr = null;
|
|
|
|
/// <summary>
|
|
/// Initialize the specified controllerContext.
|
|
/// </summary>
|
|
/// <param name="controllerContext">Controller context.</param>
|
|
protected override void Initialize (System.Web.Http.Controllers.HttpControllerContext controllerContext)
|
|
{
|
|
base.Initialize (controllerContext);
|
|
wfmgr = new WorkFlowManager ();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the current basket, creates a new one, if it doesn't exist.
|
|
/// </summary>
|
|
/// <value>The current basket.</value>
|
|
protected Basket CurrentBasket {
|
|
get {
|
|
HttpSessionState session = HttpContext.Current.Session;
|
|
Basket b = (Basket) session ["Basket"];
|
|
if (b == null)
|
|
session ["Basket"] = b = new Basket ();
|
|
return b;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create the specified basket item using specified command parameters.
|
|
/// </summary>
|
|
/// <param name="cmdParams">Command parameters.</param>
|
|
[Authorize]
|
|
public long Create(NameValueCollection cmdParams)
|
|
{
|
|
// HttpContext.Current.Request.Files
|
|
Commande cmd = new Commande(cmdParams, HttpContext.Current.Request.Files);
|
|
CurrentBasket.Add (cmd);
|
|
return cmd.Id;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Read the specified basket item.
|
|
/// </summary>
|
|
/// <param name="itemid">Itemid.</param>
|
|
[Authorize]
|
|
Commande Read(long itemid){
|
|
return CurrentBasket[itemid];
|
|
}
|
|
|
|
/// <summary>
|
|
/// Update the specified item parameter using the specified value.
|
|
/// </summary>
|
|
/// <param name="itemid">Item identifier.</param>
|
|
/// <param name="param">Parameter name.</param>
|
|
/// <param name="value">Value.</param>
|
|
[Authorize]
|
|
public void UpdateParam(long itemid, string param, string value)
|
|
{
|
|
CurrentBasket [itemid].Parameters [param] = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Delete the specified item.
|
|
/// </summary>
|
|
/// <param name="itemid">Item identifier.</param>
|
|
[Authorize]
|
|
public void Delete(long itemid)
|
|
{
|
|
CurrentBasket.Remove (itemid);
|
|
}
|
|
|
|
}
|
|
} |