Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SessionMiddleWare Configuration #251

Merged
merged 6 commits into from
Mar 21, 2025

Conversation

ElijahAhianyo
Copy link
Contributor

@ElijahAhianyo ElijahAhianyo commented Mar 20, 2025

This PR fixes a bug as described in #247. It introduces a Session middleware configuration where users can now set session config values either in the toml file or using the API. For config knobs supported upstream, this PR goes for an initial best effort of implementing only the secure config knob. Others will definitely be added later.

for toml files, it will typically look like this:

secret_key="a-secret-msg"

[middlewares]
live_load.enable = true
# add session configs here
[middlewares.session]
secure = false

using the API:

struct AdminProject;

impl Project for AdminProject {
   ...

    fn config(&self, _config_name: &str) -> cot::Result<ProjectConfig> {
        Ok(ProjectConfig::builder()
            .debug(true)
            .middlewares(
                MiddlewareConfig::builder()
                    .session(SessionMiddlewareConfig::builder().secure(false).build())
                    .build(),
            )
            .build())
    }

    ...

    fn middlewares(
        &self,
        handler: cot::project::RootHandlerBuilder,
        context: &ProjectContext<WithApps>,
    ) -> BoxedHandler {
        handler
            // call `::from_context` to use config values
            .middleware(SessionMiddleware::from_context(context))
            .build()
    }
}

@github-actions github-actions bot added the C-lib Crate: cot (main library crate) label Mar 20, 2025
@seqre seqre linked an issue Mar 20, 2025 that may be closed by this pull request
Copy link
Member

@seqre seqre left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your contribution! Overall it looks great, I just have a single suggestion. Please make secure to be true by default, but modify cot-cli/src/project_template/config/dev.toml and set it to false there in the config template. This way we keep Cot secure by default and keep development easy.

Also, it'd be great if you could write a few additional tests to bump up the coverage.

Once you make those changes, please make the PR ready for review and we'll give our final comments!

Copy link

codecov bot commented Mar 21, 2025

Codecov Report

Attention: Patch coverage is 85.71429% with 4 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
cot/src/middleware.rs 66.66% 4 Missing ⚠️
Flag Coverage Δ
rust 80.84% <85.71%> (+0.05%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
cot/src/config.rs 87.64% <100.00%> (+1.22%) ⬆️
cot/src/middleware.rs 58.13% <66.66%> (+6.85%) ⬆️
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@github-actions github-actions bot added the C-cli Crate: cot-cli (issues and Pull Requests related to Cot CLI) label Mar 21, 2025
@ElijahAhianyo ElijahAhianyo changed the title [WIP]Add SessionMiddleWare Configuration Add SessionMiddleWare Configuration Mar 21, 2025
@ElijahAhianyo ElijahAhianyo marked this pull request as ready for review March 21, 2025 18:40
@ElijahAhianyo ElijahAhianyo requested a review from seqre March 21, 2025 18:41
Copy link
Member

@m4tx m4tx left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change looks good, thank you a lot for confirming the issue and for the fix!

Copy link
Member

@seqre seqre left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work and once again thank you for your contribution! If you want to work on SessionMiddleware supporting different stores, please take a crack at it in a separate PR ;)

@seqre seqre merged commit 96a6661 into cot-rs:master Mar 21, 2025
21 checks passed
@cotbot cotbot bot mentioned this pull request Mar 21, 2025
@ElijahAhianyo
Copy link
Contributor Author

Great work and once again thank you for your contribution! If you want to work on SessionMiddleware supporting different stores, please take a crack at it in a separate PR ;)

yes, definitely, would like to take up the admin issues and if no one gets to it before I do, I'd be happy to look into it :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-cli Crate: cot-cli (issues and Pull Requests related to Cot CLI) C-lib Crate: cot (main library crate)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Admin panel login page doesn't work on WebKit (Safari, GNOME Web)
3 participants