public TokenProvider(CMS_Common common, HttpContextBase context) { Common = common; _Context = context; _UserId = Common.CurrentUser.UserId; _SessionCache = new SessionTokenCache(_UserId, _Context); _SaveUserAccessCode(); }
public CustomTabModel(CMS_Common common, HttpContextBase context) { _Context = context; string path = _Context.Server.MapPath("."); var file = new FileInfo(System.Reflection.Assembly.GetExecutingAssembly().Location); var binFolder = file.Directory; var baseFolder = binFolder.Parent; _BaseFolder = baseFolder; Common = common; }
public string SyncSite() { //Set up the session data var common = CMS_Common.GetCommonInstance(Request.RequestContext); var user = common.CurrentUser; var store = common.ContentStore; //Get requested pages for sync var pages = Request.Form["pages"].Split('|'); //get schema to sync var schema = Request.Form["schema"]; //Schema service and sync request var schemaService = new IngeniuxCMService.SchemaDesignerServices(); var syncRequest = new IngeniuxCMService.SchemaSyncRequest(); var toSync = new List <IngeniuxCMService.SchemaSyncPageEntry>(); using (var session = store.OpenWriteSession(user)) { //check the schema id of each page foreach (var xid in pages) { var page = session.Site.Page(xid.Replace(" ", "")); //if the schema matches if (page.Schema.Id == schema) { toSync.Add(new IngeniuxCMService.SchemaSyncPageEntry { ID = xid }); } } } //Pages to sync var pageEntries = toSync; syncRequest.Pages = pageEntries.ToArray(); syncRequest.SchemaId = schema; //do the sync and get resutls var response = schemaService.SyncPagesToSchema(syncRequest); return(new JavaScriptSerializer().Serialize(response)); }
public string CopyElement() { var oldName = Request.Form["oldName"]; var newName = Request.Form["newName"]; var pages = Request.Form["pages"].Split('|'); //Set up the session data var common = CMS_Common.GetCommonInstance(Request.RequestContext); var user = common.CurrentUser; var store = common.ContentStore; //Rename the element and save using (var session = store.OpenWriteSession(user)) { var response = new Dictionary <string, List <string> >(); foreach (var xid in pages) { //change the element if it exists var page = session.Site.Page(xid.Replace(" ", "")); if (page == null) { response.Add("error", new List <string>() { "Could not open " + xid.Replace(" ", "") }); return(JsonConvert.SerializeObject(response)); } //Add each available element indexed by xid to the response. response.Add(xid, new List <string>()); foreach (var element in page.Elements()) { response[xid].Add(element.Name); } if (page.Element(oldName) != null) { //Rename the element page.Element(oldName).Name = newName; //Save the changes page.Save(); //if the change was succesful if (response.ContainsKey("changedPages")) { response["changedPages"].Add(xid.Replace(" ", "")); } else { response.Add("changedPages", new List <string>() { xid.Replace(" ", "") }); } } //If there was an error on the page else { if (response.ContainsKey("errors")) { response["errors"].Add(xid.Replace(" ", "")); } else { response.Add("errors", new List <string>() { xid.Replace(" ", "") }); } } } //return results return(JsonConvert.SerializeObject(response)); } }