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 6985481
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:41:09+00:00 2026-05-27T18:41:09+00:00

Could someone demystify this code which is part of the zentasks example in the

  • 0

Could someone demystify this code which is part of the zentasks example in the Play20 framework. I’m curious how this works, granted I’m new to Scala from Java so a lot of things are tough to wrap my head around.

def IsAuthenticated(f: => String => Request[AnyContent] => Result) = 
  Security.Authenticated(username, onUnauthorized) { user =>
    Action(request => f(user)(request))
  }
  • 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-05-27T18:41:10+00:00Added an answer on May 27, 2026 at 6:41 pm

    You need to split up the signature a bit. f is a function that takes a not-yet-computed string => String and returns another function that accepts a Request[AnyContent] and returns a result.

    The Security.Authenticated call accepts two parameters lists. One that has username and onUnauthorized. The second takes a function accepting the user and returning an action.

    The Action.apply method accepts a function Request[AnyContent] => Result

    so, the f is called in ‘curried’ fashion. That is the first function is called, and then the resulting function is immediately used f(user)(request).

    Here’s the same thing desugared (at least, as best I can) and ugly:

    def isAuthenticated(f: => String => Request[AnyContent] => Result) =
      Security.Authenticated(username, onUnauthorized) { user: String =>
         Action.apply { request: Request[AnyContent] =>
           val hiddenTmp: Request[AnyContent] => Result = f(user)
           hiddenTemp.apply(request)
         }
      }
    

    You can see the compiler is doing a bit of work removing type annotations. Hopefully that helps explain how it desugars into raw scala. Essentially, the function does a lot of functional composition.

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

Sidebar

Related Questions

Could someone help me explain this? I have two snippets of code, one works
Could someone tell me what is wrong with this piece of code? It is
Could someone please take a look at this sloppy code and explain to me
Could someone shed some light on where this code is incorrect please <script> chrome.browserAction.onClicked.addListener(function(window)
Could someone please demystify interfaces for me or point me to some good examples?
Could someone supply some code that would get the xpath of a System.Xml.XmlNode instance?
Could someone please tell me which objects types can be tested using Regular Expressions
Could someone provide an example of how to dynamically create an image in Java,
Could someone help me to convert this rule for nginx? RewriteRule ^([^/]*)/([^/]*)/?$ index.php?a=$1&b=$2 [L,NC]
Could someone tell me which version of MySql is required to use Doctrine2 ?

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.