private AttachmentDataLookupListsCacheObject GetAttachmentDataAndLookups()
        {
            UcbServiceClient   sc           = new UcbServiceClient();
            AttachmentDataVMDC returnObject = sc.GetAttachmentData(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            AttachmentDataLookupListsCacheObject CachedLists = new AttachmentDataLookupListsCacheObject();

            CachedLists.AttachmentList = Mapper.Map <IEnumerable <AttachmentDC>, List <AttachmentModel> >(returnObject.AttachmentList);
            return(CachedLists);
        }
示例#2
0
        public ActionResult Edit()
        {
            // Retrieve ID from session
            string code = sessionManager.AttachmentDataCode;

            AttachmentDataVM model = new AttachmentDataVM();

            // Not from staff or error
            if (String.IsNullOrEmpty(code))
            {
                //If session has lists then use them
                RepopulateListsFromCacheSession(model);

                //Assume we are in create mode as no code passed
                model.AttachmentDataItem = new AttachmentDataModel();
            }
            //if we have been passed a code then assume we are in edit situation and we need to retrieve from the database.
            else
            {
                // Create service instance
                IUcbService sc = UcbService;

                try
                {
                    // Call service to get AttachmentData item and any associated lookups
                    AttachmentDataVMDC returnedObject = sc.GetAttachmentData(CurrentUser, CurrentUser, appID, "", code);

                    // Close service communication
                    ((ICommunicationObject)sc).Close();

                    //Get view model from service
                    model = ConvertAttachmentDataDC(returnedObject);

                    ResolveFieldCodesToFieldNamesUsingLists(model);

                    //Store the service version
                    sessionManager.AttachmentDataServiceVersion = model.AttachmentDataItem;
                }
                catch (Exception e)
                {
                    // Handle the exception
                    string message = ExceptionManager.HandleException(e, (ICommunicationObject)sc);
                    model.Message = message;

                    return(View(model));
                }
            }

            //Adds current retrieved AttachmentData to session
            sessionManager.CurrentAttachmentData = model.AttachmentDataItem;
            SetAccessContext(model);

            return(View(model));
        }
示例#3
0
        private AttachmentDataVM ConvertAttachmentDataDC(AttachmentDataVMDC returnedObject)
        {
            AttachmentDataVM model = new AttachmentDataVM();

            // Map AttachmentData Item
            model.AttachmentDataItem = Mapper.Map <AttachmentDataDC, AttachmentDataModel>(returnedObject.AttachmentDataItem);

            // Map lookup data lists
            model.AttachmentList = Mapper.Map <IEnumerable <AttachmentDC>, List <AttachmentModel> >(returnedObject.AttachmentList);

            return(model);
        }
示例#4
0
        //This method is shared between create and save
        private ActionResult UpdateAttachmentData()
        {
            // Get the updated model
            var model = GetUpdatedModel();

            // Test to see if there are any errors
            var errors = ModelState
                         .Where(x => x.Value.Errors.Count > 0)
                         .Select(x => new { x.Key, x.Value.Errors[0].ErrorMessage })
                         .ToArray();

            //Set flags false
            SetFlagsFalse(model);

            // Test to see if the model has validated correctly
            if (ModelState.IsValid)
            {
                // Create service instance
                IUcbService sc = UcbService;

                //Attempt update
                try
                {
                    // Map model to data contract
                    AttachmentDataDC AttachmentDataItem = Mapper.Map <AttachmentDataDC>(model.AttachmentDataItem);

                    AttachmentDataVMDC returnedObject = null;

                    if (null == model.AttachmentDataItem.Code || model.AttachmentDataItem.Code == Guid.Empty)
                    {
                        // Call service to create new AttachmentData item
                        returnedObject = sc.CreateAttachmentData(CurrentUser, CurrentUser, appID, "", AttachmentDataItem);
                    }
                    else
                    {
                        // Call service to update AttachmentData item
                        returnedObject = sc.UpdateAttachmentData(CurrentUser, CurrentUser, appID, "", AttachmentDataItem);
                    }

                    // Close service communication
                    ((ICommunicationObject)sc).Close();

                    // Retrieve item returned by service
                    var createdAttachmentData = returnedObject.AttachmentDataItem;

                    // Map data contract to model
                    model.AttachmentDataItem = Mapper.Map <AttachmentDataModel>(createdAttachmentData);

                    //After creation some of the fields are display only so we need the resolved look up nmames
                    ResolveFieldCodesToFieldNamesUsingLists(model);

                    // Set access context to Edit mode
                    model.AccessContext = AttachmentDataAccessContext.Edit;

                    // Save version of item returned by service into session
                    sessionManager.AttachmentDataServiceVersion = model.AttachmentDataItem;
                    sessionManager.CurrentAttachmentData        = model.AttachmentDataItem;

                    // Remove the state from the model as these are being populated by the controller and the HTML helpers are being populated with
                    // the POSTED values and not the changed ones.
                    ModelState.Clear();
                    model.Message = Resources.MESSAGE_UPDATE_SUCCEEDED;
                }
                catch (Exception e)
                {
                    // Handle the exception
                    string message = ExceptionManager.HandleException(e, (ICommunicationObject)sc);
                    model.Message = message;

                    return(View(model));
                }
            }

            return(View(model));
        }
示例#5
0
        /// <summary>
        ///  Create a AttachmentData
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="dc"></param>
        /// <param name="dataRepository"></param>
        /// <param name="uow"></param>
        public AttachmentDataVMDC CreateAttachmentData(string currentUser, string user, string appID, string overrideID, AttachmentDataDC dc, IRepository <AttachmentData> dataRepository, IUnitOfWork uow, IExceptionManager exceptionManager, IMappingService mappingService)
        {
            try
            {
                #region Parameter validation

                // Validate parameters
                if (string.IsNullOrEmpty(currentUser))
                {
                    throw new ArgumentOutOfRangeException("currentUser");
                }
                if (string.IsNullOrEmpty(user))
                {
                    throw new ArgumentOutOfRangeException("user");
                }
                if (string.IsNullOrEmpty(appID))
                {
                    throw new ArgumentOutOfRangeException("appID");
                }
                if (null == dc)
                {
                    throw new ArgumentOutOfRangeException("dc");
                }
                if (null == dataRepository)
                {
                    throw new ArgumentOutOfRangeException("dataRepository");
                }
                if (null == uow)
                {
                    throw new ArgumentOutOfRangeException("uow");
                }
                if (null == exceptionManager)
                {
                    throw new ArgumentOutOfRangeException("exceptionManager");
                }
                if (null == mappingService)
                {
                    throw new ArgumentOutOfRangeException("mappingService");
                }

                #endregion

                using (uow)
                {
                    // Create a new ID for the AttachmentData item
                    dc.Code = Guid.NewGuid();

                    // Map data contract to model
                    AttachmentData destination = mappingService.Map <AttachmentDataDC, AttachmentData>(dc);

                    // Add the new item
                    dataRepository.Add(destination);

                    // Commit unit of work
                    uow.Commit();

                    // Map model back to data contract to return new row id.
                    dc = mappingService.Map <AttachmentData, AttachmentDataDC>(destination);
                }

                // Create aggregate data contract
                AttachmentDataVMDC returnObject = new AttachmentDataVMDC();

                // Add new item to aggregate
                returnObject.AttachmentDataItem = dc;

                return(returnObject);
            }
            catch (Exception e)
            {
                //Prevent exception from propogating across the service interface
                exceptionManager.ShieldException(e);

                return(null);
            }
        }
示例#6
0
        /// <summary>
        /// Retrieve a AttachmentData with associated lookups
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="code"></param>
        /// <param name="dataRepository"></param>
        /// <param name="uow"></param>
        /// <returns></returns>
        public AttachmentDataVMDC GetAttachmentData(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <AttachmentData> dataRepository
                                                    , IRepository <Attachment> attachmentRepository
                                                    , IExceptionManager exceptionManager, IMappingService mappingService)

        {
            try
            {
                #region Parameter validation

                // Validate parameters
                if (string.IsNullOrEmpty(currentUser))
                {
                    throw new ArgumentOutOfRangeException("currentUser");
                }
                if (string.IsNullOrEmpty(user))
                {
                    throw new ArgumentOutOfRangeException("user");
                }
                if (string.IsNullOrEmpty(appID))
                {
                    throw new ArgumentOutOfRangeException("appID");
                }
                if (null == dataRepository)
                {
                    throw new ArgumentOutOfRangeException("dataRepository");
                }
                if (null == uow)
                {
                    throw new ArgumentOutOfRangeException("uow");
                }
                if (null == exceptionManager)
                {
                    throw new ArgumentOutOfRangeException("exceptionManager");
                }
                if (null == mappingService)
                {
                    throw new ArgumentOutOfRangeException("mappingService");
                }

                #endregion

                using (uow)
                {
                    AttachmentDataDC destination = null;

                    // If code is null then just return supporting lists
                    if (!string.IsNullOrEmpty(code))
                    {
                        // Convert code to Guid
                        Guid codeGuid = Guid.Parse(code);

                        // Retrieve specific AttachmentData
                        AttachmentData dataEntity = dataRepository.Single(x => x.Code == codeGuid);

                        // Convert to data contract for passing through service interface
                        destination = mappingService.Map <AttachmentData, AttachmentDataDC>(dataEntity);
                    }

                    IEnumerable <Attachment> attachmentList = attachmentRepository.GetAll(x => x.Name);

                    List <AttachmentDC> attachmentDestinationList = mappingService.Map <List <AttachmentDC> >(attachmentList);

                    // Create aggregate contract
                    AttachmentDataVMDC returnObject = new AttachmentDataVMDC();

                    returnObject.AttachmentDataItem = destination;
                    returnObject.AttachmentList     = attachmentDestinationList;

                    return(returnObject);
                }
            }
            catch (Exception e)
            {
                //Prevent exception from propogating across the service interface
                exceptionManager.ShieldException(e);

                return(null);
            }
        }