-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from aspnetboilerplate/upgrade-to-abp-9-3
Upgraded ABP to version 9.3 and NuGet packages to latest version
- Loading branch information
Showing
8 changed files
with
115 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
src/AbpCompanyName.AbpProjectName.Web/Controllers/LocalizationController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
using System; | ||
using System.Globalization; | ||
using System.Linq; | ||
using Abp; | ||
using Abp.AspNetCore.Mvc.Controllers; | ||
using Abp.AspNetCore.Mvc.Extensions; | ||
using Abp.Auditing; | ||
using Abp.Extensions; | ||
using Abp.Timing; | ||
using Abp.Web.Models; | ||
using Microsoft.AspNetCore.Http; | ||
using Microsoft.AspNetCore.Localization; | ||
using Microsoft.AspNetCore.Mvc; | ||
using IUrlHelper = Abp.Web.Http.IUrlHelper; | ||
|
||
namespace AbpCompanyName.AbpProjectName.Web.Controllers | ||
{ | ||
public class LocalizationController : AbpController | ||
{ | ||
private readonly IUrlHelper _urlHelper; | ||
|
||
public LocalizationController(IUrlHelper urlHelper) | ||
{ | ||
_urlHelper = urlHelper; | ||
} | ||
|
||
[DisableAuditing] | ||
public virtual ActionResult ChangeCulture(string cultureName, string returnUrl = "") | ||
{ | ||
if (!IsValidCultureCode(cultureName)) | ||
{ | ||
throw new AbpException("Unknown language: " + cultureName + ". It must be a valid culture!"); | ||
} | ||
|
||
var cookieValue = CookieRequestCultureProvider.MakeCookieValue( | ||
new RequestCulture(cultureName, cultureName) | ||
); | ||
|
||
Response.Cookies.Append( | ||
CookieRequestCultureProvider.DefaultCookieName, | ||
cookieValue, | ||
new CookieOptions | ||
{ | ||
Expires = Clock.Now.AddYears(2), | ||
HttpOnly = true | ||
} | ||
); | ||
|
||
if (Request.IsAjaxRequest()) | ||
{ | ||
return Json(new AjaxResponse()); | ||
} | ||
|
||
if (string.IsNullOrWhiteSpace(returnUrl)) | ||
{ | ||
return LocalRedirect("/"); | ||
} | ||
|
||
var escapedReturnUrl = Uri.EscapeDataString(returnUrl); | ||
var localPath = _urlHelper.LocalPathAndQuery(escapedReturnUrl, Request.Host.Host, Request.Host.Port); | ||
if (!string.IsNullOrWhiteSpace(localPath)) | ||
{ | ||
var unescapedLocalPath = Uri.UnescapeDataString(localPath); | ||
if (Url.IsLocalUrl(unescapedLocalPath)) | ||
{ | ||
return LocalRedirect(unescapedLocalPath); | ||
} | ||
} | ||
|
||
return LocalRedirect("/"); | ||
} | ||
|
||
private static bool IsValidCultureCode(string cultureCode) | ||
{ | ||
if (cultureCode.IsNullOrWhiteSpace()) | ||
{ | ||
return false; | ||
} | ||
|
||
try | ||
{ | ||
return CultureInfo.GetCultures(CultureTypes.AllCultures) | ||
.Any(e => e.Name.ToLowerInvariant() == cultureCode.ToLowerInvariant()); | ||
} | ||
catch (CultureNotFoundException) | ||
{ | ||
return false; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters