Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8267117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T05:24:03+00:00 2026-06-08T05:24:03+00:00

Moin, I wrote an app with help of play framework. Now I have a

  • 0

Moin,

I wrote an app with help of play framework. Now I have a main template which should be used for every request. In this template I have links routing to login form and logout method. Of course only users that are logged out should see the login form and so on. Does anybody know how to implement that without writing every action two times?

Thanks from northern Germany!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T05:24:06+00:00Added an answer on June 8, 2026 at 5:24 am

    I put a gist up on securing actions, which could be of use to you.

    Controllers extending the SecureableController trait have:

    implicit def user(implicit request : RequestHeader) : Option[User] = {  
      // substitute in your own user lookup mechanism here
      session.get("email").flatMap(User.findOne(_))
    }
    

    which allows you to get the user via implicit parameters in views you route to from that controller by specifying:

    @ ... other parameters ... (implicit user: Option[User] = None)
    

    on each of your views. (Haven’t got a way around that particular boilerplate yet.)

    I then have something like this in my menu:

       @user match {
          case Some(u) => {
            @defining(u.givenName + " " + u.familyName) { profileName =>
          <li class="dropdown"><a href="#user" class="dropdown-toggle" data-toggle="dropdown">@profileName<b class="caret"></b></a>
            }
            <ul class="dropdown-menu">
              @defining("/profile/"+u.email) { profileUrl =>
              <li><a href="@profileUrl">Profile</a></li>                
              <li><a href="@routes.Users.logout">Logout</a></li>                
              }
            </ul>      
          </li>      
          }
          case None => {
          <li>            
            <a href="@routes.Users.login">Login</a>
          </li>
          }
        }       
    

    It gives a bootstrap dropdown linking to the Profile page and Logout for a logged in user, and a Login link in place if there is no logged in user.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to try out the Google App Engine Python environment, which the
I have a simple collection which I'm looping through like this: foreach (MyObject mo
Moin! I have a situation where I try to display an error message using
I have written a decoupled WMI provider in .NET 4, which has been working
Moin, i stumbled upon a inconsistency in ActiveRecord. I tried to get all used
So according to the optimization tips at http://wiki.python.org/moin/PythonSpeed/PerformanceTips , joining strings should be done
Moin! using (ZipFile zip = new ZipFile()) { // add this map file into
I have a file dk.po and dk.mo in folder lang in my webdir. How
moin-moin, I know, I am the only living person, still writing software for OS/2,
I use in my iPhone application a very big database. An index is used

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.