* 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
100 lines
2.8 KiB
C#
100 lines
2.8 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Configuration;
|
|
using System.IO;
|
|
using System.Xml;
|
|
using Yavsc.Model.FrontOffice;
|
|
using System.Web;
|
|
|
|
namespace SalesCatalog.XmlImplementation
|
|
{
|
|
/// <summary>
|
|
/// Xml catalog provider.
|
|
/// In charge of getting the catalog data,
|
|
/// returning a Catalog object from GetCatalog
|
|
/// </summary>
|
|
public class XmlCatalogProvider: CatalogProvider
|
|
{
|
|
#region implemented abstract members of SalesCatalog.CatalogProvider
|
|
/// <summary>
|
|
/// Gets the catalog, loading it from
|
|
/// the file system at a first call,
|
|
/// and when its last write time has changed.
|
|
/// </summary>
|
|
/// <returns>The catalog.</returns>
|
|
public override Catalog GetCatalog ()
|
|
{
|
|
// Assert fileName != null
|
|
FileInfo fi = new FileInfo (fileName);
|
|
if (!fi.Exists)
|
|
throw new ConfigurationErrorsException(
|
|
string.Format("No catalog found ({0})",fileName));
|
|
if (fi.LastWriteTime > lastModification)
|
|
LoadCatalog ();
|
|
return catInstance;
|
|
}
|
|
/// <summary>
|
|
/// The catalog instance.
|
|
/// </summary>
|
|
protected XmlCatalog catInstance = null;
|
|
/// <summary>
|
|
/// The last modification date of the file loaded.
|
|
/// </summary>
|
|
protected DateTime lastModification = new DateTime(0);
|
|
/// <summary>
|
|
/// The name of the file loaded.
|
|
/// </summary>
|
|
protected string fileName = null;
|
|
#endregion
|
|
/// <summary>
|
|
/// Initialize the catalog
|
|
/// using the specified name and config.
|
|
/// The config object contains under the key
|
|
/// <c>connection</c> the path to the Xml Catalog file
|
|
/// at server side.
|
|
/// </summary>
|
|
/// <param name="name">Name.</param>
|
|
/// <param name="config">Config.</param>
|
|
public override void Initialize (string name, System.Collections.Specialized.NameValueCollection config)
|
|
{
|
|
if (config ["connection"] == null)
|
|
throw new Exception ("the 'connection' parameter is null " +
|
|
"(it should be the absolute path to the xml catalog)");
|
|
// config ["connection"] starts with "~/"
|
|
fileName = (string) config ["connection"];
|
|
if (fileName.StartsWith ("~/")) {
|
|
fileName = HttpContext.Current.Server.MapPath(
|
|
config ["connection"]);
|
|
}
|
|
LoadCatalog ();
|
|
}
|
|
|
|
private void LoadCatalog ()
|
|
{
|
|
try {
|
|
FileInfo fi = new FileInfo (fileName);
|
|
if (!fi.Exists)
|
|
throw new Exception (
|
|
string.Format ("Le fichier Xml decrivant le catalogue n'existe pas ({0})", fi.FullName));
|
|
XmlSerializer xsr = new XmlSerializer (typeof(XmlCatalog),new Type[]{
|
|
typeof(Service),
|
|
typeof(PhysicalProduct),
|
|
typeof(Euro),
|
|
typeof(Text),
|
|
typeof(TextInput),
|
|
typeof(SelectInput)});
|
|
|
|
using (FileStream fs = fi.OpenRead()) {
|
|
catInstance = (XmlCatalog) xsr.Deserialize (fs);
|
|
}
|
|
fileName = fi.FullName;
|
|
lastModification = fi.LastWriteTime;
|
|
}
|
|
catch (Exception e) {
|
|
lastModification = new DateTime (0);
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|