use of com.pratilipi.common.type.Language in project pratilipi by Pratilipi.
the class SiteElementUtil method main.
public static void main(String[] args) throws IOException, UnexpectedServerException, URISyntaxException, ClassNotFoundException {
String elementFolderName = args[0];
String i18nElementFolderNamePrefix = args[1];
String framework = args[2];
List<String> PWAElementList = new ArrayList<>();
for (String elementName : new File("src/main/webapp/pwa-elements").list()) PWAElementList.add(elementName);
List<Long> aEEUserIdList = getAEEUserIdList();
for (Language language : Language.values()) {
File elementFolder = new File(elementFolderName);
for (String elementName : elementFolder.list()) {
if (!elementName.endsWith(".html") && !elementName.endsWith(".js"))
continue;
File element = new File(elementFolder, elementName);
if (element.isDirectory())
continue;
// Data model required for i18n element generation
Map<String, Object> dataModel = new HashMap<>();
dataModel.put("PWAElementList", PWAElementList);
dataModel.put("lang", language.getCode());
dataModel.put("language", language);
dataModel.put("domain", language.getHostName());
dataModel.put("fbAppId", "293990794105516");
dataModel.put("googleClientId", "659873510744-kfim969enh181h4gbctffrjg5j47tfuq.apps.googleusercontent.com");
dataModel.put("firebaseLibrary", "https://www.gstatic.com/firebasejs/3.6.10/firebase.js");
dataModel.put("_strings", I18n.getStrings(language));
dataModel.put("ga_website", "PWA");
dataModel.put("ga_websiteMode", "Standard");
dataModel.put("ga_websiteVersion", "Mark-7");
List<Map<String, Object>> pratilipiTypes = new ArrayList<>();
for (PratilipiType pratilipiType : PratilipiType.values()) {
Map<String, Object> type = new HashMap<>();
type.put("name", I18n.getString(pratilipiType.getStringId(), language));
type.put("namePlural", I18n.getString(pratilipiType.getPluralStringId(), language));
type.put("value", pratilipiType.name());
pratilipiTypes.add(type);
}
dataModel.put("pratilipiTypes", pratilipiTypes);
// Language list
List<Map<String, Object>> languageList = new ArrayList<>();
for (Language lang : Language.values()) {
if (lang == Language.ENGLISH)
continue;
Map<String, Object> langMap = new HashMap<>();
langMap.put("value", lang);
langMap.put("code", lang.getCode());
langMap.put("hostName", "http://" + lang.getHostName());
langMap.put("name", lang.getName());
langMap.put("nameEn", lang.getNameEn());
languageList.add(langMap);
}
dataModel.put("languageList", languageList);
dataModel.put("navigationList", getNavigationList(language));
dataModel.put("listTitleList", getListTitleList(language));
dataModel.put("staticUrlList", getStaticUrlList(language));
dataModel.put("aEEUserIdList", aEEUserIdList);
dataModel.put("quoteList", getQuotes(language));
// I18n element file output stream
File i18nElement = null;
if (framework.equals("polymer")) {
File i18nElementFolder = new File(i18nElementFolderNamePrefix + language.getCode());
i18nElementFolder.mkdir();
i18nElement = new File(i18nElementFolder, elementName);
i18nElement.createNewFile();
} else if (framework.equals("knockout")) {
String elName = null;
if (elementName.endsWith(".html")) {
elName = elementName.substring(0, elementName.indexOf(".html")) + "-" + language.getCode() + ".html";
} else if (elementName.endsWith(".js")) {
elName = elementName.substring(0, elementName.indexOf(".js")) + "-" + language.getCode() + ".js";
}
i18nElement = new File(i18nElementFolderNamePrefix, elName);
i18nElement.createNewFile();
}
OutputStreamWriter i18nElementOS = new OutputStreamWriter(new FileOutputStream(i18nElement), "UTF-8");
// The magic
FreeMarkerUtil.processTemplate(dataModel, elementFolderName + "/" + elementName, i18nElementOS);
// closing the output stream
i18nElementOS.close();
}
}
}
use of com.pratilipi.common.type.Language in project pratilipi by Pratilipi.
the class PratilipiSite method doGet.
public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
DataAccessor dataAccessor = DataAccessorFactory.getDataAccessor();
// Setting user's author profile's default language, if not set already
if (UxModeFilter.getFilterLanguage() != null) {
Author author = dataAccessor.getAuthorByUserId(AccessTokenFilter.getAccessToken().getUserId());
if (author != null && author.getLanguage() == null) {
author.setLanguage(UxModeFilter.getFilterLanguage());
dataAccessor.createOrUpdateAuthor(author);
}
}
String uri = request.getRequestURI();
String canonicalUrl = "http://" + UxModeFilter.getWebsite().getHostName() + uri;
String alternateUrl = "http://" + UxModeFilter.getWebsite().getMobileHostName() + uri;
// User
UserData userData = UserDataUtil.getCurrentUser();
// BasicMode
boolean basicMode = UxModeFilter.isBasicMode();
// Language
Language displayLanguage = UxModeFilter.getDisplayLanguage();
Language filterLanguage = UxModeFilter.getFilterLanguage();
// Navigation List
List<Navigation> navigationList = dataAccessor.getNavigationList(filterLanguage == null ? Language.ENGLISH : filterLanguage);
// Common resource list
Set<String> resourceList = getResourceList(basicMode);
Set<String> deferredResourceList = new HashSet<>();
if (basicMode) {
resourceList.add(ThirdPartyResource.BOOTSTRAP_CSS.getTag());
} else {
deferredResourceList.add(ThirdPartyResource.BOOTSTRAP_CSS.getTag());
deferredResourceList.add(ThirdPartyResource.GOOGLE_TRANSLITERATION.getTag());
}
// Load PWA
boolean loadPWA = true;
if (UxModeFilter.isCrawler())
loadPWA = false;
if (UxModeFilter.isBasicMode() && SystemProperty.STAGE.equals(SystemProperty.STAGE_PROD))
loadPWA = false;
if (uri.equals("/write") || uri.equals("/pratilipi-write") || uri.equals("/admin") || uri.startsWith("/admin/") || uri.equals("/edit-event") || uri.equals("/edit-blog"))
loadPWA = false;
if (uri.equals("/") && (UxModeFilter.getWebsite() == Website.ALL_LANGUAGE || UxModeFilter.getWebsite() == Website.GAMMA_ALL_LANGUAGE))
loadPWA = false;
// TODO: Hack - Remove it soon
if (request.getParameter("loadPWA") != null) {
loadPWA = Boolean.parseBoolean(request.getParameter("loadPWA"));
}
// Data Model for FreeMarker
Map<String, Object> dataModel = null;
String templateName = null;
// ga_location
String ga_location = null;
try {
// Search Engine Crawlers
if (uri.equals("/sitemap") && SystemProperty.STAGE.equals(SystemProperty.STAGE_PROD)) {
String content = PageDataUtil.getSitemap(request.getParameter(RequestParameter.SITEMAP_TYPE.getName()), request.getParameter(RequestParameter.SITEMAP_CURSOR.getName()), UxModeFilter.getWebsite(), basicMode);
_dispatchResponse(content, "application/xml", "UTF-8", response);
return;
}
// Robots.txt
if (uri.equals("/robots.txt")) {
dataModel = new HashMap<>();
dataModel.put("stage", SystemProperty.STAGE);
templateName = templateFilePrefix + "RobotsTxt.ftl";
String robotsTxt = FreeMarkerUtil.processTemplate(dataModel, templateName);
_dispatchResponse(robotsTxt, "text/plain", "UTF-8", response);
return;
}
// PWA
if (loadPWA) {
templateName = "PWA.ftl";
dataModel = new HashMap<>();
// Hack: Not to minify the html file
dataModel.put("stage", "pwa");
dataModel.put("lang", displayLanguage.getCode());
dataModel.put("language", displayLanguage);
dataModel.put("templateName", templateName);
String html = FreeMarkerUtil.processTemplate(dataModel, templateFilePrefix + "MainTemplate.ftl");
logger.log(Level.INFO, "Website Version : Mark-7");
_dispatchResponse(html, "text/html", "UTF-8", response);
return;
}
// Page Entity
Page page = dataAccessor.getPage(uri);
// Hard-coded links
if (uri.equals("/")) {
if (UxModeFilter.getWebsite() == Website.ALL_LANGUAGE || UxModeFilter.getWebsite() == Website.GAMMA_ALL_LANGUAGE) {
ga_location = "MasterHomePage";
dataModel = createDataModelForMasterHomePage(filterLanguage);
templateName = "MasterHome.ftl";
} else {
ga_location = "HomePage";
dataModel = createDataModelForHomePage(basicMode, filterLanguage);
templateName = (basicMode ? "HomeBasic.ftl" : "Home.ftl");
}
} else if (uri.equals("/library")) {
ga_location = "LibraryPage";
dataModel = createDataModelForLibraryPage(basicMode, filterLanguage);
templateName = (basicMode ? "LibraryBasic.ftl" : "Library.ftl");
} else if (uri.equals("/notifications")) {
ga_location = "NotificationsPage";
dataModel = createDataModelForNotificationsPage(filterLanguage, basicMode);
if (request.getParameter("action") != null)
dataModel.put("action", request.getParameter("action"));
templateName = (basicMode ? "NotificationBasic.ftl" : "Notification.ftl");
} else if (uri.equals("/search")) {
ga_location = "SearchPage";
if (request.getQueryString() != null) {
canonicalUrl = canonicalUrl + "?" + request.getQueryString();
alternateUrl = alternateUrl + "?" + request.getQueryString();
}
dataModel = createDataModelForSearchPage(basicMode, filterLanguage, request);
templateName = (basicMode ? "SearchBasic.ftl" : "Search.ftl");
} else if (uri.equals("/events")) {
ga_location = "AllEventsPage";
dataModel = createDataModelForEventsPage(filterLanguage, basicMode);
templateName = (basicMode ? "EventListBasic.ftl" : "EventList.ftl");
} else if (uri.equals("/followers")) {
ga_location = "FollowersPage";
Long authorId = null;
if (request.getParameter(RequestParameter.AUTHOR_ID.getName()) != null) {
authorId = Long.parseLong(request.getParameter(RequestParameter.AUTHOR_ID.getName()));
} else {
Long userId = AccessTokenFilter.getAccessToken().getUserId();
if (userId != null && userId != 0L)
authorId = dataAccessor.getAuthorByUserId(userId).getId();
}
Integer currentPage = request.getParameter(RequestParameter.LIST_PAGE_NUMBER.getName()) != null && !request.getParameter(RequestParameter.LIST_PAGE_NUMBER.getName()).trim().isEmpty() ? Integer.parseInt(request.getParameter(RequestParameter.LIST_PAGE_NUMBER.getName())) : 1;
if (authorId == null) {
dataModel = new HashMap<String, Object>();
dataModel.put("title", SEOTitleUtil.getFollowersPageTitle(authorId, filterLanguage));
} else {
dataModel = createDataModelForFollowersPage(authorId, currentPage, filterLanguage, basicMode);
}
templateName = (basicMode ? "FollowersListBasic.ftl" : "FollowersList.ftl");
} else if (uri.equals("/following")) {
ga_location = "FollowingPage";
Long userId = null;
if (request.getParameter(RequestParameter.USER_ID.getName()) != null)
userId = Long.parseLong(request.getParameter(RequestParameter.USER_ID.getName()));
else
userId = AccessTokenFilter.getAccessToken().getUserId();
Integer currentPage = request.getParameter(RequestParameter.LIST_PAGE_NUMBER.getName()) != null && !request.getParameter(RequestParameter.LIST_PAGE_NUMBER.getName()).trim().isEmpty() ? Integer.parseInt(request.getParameter(RequestParameter.LIST_PAGE_NUMBER.getName())) : 1;
if (userId == null || userId == 0L) {
dataModel = new HashMap<String, Object>();
dataModel.put("title", SEOTitleUtil.getFollowersPageTitle(userId, filterLanguage));
} else {
dataModel = createDataModelForFollowingPage(userId, currentPage, filterLanguage, basicMode);
}
templateName = (basicMode ? "FollowingListBasic.ftl" : "FollowingList.ftl");
} else if (uri.equals("/pratilipi-2016")) {
ga_location = "Pratilipi2016Page";
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Pratilipi in 2016");
templateName = (basicMode ? "Pratilipi2016Basic.ftl" : "Pratilipi2016.ftl");
// Master website specific links
} else if (filterLanguage == null && uri.equals("/books")) {
ga_location = "ListPage";
dataModel = createDataModelForListPage(PratilipiType.BOOK, basicMode, displayLanguage, filterLanguage, request);
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
} else if (filterLanguage == null && uri.equals("/stories")) {
ga_location = "ListPage";
dataModel = createDataModelForListPage(PratilipiType.STORY, basicMode, displayLanguage, filterLanguage, request);
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
} else if (filterLanguage == null && uri.equals("/poems")) {
ga_location = "ListPage";
dataModel = createDataModelForListPage(PratilipiType.POEM, basicMode, displayLanguage, filterLanguage, request);
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
} else if (filterLanguage == null && uri.equals("/articles")) {
ga_location = "ListPage";
dataModel = createDataModelForListPage(PratilipiType.ARTICLE, basicMode, displayLanguage, filterLanguage, request);
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
} else if (filterLanguage == null && uri.equals("/magazines")) {
ga_location = "ListPage";
dataModel = createDataModelForListPage(PratilipiType.MAGAZINE, basicMode, displayLanguage, filterLanguage, request);
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
// Gujarati website specific links
} else if (filterLanguage == Language.GUJARATI && uri.equals("/short-stories")) {
ga_location = "ListPage";
dataModel = createDataModelForListPage(PratilipiType.STORY, basicMode, displayLanguage, filterLanguage, request);
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
} else if (filterLanguage == Language.GUJARATI && uri.equals("/poetry")) {
ga_location = "ListPage";
dataModel = createDataModelForListPage(PratilipiType.POEM, basicMode, displayLanguage, filterLanguage, request);
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
} else if (filterLanguage == Language.GUJARATI && uri.equals("/non-fiction")) {
ga_location = "ListPage";
dataModel = createDataModelForListPage(PratilipiType.ARTICLE, basicMode, displayLanguage, filterLanguage, request);
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
// Standard Mode links only
} else if (!basicMode && uri.equals("/pratilipi-write")) {
ga_location = "Writer";
if (request.getQueryString() != null) {
canonicalUrl = canonicalUrl + "?" + request.getQueryString();
alternateUrl = alternateUrl + "?" + request.getQueryString();
}
resourceList.remove(ThirdPartyResource.POLYMER_ELEMENTS.getTag());
resourceList.add(ThirdPartyResource.BOOTSTRAP_CSS.getTag());
resourceList.add(ThirdPartyResource.TINYMCE.getTag());
Long authorId = request.getParameter(RequestParameter.AUTHOR_ID.getName()) != null ? Long.parseLong(request.getParameter(RequestParameter.AUTHOR_ID.getName())) : null;
Long pratilipiId = Long.parseLong(request.getParameter(RequestParameter.CONTENT_ID.getName()));
PratilipiV2Api.GetRequest pratilipiRequest = new PratilipiV2Api.GetRequest();
pratilipiRequest.setPratilipiId(pratilipiId);
PratilipiV2Api.Response pratilipiResponse = ApiRegistry.getApi(PratilipiV2Api.class).get(pratilipiRequest);
PratilipiContentIndexApi.GetRequest indexReq = new PratilipiContentIndexApi.GetRequest();
indexReq.setPratilipiId(pratilipiId);
PratilipiContentIndexApi.Response indexResponse = ApiRegistry.getApi(PratilipiContentIndexApi.class).getIndex(indexReq);
List<TagData> tags = TagDataUtil.getTags(pratilipiResponse.getLanguage(), pratilipiResponse.getType());
dataModel = new HashMap<String, Object>();
dataModel.put("title", SEOTitleUtil.getWritePageTitle(pratilipiId, filterLanguage));
dataModel.put("authorId", authorId);
dataModel.put("pratilipiId", pratilipiId);
dataModel.put("pratilipi", pratilipiResponse);
dataModel.put("pratilipiJson", new Gson().toJson(pratilipiResponse));
dataModel.put("indexJson", new Gson().toJson(indexResponse));
dataModel.put("tags", tags);
String action = request.getParameter("action");
if (action != null)
dataModel.put("action", action);
templateName = "WriterV2.ftl";
// Basic Mode links only
} else if (basicMode && uri.equals("/account")) {
ga_location = "AccountPage";
canonicalUrl = "http://" + UxModeFilter.getWebsite().getMobileHostName() + uri;
dataModel = new HashMap<String, Object>();
dataModel.put("title", "My Account");
templateName = "AccountBasic.ftl";
} else if (basicMode && uri.equals("/navigation")) {
ga_location = "NavigationPage";
canonicalUrl = "http://" + UxModeFilter.getWebsite().getMobileHostName() + uri;
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Menu");
dataModel.put("navigationList", navigationList);
templateName = "NavigationBasic.ftl";
} else if (basicMode && uri.equals("/updatepassword")) {
ga_location = "UpdatePasswordPage";
canonicalUrl = "http://" + UxModeFilter.getWebsite().getMobileHostName() + uri;
dataModel = new HashMap<String, Object>();
if (request.getParameter(RequestParameter.PASSWORD_RESET_EMAIL_EMAIL.getName()) != null && request.getParameter(RequestParameter.PASSWORD_RESET_EMAIL_TOKEN.getName()) != null) {
dataModel.put("passwordResetFromMail", true);
dataModel.put("email", request.getParameter(RequestParameter.PASSWORD_RESET_EMAIL_EMAIL.getName()));
dataModel.put("verificationToken", request.getParameter(RequestParameter.PASSWORD_RESET_EMAIL_TOKEN.getName()));
}
dataModel.put("title", "Update Password");
templateName = "PasswordUpdateBasic.ftl";
} else if (basicMode && uri.equals("/share")) {
ga_location = "SharePage";
canonicalUrl = "http://" + UxModeFilter.getWebsite().getMobileHostName() + uri;
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Share");
templateName = "ShareBasic.ftl";
} else if (uri.equals("/register") && basicMode) {
ga_location = "RegisterPage";
canonicalUrl = "http://" + UxModeFilter.getWebsite().getMobileHostName() + uri;
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Register");
templateName = "RegisterBasic.ftl";
} else if (uri.equals("/login") && basicMode) {
ga_location = "LoginPage";
canonicalUrl = "http://" + UxModeFilter.getWebsite().getMobileHostName() + uri;
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Login");
templateName = "LoginBasic.ftl";
} else if (uri.equals("/forgot-password") && basicMode) {
ga_location = "ForgotPasswordPage";
canonicalUrl = "http://" + UxModeFilter.getWebsite().getMobileHostName() + uri;
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Reset Password");
templateName = "PasswordResetBasic.ftl";
// Internal links - Standard Version only
} else if (!basicMode && uri.startsWith("/admin")) {
ga_location = "AdminPage";
if (uri.equals("/admin")) {
dataModel = new HashMap<>();
dataModel.put("title", "Pratilipi - Admin Access");
templateName = "Admin.ftl";
} else if (uri.equals("/admin/authors")) {
dataModel = createDataModelForAuthorsPage(filterLanguage);
templateName = "AuthorList.ftl";
} else if (uri.equals("/admin/batch-process")) {
dataModel = createDataModelForBatchProcessListPage();
templateName = "BatchProcessList.ftl";
} else if (uri.equals("/admin/email-templates")) {
dataModel = createDataModelForEmailTemplatesPage(filterLanguage);
templateName = "EmailTemplate.ftl";
} else if (uri.equals("/admin/translations")) {
dataModel = new HashMap<>();
templateName = "Translation.ftl";
}
} else if (!basicMode && uri.equals("/edit-event")) {
ga_location = "EditEventPage";
resourceList.add(ThirdPartyResource.CKEDITOR.getTag());
Long eventId = request.getParameter(RequestParameter.CONTENT_ID.getName()) != null ? Long.parseLong(request.getParameter(RequestParameter.CONTENT_ID.getName())) : null;
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Create or Edit Event");
if (eventId != null) {
EventApi.GetRequest eventRequest = new EventApi.GetRequest();
eventRequest.setEventId(eventId);
EventApi.Response eventResponse = ApiRegistry.getApi(EventApi.class).get(eventRequest);
dataModel.put("eventJson", new Gson().toJson(eventResponse));
}
templateName = "EventEdit.ftl";
} else if (!basicMode && uri.equals("/edit-blog")) {
ga_location = "EditBlogPage";
resourceList.add(ThirdPartyResource.CKEDITOR.getTag());
Long blogPostId = request.getParameter(RequestParameter.CONTENT_ID.getName()) != null ? Long.parseLong(request.getParameter(RequestParameter.CONTENT_ID.getName())) : null;
Long blogId = request.getParameter("blogId") != null ? Long.parseLong(request.getParameter("blogId")) : null;
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Create or Edit Blog");
dataModel.put("blogId", blogId);
if (blogPostId != null) {
BlogPostApi.GetRequest blogPostRequest = new BlogPostApi.GetRequest();
blogPostRequest.setBlogPostId(blogPostId);
BlogPostApi.Response blogPostResponse = ApiRegistry.getApi(BlogPostApi.class).get(blogPostRequest);
dataModel.put("blogPostJson", new Gson().toJson(blogPostResponse));
}
templateName = "BlogEdit.ftl";
// Non - hardcoded links
} else if (page != null && page.getType() == PageType.PRATILIPI) {
ga_location = "PratilipiPage";
resourceList.addAll(createFbOpenGraphTags(page.getPrimaryContentId()));
dataModel = createDataModelForPratilipiPage(page.getPrimaryContentId(), filterLanguage, basicMode, request);
templateName = (basicMode ? "PratilipiBasic.ftl" : "Pratilipi.ftl");
} else if (page != null && page.getType() == PageType.AUTHOR) {
ga_location = userData.getAuthor().getId() != null && userData.getAuthor().getId() == page.getPrimaryContentId() ? "UserPage" : "AuthorPage";
dataModel = createDataModelForAuthorPage(page.getPrimaryContentId(), filterLanguage, basicMode, request);
templateName = (basicMode ? "AuthorBasic.ftl" : "Author.ftl");
} else if (page != null && page.getType() == PageType.EVENT) {
ga_location = "EventPage";
dataModel = createDataModelForEventPage(page.getPrimaryContentId(), filterLanguage, basicMode, request);
templateName = (basicMode ? "EventBasic.ftl" : "Event.ftl");
} else if (page != null && page.getType() == PageType.BLOG) {
ga_location = page.getUri().equals("/blog") ? "AllBlogsPage" : "AllAuthorInterviewsPage";
dataModel = createDataModelForBlogPage(page.getPrimaryContentId(), filterLanguage, basicMode);
templateName = (basicMode ? "BlogPostListBasic.ftl" : "BlogPostList.ftl");
} else if (page != null && page.getType() == PageType.BLOG_POST) {
ga_location = page.getUri().startsWith("/blog") ? "BlogPage" : "AuthorInterviewPage";
dataModel = createDataModelForBlogPostPage(page.getPrimaryContentId(), filterLanguage, basicMode);
templateName = (basicMode ? "BlogPostBasic.ftl" : "BlogPost.ftl");
} else if (page != null && page.getType() == PageType.READ) {
ga_location = "Reader";
if (request.getQueryString() != null) {
canonicalUrl = canonicalUrl + "?" + request.getQueryString();
alternateUrl = alternateUrl + "?" + request.getQueryString();
}
Long pratilipiId = Long.parseLong(request.getParameter(RequestParameter.CONTENT_ID.getName()));
String fontSize = AccessTokenFilter.getCookieValue(RequestCookie.FONT_SIZE.getName(), request);
String imageSize = AccessTokenFilter.getCookieValue(RequestCookie.IMAGE_SIZE.getName(), request);
String action = request.getParameter("action") != null ? request.getParameter("action") : "read";
String pageNoPattern = "reader_page_number_" + pratilipiId;
Integer pageNo = null;
if (request.getParameter(RequestParameter.READER_PAGE_NUMBER.getName()) != null)
pageNo = Integer.parseInt(request.getParameter(RequestParameter.READER_PAGE_NUMBER.getName()));
else if (AccessTokenFilter.getCookieValue(pageNoPattern, request) != null)
pageNo = Integer.parseInt(AccessTokenFilter.getCookieValue(pageNoPattern, request));
else
pageNo = 1;
dataModel = createDataModelForReadPage(pratilipiId, pageNo, request.getParameter(RequestParameter.API_VERSION.getName()), filterLanguage, basicMode);
dataModel.put("fontSize", fontSize != null ? Integer.parseInt(fontSize) : 14);
dataModel.put("imageSize", imageSize != null ? Integer.parseInt(imageSize) : 636);
dataModel.put("action", action);
templateName = (basicMode ? "ReadBasic.ftl" : "Read.ftl");
} else if (uri.matches("^/[a-z0-9-]+$") && (dataModel = createDataModelForListPage(uri.substring(1), basicMode, displayLanguage, filterLanguage, request)) != null) {
ga_location = "ListPage";
templateName = (basicMode ? "ListBasic.ftl" : "List.ftl");
} else if (uri.matches("^/[a-z0-9-/]+$") && (dataModel = createDataModelForStaticPage(uri.substring(1).replaceAll("/", "_"), displayLanguage)) != null) {
ga_location = "StaticPage";
templateName = (basicMode ? "StaticBasic.ftl" : "Static.ftl");
} else if (uri.matches("^/[a-z0-9-/]+$") && (dataModel = createDataModelForStaticPage(uri.substring(1).replaceAll("/", "_"), Language.ENGLISH)) != null) {
ga_location = "StaticPage";
templateName = (basicMode ? "StaticBasic.ftl" : "Static.ftl");
} else {
ga_location = "PageNotFound";
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Page Not Found !");
templateName = (basicMode ? "error/PageNotFoundBasic.ftl" : "error/PageNotFound.ftl");
response.setStatus(HttpServletResponse.SC_NOT_FOUND);
}
} catch (InsufficientAccessException e) {
ga_location = "UnauthorisedErrorPage";
resourceList = getResourceList(basicMode);
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Unauthorized Access !");
templateName = (basicMode ? "error/AuthorizationErrorBasic.ftl" : "error/AuthorizationError.ftl");
logger.log(Level.SEVERE, "Unauthorised Exception: ", e);
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
} catch (InvalidArgumentException | UnexpectedServerException e) {
ga_location = "ServerErrorPage";
resourceList = getResourceList(basicMode);
dataModel = new HashMap<String, Object>();
dataModel.put("title", "Server Error !");
templateName = (basicMode ? "error/ServerErrorBasic.ftl" : "error/ServerError.ftl");
logger.log(Level.SEVERE, "Service Unavailable: ", e);
response.setStatus(HttpServletResponse.SC_SERVICE_UNAVAILABLE);
}
// Adding common data to the Data Model
Gson gson = new Gson();
UserV1Api.Response userResponse = new UserV1Api.Response(userData, UserV1Api.class);
Map<PratilipiType, Map<String, String>> pratilipiTypes = new HashMap<>();
for (PratilipiType pratilipiType : PratilipiType.values()) {
Map<String, String> pratilipiTypeMap = new HashMap<>();
pratilipiTypeMap.put("name", I18n.getString(pratilipiType.getStringId(), displayLanguage));
pratilipiTypeMap.put("namePlural", I18n.getString(pratilipiType.getPluralStringId(), displayLanguage));
pratilipiTypes.put(pratilipiType, pratilipiTypeMap);
}
Map<String, String> languageMap = new HashMap<String, String>();
for (Website website : Website.values()) {
if (!website.toString().contains("GAMMA") && !website.toString().contains("DEVO") && !website.toString().contains("ALPHA") && website != Website.ALL_LANGUAGE) {
languageMap.put(website.toString(), website.getFilterLanguage().getName());
}
}
dataModel.put("ga_userId", userData.getId().toString());
dataModel.put("ga_website", UxModeFilter.getWebsite().toString());
dataModel.put("ga_websiteMode", UxModeFilter.isBasicMode() ? "Basic" : "Standard");
dataModel.put("ga_websiteVersion", "Mark-6");
dataModel.put("ga_location", ga_location);
dataModel.put("lang", displayLanguage.getCode());
dataModel.put("language", displayLanguage);
dataModel.put("website_host", UxModeFilter.getWebsite().getHostName());
dataModel.put("website_mobile_host", UxModeFilter.getWebsite().getMobileHostName());
dataModel.put("canonical_url", canonicalUrl);
dataModel.put("alternate_url", alternateUrl);
dataModel.put("languageMap", gson.toJson(languageMap));
dataModel.put("_strings", I18n.getStrings(displayLanguage));
dataModel.put("resourceList", resourceList);
dataModel.put("deferredResourceList", deferredResourceList);
dataModel.put("user", userResponse);
dataModel.put("userJson", gson.toJson(userResponse));
dataModel.put("pratilipiTypesJson", gson.toJson(pratilipiTypes));
dataModel.put("navigationListJson", gson.toJson(navigationList));
dataModel.put("stage", SystemProperty.STAGE);
dataModel.put("basicMode", basicMode);
if (basicMode) {
StringBuffer requestUrl = new StringBuffer(request.getRequestURI());
if (request.getQueryString() != null)
requestUrl.append('?').append(request.getQueryString());
dataModel.put("requestUrl", URLEncoder.encode(requestUrl.toString(), "UTF-8"));
}
// Generating response html
String html = null;
for (int i = 0; i < 2 && html == null; i++) {
try {
dataModel.put("templateName", templateName);
// The magic
html = FreeMarkerUtil.processTemplate(dataModel, templateFilePrefix + "MainTemplate.ftl");
} catch (UnexpectedServerException e) {
logger.log(Level.SEVERE, "Exception occured while processing template.", e);
resourceList = getResourceList(basicMode);
templateName = (basicMode ? "error/ServerErrorBasic.ftl" : "error/ServerError.ftl");
}
}
// Dispatching response
logger.log(Level.INFO, "Website Version : Mark-6");
_dispatchResponse(html, "text/html", "UTF-8", response);
}
use of com.pratilipi.common.type.Language in project pratilipi by Pratilipi.
the class UserEmailApi method post.
@Post
public GenericResponse post(PostRequest request) throws InvalidArgumentException, InsufficientAccessException, UnexpectedServerException {
JsonObject errorMessages = new JsonObject();
if ((request.sendWelcomeMail() || request.sendBirthdayMail()) && request.getUserId() == null)
errorMessages.addProperty("userId", GenericRequest.ERR_USER_ID_REQUIRED);
if (request.sendEmailVerificationMail() && request.getUserId() == null && (request.getEmail() == null || request.getEmail().trim().isEmpty()))
errorMessages.addProperty("email", GenericRequest.ERR_EMAIL_REQUIRED);
if (request.sendPasswordResetMail() && (request.getEmail() == null || request.getEmail().trim().isEmpty()))
errorMessages.addProperty("email", GenericRequest.ERR_EMAIL_REQUIRED);
if (errorMessages.entrySet().size() > 0)
throw new InvalidArgumentException(errorMessages);
Language language = request.getLanguage() == null ? // User facing requests
UxModeFilter.getDisplayLanguage() : // Offline requests
request.getLanguage();
if (request.sendWelcomeMail())
UserDataUtil.sendWelcomeMail(request.getUserId(), language);
if (request.sendEmailVerificationMail()) {
if (request.getUserId() != null)
UserDataUtil.sendEmailVerificationMail(request.getUserId(), language);
else
UserDataUtil.sendEmailVerificationMail(request.getEmail(), language);
}
if (request.sendPasswordResetMail())
UserDataUtil.sendPasswordResetMail(request.getEmail(), language);
if (request.sendBirthdayMail())
throw new InvalidArgumentException("Feature not yet supported !");
return new GenericResponse();
}
use of com.pratilipi.common.type.Language in project pratilipi by Pratilipi.
the class NotificationDataUtil method createNotificationDataList.
public static List<NotificationData> createNotificationDataList(List<Notification> notificationList, Language language, boolean plainText) throws UnexpectedServerException {
// Pre-fetching required User and Pratilipi Entities
List<Long> userIdList = new LinkedList<>();
List<Long> pratilipiIdList = new LinkedList<>();
for (Notification notification : notificationList) {
userIdList.add(notification.getUserId());
if (notification.getType() == NotificationType.PRATILIPI) {
pratilipiIdList.add(notification.getSourceIdLong());
} else if (notification.getType() == NotificationType.PRATILIPI_PUBLISHED_FOLLOWER) {
pratilipiIdList.add(notification.getSourceIdLong());
} else if (notification.getType() == NotificationType.AUTHOR_FOLLOW) {
if (notification.getDataIds().size() <= 3)
userIdList.addAll(notification.getDataIds());
else
userIdList.addAll(notification.getDataIds().subList(notification.getDataIds().size() - 3, notification.getDataIds().size()));
}
}
Map<Long, UserData> users = UserDataUtil.createUserDataList(userIdList, true);
List<PratilipiData> pratilipiDataList = PratilipiDataUtil.createPratilipiDataList(pratilipiIdList, true);
Map<Long, PratilipiData> pratilipis = new HashMap<>(pratilipiDataList.size());
for (PratilipiData pratilipiData : pratilipiDataList) pratilipis.put(pratilipiData.getId(), pratilipiData);
// Creating Notification Data list
List<NotificationData> notificationDataList = new ArrayList<>(notificationList.size());
for (Notification notification : notificationList) {
NotificationData notificationData = new NotificationData(notification.getId());
notificationData.setUserId(notification.getUserId());
Language notificationLanguage = language == null ? users.get(notification.getUserId()).getLanguage() : language;
if (notificationLanguage == null)
notificationLanguage = Language.ENGLISH;
if (notification.getType() == NotificationType.PRATILIPI) {
String createdBy = notification.getCreatedBy();
if (createdBy.startsWith("BATCH_PROCESS::")) {
Long batchProcessId = Long.parseLong(createdBy.substring(15));
BatchProcess batchProcess = DataAccessorFactory.getDataAccessor().getBatchProcess(batchProcessId);
JsonObject execDoc = new Gson().fromJson(batchProcess.getExecDoc(), JsonElement.class).getAsJsonObject();
notificationData.setMessage(execDoc.get("message").getAsString());
}
PratilipiData pratilipiData = pratilipis.get(notification.getSourceIdLong());
notificationData.setSourceUrl(pratilipiData.getPageUrl() + "?" + RequestParameter.NOTIFICATION_ID.getName() + "=" + notification.getId());
notificationData.setSourceImageUrl(pratilipiData.getCoverImageUrl());
} else if (notification.getType() == NotificationType.PRATILIPI_PUBLISHED_FOLLOWER) {
PratilipiData pratilipiData = pratilipis.get(notification.getSourceIdLong());
if (pratilipiData.getState() == PratilipiState.PUBLISHED) {
notificationData.setMessage(createNotificationMessage(pratilipiData, notificationLanguage, plainText));
notificationData.setSourceUrl(pratilipiData.getPageUrl() + "?" + RequestParameter.NOTIFICATION_ID.getName() + "=" + notification.getId());
notificationData.setSourceImageUrl(pratilipiData.getCoverImageUrl());
notificationData.setDisplayImageUrl(pratilipiData.getAuthor().getImageUrl());
}
} else if (notification.getType() == NotificationType.AUTHOR_FOLLOW) {
notificationData.setMessage(createNotificationMessage(notification.getDataIds(), users, notificationLanguage, plainText));
notificationData.setSourceUrl("/followers?" + RequestParameter.NOTIFICATION_ID.getName() + "=" + notification.getId());
if (notification.getDataIds().size() != 0)
notificationData.setDisplayImageUrl(users.get(notification.getDataIds().get(notification.getDataIds().size() - 1)).getProfileImageUrl());
}
notificationData.setSourceId(notification.getSourceId());
notificationData.setState(notification.getState());
notificationData.setNotificationType(notification.getType());
notificationData.setLastUpdatedDate(notification.getLastUpdated());
notificationDataList.add(notificationData);
}
return notificationDataList;
}
use of com.pratilipi.common.type.Language in project pratilipi by Pratilipi.
the class AuthorProcessApi method _validateAuthorData.
private void _validateAuthorData(Long authorId) throws InvalidArgumentException {
DataAccessor dataAccessor = DataAccessorFactory.getDataAccessor();
Author author = dataAccessor.getAuthor(authorId);
Page page = dataAccessor.getPage(PageType.AUTHOR, authorId);
// DELETED Author can not have a Page entity linked.
if (author.getState() == AuthorState.DELETED && page != null)
throw new InvalidArgumentException("DELETED Author has a non-deleted Page entity.");
// Non-DELETED Author must have a page entity linked.
if (author.getState() != AuthorState.DELETED && page == null)
throw new InvalidArgumentException("Page entity is missing for the Author.");
// Pratilipi Entities linked with the Author.
PratilipiFilter pratilipiFilter = new PratilipiFilter();
pratilipiFilter.setAuthorId(authorId);
pratilipiFilter.setState(PratilipiState.PUBLISHED);
List<Pratilipi> pratilipiList = dataAccessor.getPratilipiList(pratilipiFilter, null, null).getDataList();
// DELETED Author cannot have non-DELETED Pratilipi entities linked.
if (author.getState() == AuthorState.DELETED) {
if (pratilipiList.size() != 0)
throw new InvalidArgumentException("DELETED Author has " + pratilipiList.size() + " non-deleted Pratilipi Entities linked.");
return;
}
// Author having Pratilipi entites linked, can not have his/her language set to null.
if (author.getLanguage() == null && pratilipiList.size() != 0)
throw new InvalidArgumentException("Author has " + pratilipiList.size() + " non-deleted Pratilipi Entities linked but his/her language is not set.");
// Count of Pratilipi Entities in each language.
Map<Language, Integer> langCount = new HashMap<>();
for (Pratilipi pratilipi : pratilipiList) {
if (pratilipi.getState() != PratilipiState.PUBLISHED)
continue;
Integer count = langCount.get(pratilipi.getLanguage());
count = count == null ? 1 : count++;
langCount.put(pratilipi.getLanguage(), count);
}
// Author, having Pratilipi entities in just one language, must have the same set as his/her profile language.
if (langCount.keySet().size() == 1) {
Language language = langCount.keySet().iterator().next();
if (langCount.get(language) > 1 && author.getLanguage() != language)
throw new InvalidArgumentException("Author has " + author.getLanguage() + " as his/her profile language but all his/her content pieces are in " + language + ".");
}
// At least one of four name fields must be set.
if (author.getFirstName() == null && author.getLastName() == null && author.getFirstNameEn() == null && author.getLastNameEn() == null)
throw new InvalidArgumentException("Author name is missing.");
// Name fields must not have empty string.
if ((author.getFirstName() != null && author.getFirstName().trim().isEmpty()) || (author.getLastName() != null && author.getLastName().trim().isEmpty()) || (author.getFirstNameEn() != null && author.getFirstNameEn().trim().isEmpty()) || (author.getLastNameEn() != null && author.getLastNameEn().trim().isEmpty()))
throw new InvalidArgumentException("Author name has empty string.");
}
Aggregations