| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- //
- // System.Web.UI.Page.jvm.cs
- //
- // Authors:
- // Eyal Alaluf ([email protected])
- //
- // (C) 2006 Mainsoft Co. (http://www.mainsoft.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using [email protected];
- using javax.servlet.http;
- using System.Collections.Specialized;
- using System.Globalization;
- using System.Web.Hosting;
- using System.Web.J2EE;
- using System.ComponentModel;
- namespace System.Web.UI
- {
- public partial class Page
- {
- const string PageNamespaceKey = "__PAGENAMESPACE";
- const string RenderPageMark = "vmw.render.page=";
- const string ActionPageMark = "vmw.action.page=";
- static readonly string NextActionPageKey = PortletInternalUtils.NextActionPage;
- static readonly string NextRenderPageKey = PortletInternalUtils.NextRenderPage;
- bool _emptyPortletNamespace = false;
- string _PortletNamespace = null;
- bool _renderResponseInit = false;
- IPortletRenderResponse _renderResponse = null;
- internal string PortletNamespace
- {
- get {
- if (_emptyPortletNamespace)
- return null;
- if (_PortletNamespace == null) {
- IPortletResponse portletResponse = null;
- if (Context != null) {
- string usePortletNamespace = J2EEUtils.GetInitParameterByHierarchy (Context.Servlet.getServletConfig (), "mainsoft.use.portlet.namespace");
- if (usePortletNamespace == null || Boolean.Parse(usePortletNamespace))
- portletResponse = Context.ServletResponse as IPortletResponse;
- }
- if (portletResponse != null)
- _PortletNamespace = portletResponse.getNamespace ();
- else if (_requestValueCollection != null && _requestValueCollection [PageNamespaceKey] != null)
- _PortletNamespace = _requestValueCollection [PageNamespaceKey];
-
- _emptyPortletNamespace = _PortletNamespace == null;
- }
- return _PortletNamespace;
- }
- }
- internal string theForm {
- get {
- return "theForm" + PortletNamespace;
- }
- }
-
- bool _isMultiForm = false;
- bool _isMultiFormInited = false;
- internal bool IsMultiForm {
- get {
- if (!_isMultiFormInited) {
- Mainsoft.Web.Configuration.PagesSection pageSection = (Mainsoft.Web.Configuration.PagesSection) System.Web.Configuration.WebConfigurationManager.GetSection ("mainsoft.web/pages");
- if (pageSection != null)
- _isMultiForm = pageSection.MultiForm;
- _isMultiFormInited = true;
- }
- return _isMultiForm;
- }
- }
- internal bool IsPortletRender
- {
- get {
- return RenderResponse != null;
- }
- }
- internal bool IsGetBack {
- get {
- return IsPostBack && IsPortletRender &&
- (0 == String.Compare (Request.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase));
- }
- }
- internal IPortletRenderResponse RenderResponse
- {
- get {
- if (!_renderResponseInit)
- if (Context != null) {
- _renderResponse = Context.ServletResponse as IPortletRenderResponse;
- _renderResponseInit = true;
- }
- return _renderResponse;
- }
- }
- public string CreateRenderUrl (string url)
- {
- if (RenderResponse != null)
- return RenderResponse.createRenderURL (url);
- if (PortletNamespace == null)
- return url;
- string internalUrl = RemoveAppPathIfInternal (url);
- if (internalUrl == null)
- return url;
- PostBackOptions options = new PostBackOptions (this);
- options.ActionUrl = RenderPageMark + internalUrl;
- options.RequiresJavaScriptProtocol = true;
- return ClientScript.GetPostBackEventReference (options);
- }
- public string CreateActionUrl (string url)
- {
- if (url.StartsWith (RenderPageMark, StringComparison.Ordinal) || url.StartsWith (ActionPageMark, StringComparison.Ordinal))
- return url;
- if (RenderResponse != null)
- return RenderResponse.createActionURL (url);
- if (PortletNamespace == null)
- return url;
- Uri requestUrl = Request.Url;
- string internalUrl = RemoveAppPathIfInternal (url);
- if (internalUrl == null)
- return url;
- return ActionPageMark + internalUrl;
- }
- private string RemoveAppPathIfInternal (string url)
- {
- Uri reqUrl = Request.Url;
- string appPath = Request.ApplicationPath;
- string currPage = Request.CurrentExecutionFilePath;
- if (currPage.StartsWith (appPath, StringComparison.InvariantCultureIgnoreCase))
- currPage = currPage.Substring (appPath.Length);
- return PortletInternalUtils.mapPathIfInternal (url, reqUrl.Host, reqUrl.Port, reqUrl.Scheme, appPath, currPage);
- }
- internal bool OnSaveStateCompleteForPortlet ()
- {
- if (PortletNamespace != null) {
- ClientScript.RegisterHiddenField (PageNamespaceKey, PortletNamespace);
- ClientScript.RegisterHiddenField (NextActionPageKey, "");
- ClientScript.RegisterHiddenField (NextRenderPageKey, "");
- }
- IPortletActionResponse resp = Context.ServletResponse as IPortletActionResponse;
- IPortletActionRequest req = Context.ServletRequest as IPortletActionRequest;
- if (req == null)
- return false;
- // When redirecting don't save the page viewstate and hidden fields
- if (resp.isRedirected ())
- return true;
- if (IsPostBack && 0 == String.Compare (Request.HttpMethod, "POST", true, CultureInfo.InvariantCulture)) {
- resp.setRenderParameter ("__VIEWSTATE", GetSavedViewState ());
- if (ClientScript.hiddenFields != null)
- foreach (string key in ClientScript.hiddenFields.Keys)
- resp.setRenderParameter (key, (string) ClientScript.hiddenFields [key]);
- if (is_validated && Validators.Count > 0) {
- string validatorsState = GetValidatorsState ();
- #if DEBUG
- Console.WriteLine ("__VALIDATORSSTATE: " + validatorsState);
- #endif
- if (!String.IsNullOrEmpty (validatorsState))
- resp.setRenderParameter ("__VALIDATORSSTATE", validatorsState);
- }
- }
- // Stop processing only if we are handling processAction. If we
- // are handling a postback from render then fall through.
- return req.processActionOnly ();
- }
- string GetValidatorsState () {
- bool [] validatorsState = new bool [Validators.Count];
- bool isValid = true;
- for (int i = 0; i < Validators.Count; i++) {
- IValidator val = Validators [i];
- if (!val.IsValid)
- isValid = false;
- else
- validatorsState [i] = true;
- }
- if (isValid)
- return null;
- return GetFormatter ().Serialize (validatorsState);
- }
- void RestoreValidatorsState () {
- string validatorsStateSerialized = Request.Form ["__VALIDATORSSTATE"];
- if (String.IsNullOrEmpty (validatorsStateSerialized))
- return;
- is_validated = true;
- bool [] validatorsState = (bool []) GetFormatter ().Deserialize (validatorsStateSerialized);
- for (int i = 0; i < Math.Min (validatorsState.Length, Validators.Count); i++) {
- IValidator val = Validators [i];
- val.IsValid = validatorsState [i];
- }
- }
- }
- }
|