Search in sources :

Example 1 with Stack

use of com.willshex.blogwt.shared.page.Stack in project blogwt by billy1380.

the class NavigationController method addStack.

private void addStack(Stack value) {
    String page = value.getPage();
    PageType stackPage = PageType.fromString(page);
    if (stackPage == null) {
        stackPage = PageType.PageDetailPageType;
    }
    final Stack previous = stack;
    stack = value;
    attachPage(stackPage, new NavigationChangedEvent(previous, stack));
}
Also used : PageType(com.willshex.blogwt.shared.page.PageType) Stack(com.willshex.blogwt.shared.page.Stack) NavigationChangedEvent(com.willshex.blogwt.client.event.NavigationChangedEventHandler.NavigationChangedEvent)

Example 2 with Stack

use of com.willshex.blogwt.shared.page.Stack in project blogwt by billy1380.

the class NavigationController method addPage.

/**
 * @param value
 */
public void addPage(String value) {
    value = (value == null || value.trim().length() == 0 || value.replace("!", "").trim().length() == 0) ? PageController.get().homePageTargetHistoryToken() : value;
    Stack s = Stack.parse(value);
    PageType p = s == null ? null : PageType.fromString(s.getPage());
    if (PropertyController.get().blog() == null && p != PageType.SetupBlogPageType) {
        PageTypeHelper.show(PageType.SetupBlogPageType);
    } else {
        if (PropertyController.get().blog() != null && p == PageType.SetupBlogPageType) {
            PageTypeHelper.show(PageController.get().homePageTargetHistoryToken());
        } else if (p != null && p.requiresLogin() && !SessionController.get().isValidSession()) {
            SessionController.get().logout(PageType.LoginPageType, s.asNextParameter());
        } else if (p != null && !((p.requiresLogin() && !SessionController.get().isAuthorised(p)) || PropertyController.get().isConfigured(p == null ? null : JsonableHelper.values(p.getRequiredProperties())))) {
            lost();
        } else {
            if (intended != null && intended.equals(s.toString())) {
                intended = null;
            }
            addStack(s);
        }
    }
}
Also used : PageType(com.willshex.blogwt.shared.page.PageType) Stack(com.willshex.blogwt.shared.page.Stack)

Example 3 with Stack

use of com.willshex.blogwt.shared.page.Stack in project blogwt by billy1380.

the class GenerateDownloadServlet method processGenerateDownload.

/**
 * @param input
 * @throws InputValidationException
 */
private void processGenerateDownload(GenerateDownloadAction input) throws ServiceException {
    GeneratedDownload generatedDownload = GeneratedDownloadValidator.lookup(input.download, "input.download");
    try {
        generatedDownload.status = GeneratedDownloadStatusType.GeneratedDownloadStatusTypeGenerating;
        GeneratedDownloadServiceProvider.provide().updateGeneratedDownload(generatedDownload);
        Stack stack = Stack.parse(generatedDownload.parameters);
        Filter filter = Filter.fromStack(stack);
        IGenerator generator = DownloadGeneratorProvider.generator(filter.type);
        if (generator == null)
            ApiValidator.throwServiceError(ServiceException.class, ApiError.NoGeneratorFound, filter.type);
        byte[] bytes = generator.generate(generatedDownload, filter);
        if (bytes != null && generatedDownload.parameters.endsWith("send")) {
            GeneratedDownloadHelper.sendEmail(generatedDownload, filter, bytes);
        }
        generatedDownload.status = GeneratedDownloadStatusType.GeneratedDownloadStatusTypeReady;
        generatedDownload.url = "/download?action=download&id=" + generatedDownload.id;
        GeneratedDownloadServiceProvider.provide().updateGeneratedDownload(generatedDownload);
    } catch (Throwable t) {
        generatedDownload.status = GeneratedDownloadStatusType.GeneratedDownloadStatusTypeError;
        GeneratedDownloadServiceProvider.provide().updateGeneratedDownload(generatedDownload);
        throw new RuntimeException(t);
    }
}
Also used : GeneratedDownload(com.willshex.blogwt.shared.api.datatype.GeneratedDownload) ServiceException(com.willshex.gson.web.service.server.ServiceException) Filter(com.willshex.blogwt.shared.page.search.Filter) IGenerator(com.willshex.blogwt.server.background.generatedownload.generator.IGenerator) Stack(com.willshex.blogwt.shared.page.Stack)

Example 4 with Stack

use of com.willshex.blogwt.shared.page.Stack in project blogwt by billy1380.

the class DevServlet method doGet.

/* (non-Javadoc)
	 * 
	 * @see com.willshex.service.ContextAwareServlet#doGet() */
@Override
protected void doGet() throws ServletException, IOException {
    super.doGet();
    String action = REQUEST.get().getParameter("action");
    if (action != null) {
        action = action.toLowerCase();
    }
    if ("gentags".equals(action)) {
        TagServiceProvider.provide().generateTags();
    } else if (action != null && action.startsWith("index")) {
        PageServiceProvider.provide();
        PostServiceProvider.provide();
        UserServiceProvider.provide();
        ((ISearch<?>) ServiceDiscovery.getService("blogwt." + action.replace("index", ""))).indexAll();
    } else if ("clearsearch".equals(action)) {
        PersistenceServiceProvider.provide();
        String name = REQUEST.get().getParameter("index");
        String ids = REQUEST.get().getParameter("ids");
        String[] split = ids.split(",");
        for (String id : split) {
            SearchHelper.deleteSearch(name, id);
        }
    } else if ("linkall".equals(action)) {
        PostServiceProvider.provide().linkAll();
    } else if ("clearlinks".equals(action)) {
        PostServiceProvider.provide().clearLinks();
    } else if ("archiveall".equals(action)) {
        ArchiveEntryServiceProvider.provide().generateArchive();
    } else if ("fixroles".equals(action)) {
        Collection<Role> all = RoleHelper.createAll();
        all.stream().forEach(role -> {
            Role loaded = RoleServiceProvider.provide().getCodeRole(role.code);
            if (loaded == null || loaded.id == null) {
                RoleServiceProvider.provide().addRole(role);
            }
            if (role.permissions != null) {
                role.permissions.stream().forEach(i -> {
                    Permission lp = PermissionServiceProvider.provide().getCodePermission(i.code);
                    if (lp == null) {
                        if (LOG.isLoggable(Level.WARNING)) {
                            LOG.warning("Could not find permission with code [" + i.code + "], might want to run [fixpermissions] action");
                        }
                    } else {
                        if (loaded.permissions == null) {
                            loaded.permissions = new ArrayList<>();
                        }
                        loaded.permissions.add(lp);
                    }
                });
                RoleServiceProvider.provide().updateRole(loaded);
            }
        });
    } else if ("fixpermissions".equals(action)) {
        Collection<Permission> all = PermissionHelper.createAll();
        Permission loaded;
        for (Permission permission : all) {
            loaded = PermissionServiceProvider.provide().getCodePermission(permission.code);
            if (loaded == null || loaded.id == null) {
                PermissionServiceProvider.provide().addPermission(permission);
            }
        }
    } else if ("getposts".equals(action)) {
        RESPONSE.get().getOutputStream().print(JsonUtils.beautifyJson((new GetPostsActionHandler()).handle((GetPostsRequest) new GetPostsRequest().showAll(Boolean.TRUE).pager(PagerHelper.createDefaultPager()).accessCode(ApiValidator.DEV_ACCESS_CODE)).toString()));
    } else if ("staticurl".equals(action)) {
        List<Resource> resources = ResourceServiceProvider.provide().getResources(Integer.valueOf(0), Integer.valueOf(Integer.MAX_VALUE), null, null);
        JsonObject object;
        for (Resource resource : resources) {
            if (resource.properties != null) {
                if (resource.properties.contains(":image")) {
                    resource.properties = resource.properties.replace(":image", ":\"image").replace("}", "\"}");
                }
                object = new JsonParser().parse(resource.properties).getAsJsonObject();
            } else {
                object = new JsonObject();
            }
            if (!object.has("staticUrl") || object.get("staticUrl").getAsString().startsWith("http")) {
                try {
                    object.addProperty("staticUrl", ImagesServiceFactory.getImagesService().getServingUrl(ServingUrlOptions.Builder.withBlobKey(new BlobKey(resource.data.replace("gs://", "")))).replaceFirst("https:\\/\\/", "//").replaceFirst("http:\\/\\/", "//"));
                } catch (Throwable e) {
                    if (LOG.isLoggable(Level.FINE)) {
                        LOG.fine("Could not update resource");
                    }
                }
                resource.properties = object.toString();
                ResourceServiceProvider.provide().updateResource(resource);
            }
        }
    } else if ("fixmetanotifications".equals(action)) {
        List<MetaNotification> metas = MetaNotificationHelper.createAll();
        for (MetaNotification meta : metas) {
            if (MetaNotificationServiceProvider.provide().getCodeMetaNotification(meta.code) == null) {
                meta = MetaNotificationServiceProvider.provide().addMetaNotification(meta);
                LOG.info("added meta notification [" + meta.code + "] with id [" + meta.id + "]");
            } else {
                LOG.info("Meta notification [" + meta.code + "] already exists");
            }
        }
    } else if ("admin".equals(action)) {
        User user = UserServiceProvider.provide().getUsernameUser(REQUEST.get().getParameter("user"));
        UserServiceProvider.provide().addUserRolesAndPermissions(user, Arrays.asList(RoleServiceProvider.provide().getCodeRole(RoleHelper.ADMIN)), null);
    } else if ("genandshowdownload".equals(action)) {
        String idParam = REQUEST.get().getParameter("id");
        Long id = Long.valueOf(idParam);
        GeneratedDownload d = GeneratedDownloadServiceProvider.provide().getGeneratedDownload(id);
        Stack stack = Stack.parse(d.parameters);
        Filter filter = Filter.fromStack(stack);
        switch(filter.type) {
            default:
                break;
        }
    }
}
Also used : GetPostsActionHandler(com.willshex.blogwt.server.api.blog.action.GetPostsActionHandler) User(com.willshex.blogwt.shared.api.datatype.User) GetPostsRequest(com.willshex.blogwt.shared.api.blog.call.GetPostsRequest) Resource(com.willshex.blogwt.shared.api.datatype.Resource) JsonObject(com.google.gson.JsonObject) MetaNotification(com.willshex.blogwt.shared.api.datatype.MetaNotification) Stack(com.willshex.blogwt.shared.page.Stack) Role(com.willshex.blogwt.shared.api.datatype.Role) BlobKey(com.google.appengine.api.blobstore.BlobKey) GeneratedDownload(com.willshex.blogwt.shared.api.datatype.GeneratedDownload) Filter(com.willshex.blogwt.shared.page.search.Filter) Permission(com.willshex.blogwt.shared.api.datatype.Permission) Collection(java.util.Collection) ArrayList(java.util.ArrayList) List(java.util.List) JsonParser(com.google.gson.JsonParser)

Example 5 with Stack

use of com.willshex.blogwt.shared.page.Stack in project blogwt by billy1380.

the class MainServlet method processStaticRequest.

/**
 * @param fragmentParameter
 * @param request
 * @throws IOException
 * @throws FailingHttpStatusCodeException
 */
private void processStaticRequest() throws IOException {
    HttpServletRequest request = REQUEST.get();
    String fragmentParameter = request.getParameter("_escaped_fragment_");
    Stack s = Stack.parse(fragmentParameter);
    PageMarkup p = PageMarkupFactory.createFromStack(s);
    HttpServletResponse response = RESPONSE.get();
    response.setCharacterEncoding(ServletHelper.UTF8);
    response.setHeader("Content-Type", "text/html; charset=" + ServletHelper.UTF8);
    if (p != null) {
        response.getOutputStream().write(p.asString().getBytes());
    }
}
Also used : HttpServletRequest(javax.servlet.http.HttpServletRequest) PageMarkup(com.willshex.blogwt.server.page.PageMarkup) HttpServletResponse(javax.servlet.http.HttpServletResponse) Stack(com.willshex.blogwt.shared.page.Stack)

Aggregations

Stack (com.willshex.blogwt.shared.page.Stack)5 GeneratedDownload (com.willshex.blogwt.shared.api.datatype.GeneratedDownload)2 PageType (com.willshex.blogwt.shared.page.PageType)2 Filter (com.willshex.blogwt.shared.page.search.Filter)2 BlobKey (com.google.appengine.api.blobstore.BlobKey)1 JsonObject (com.google.gson.JsonObject)1 JsonParser (com.google.gson.JsonParser)1 NavigationChangedEvent (com.willshex.blogwt.client.event.NavigationChangedEventHandler.NavigationChangedEvent)1 GetPostsActionHandler (com.willshex.blogwt.server.api.blog.action.GetPostsActionHandler)1 IGenerator (com.willshex.blogwt.server.background.generatedownload.generator.IGenerator)1 PageMarkup (com.willshex.blogwt.server.page.PageMarkup)1 GetPostsRequest (com.willshex.blogwt.shared.api.blog.call.GetPostsRequest)1 MetaNotification (com.willshex.blogwt.shared.api.datatype.MetaNotification)1 Permission (com.willshex.blogwt.shared.api.datatype.Permission)1 Resource (com.willshex.blogwt.shared.api.datatype.Resource)1 Role (com.willshex.blogwt.shared.api.datatype.Role)1 User (com.willshex.blogwt.shared.api.datatype.User)1 ServiceException (com.willshex.gson.web.service.server.ServiceException)1 ArrayList (java.util.ArrayList)1 Collection (java.util.Collection)1