Skip to content

Commit 9a81964

Browse files
committed
Drop deprecated syntax sugar use
1 parent 3326fdc commit 9a81964

File tree

2 files changed

+10
-16
lines changed

2 files changed

+10
-16
lines changed

src/main/scala/gitbucket/gist/controller/GistController.scala

+3-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import gitbucket.core.controller.ControllerBase
88
import gitbucket.core.service.AccountService
99
import gitbucket.core.service.RepositoryService.RepositoryInfo
1010
import gitbucket.core.util._
11-
import gitbucket.core.util.SyntaxSugars._
1211
import gitbucket.core.util.Implicits._
1312
import gitbucket.core.view.helpers._
1413

@@ -194,9 +193,7 @@ trait GistControllerBase extends ControllerBase {
194193
JGitUtil.getCommitLog(git, "master") match {
195194
case Right((revisions, hasNext)) => {
196195
val commits = revisions.map { revision =>
197-
defining(JGitUtil.getRevCommitFromId(git, git.getRepository.resolve(revision.id))){ revCommit =>
198-
(revision, JGitUtil.getDiffs(git, None, revision.id, true, false))
199-
}
196+
(revision, JGitUtil.getDiffs(git, None, revision.id, true, false))
200197
}
201198

202199
val gist = getGist(userName, repoName).get
@@ -228,9 +225,8 @@ trait GistControllerBase extends ControllerBase {
228225

229226
if(gist.mode == "PUBLIC" || context.loginAccount.exists(x => x.isAdmin || x.userName == userName)){
230227
JGitUtil.getFileList(git, revision, ".").find(_.name == fileName).map { file =>
231-
defining(JGitUtil.getContentFromId(git, file.id, false).get){ bytes =>
232-
RawData(FileUtil.getMimeType(file.name, bytes), bytes)
233-
}
228+
val bytes = JGitUtil.getContentFromId(git, file.id, false).get
229+
RawData(FileUtil.getMimeType(file.name, bytes), bytes)
234230
} getOrElse NotFound()
235231
} else Unauthorized()
236232
}

src/main/scala/gitbucket/gist/util/GistAuthenticator.scala

+7-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package gitbucket.gist.util
22

33
import gitbucket.core.controller.ControllerBase
44
import gitbucket.core.service.AccountService
5-
import gitbucket.core.util.SyntaxSugars._
65
import gitbucket.core.util.Implicits._
76

87
/**
@@ -14,14 +13,13 @@ trait GistEditorAuthenticator { self: ControllerBase with AccountService =>
1413

1514
private def authenticate(action: => Any) = {
1615
{
17-
defining(request.paths){ paths =>
18-
if(context.loginAccount.map { loginAccount =>
19-
loginAccount.isAdmin || loginAccount.userName == paths(1) || getGroupsByUserName(loginAccount.userName).contains(paths(1))
20-
}.getOrElse(false)){
21-
action
22-
} else {
23-
Unauthorized()
24-
}
16+
val paths = request.paths
17+
if(context.loginAccount.map { loginAccount =>
18+
loginAccount.isAdmin || loginAccount.userName == paths(1) || getGroupsByUserName(loginAccount.userName).contains(paths(1))
19+
}.getOrElse(false)){
20+
action
21+
} else {
22+
Unauthorized()
2523
}
2624
}
2725
}

0 commit comments

Comments
 (0)