* App.master: * datepair.js: * Book.aspx: * datepair.min.js: * LocalizedText.resx: * jquery.datepair.js: * jquery-ui-1.11.4.js: * jquery.timepicker.js: * BookQuery.cs: * jquery-1.11.3.min.js: * LocalizedText.fr.resx: * jquery.datepair.min.js: * WebCatalogExtensions.cs: * GoogleController.cs: * LocalizedText.Designer.cs: * jquery.timepicker.min.js: * jquery.timepicker.css: * Text.cs: * Euro.cs: * Unit.cs: * Link.cs: * Note.cs: * LocalizedText.fr.Designer.cs: * Brand.cs: * Label.cs: * Scalar.cs: * FrontOfficeController.cs: * Period.cs: * Option.cs: * Service.cs: * Catalog.cs: * Product.cs: * CheckBox.cs: * Currency.cs: * SaleForm.cs: * TextInput.cs: * FormInput.cs: * FilesInput.cs: * SelectItem.cs: * FormElement.cs: * SelectInput.cs: * RadioButton.cs: * StockStatus.cs: * ProductImage.cs: * CatalogHelper.cs: * CatalogManager.cs: * ProductCategory.cs: * PhysicalProduct.cs: * ui-icons_ffffff_256x240.png: * ui-icons_cccccc_256x240.png: * CatalogProvider.cs: * ui-icons_a83300_256x240.png: * ui-icons_222222_256x240.png: * ui-icons_4b8e0b_256x240.png: * ui-bg_glass_20_555555_1x400.png: * ui-bg_glass_40_0078a3_1x400.png: * ui-bg_glass_40_ffc73d_1x400.png: * ui-icons_222222_256x240.png: * ui-icons_a83300_256x240.png: * ui-icons_cccccc_256x240.png: * ui-icons_4b8e0b_256x240.png: * ui-icons_ffffff_256x240.png: * ui-bg_glass_40_0078a3_1x400.png: * ui-bg_glass_20_555555_1x400.png: * ui-bg_inset-soft_30_f58400_1x100.png: * ui-bg_inset-soft_25_000000_1x100.png: * ui-bg_glass_40_ffc73d_1x400.png: * ui-bg_gloss-wave_25_333333_500x100.png: * ui-bg_highlight-soft_80_eeeeee_1x100.png: * ui-bg_inset-soft_30_f58400_1x100.png: * ui-bg_inset-soft_25_000000_1x100.png: * ui-bg_gloss-wave_25_333333_500x100.png: * ui-bg_highlight-soft_80_eeeeee_1x100.png: * CatalogProviderConfigurationElement.cs: * CatalogProvidersConfigurationSection.cs: * CatalogProvidersConfigurationCollection.cs: Date pairing at booking, Fixes the client side ui, concerning the dates and times * MyClass.cs: * WorkFlowManager.cs: * IContentProvider.cs: * FrontOfficeController.cs: * XmlCatalog.cs: * NpgsqlContentProvider.cs: * Price.cs: * XmlCatalogProvider.cs: * PriceOnItemCount.cs: refactoring: a dedicated name space for the catalog * ChooseADate.aspx: WIP * Web.csproj: date pairing : includes the javascript modules
97 lines
2.7 KiB
C#
97 lines
2.7 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Configuration;
|
|
using System.IO;
|
|
using System.Xml;
|
|
using System.Web;
|
|
using Yavsc.Model.FrontOffice.Catalog;
|
|
|
|
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)");
|
|
string cnx = (string) config ["connection"];
|
|
fileName = HttpContext.Current.Server.MapPath(cnx);
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|