-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
157 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
#I __SOURCE_DIRECTORY__ | ||
#I @"../../../../../packages/Octokit/lib/net45" | ||
#I @"../../../../../../packages/build/Octokit/lib/net45" | ||
#r "Octokit.dll" | ||
|
||
open Octokit | ||
open System | ||
open System.IO | ||
|
||
type Draft = | ||
{ Client : GitHubClient | ||
Owner : string | ||
Project : string | ||
DraftRelease : Release } | ||
|
||
let private isRunningOnMono = System.Type.GetType ("Mono.Runtime") <> null | ||
|
||
/// A version of 'reraise' that can work inside computation expressions | ||
let private captureAndReraise ex = | ||
System.Runtime.ExceptionServices.ExceptionDispatchInfo.Capture(ex).Throw() | ||
Unchecked.defaultof<_> | ||
|
||
/// Retry the Octokit action count times | ||
let rec private retry count asyncF = | ||
// This retry logic causes an exception on Mono: | ||
// https://github.com/fsharp/fsharp/issues/440 | ||
if isRunningOnMono then | ||
asyncF | ||
else | ||
async { | ||
try | ||
return! asyncF | ||
with ex -> | ||
return! | ||
match (ex, ex.InnerException) with | ||
| (:? AggregateException, (:? AuthorizationException as ex)) -> captureAndReraise ex | ||
| _ when count > 0 -> retry (count - 1) asyncF | ||
| (ex, _) -> captureAndReraise ex | ||
} | ||
|
||
/// Retry the Octokit action count times after input succeed | ||
let private retryWithArg count input asycnF = | ||
async { | ||
let! choice = input |> Async.Catch | ||
match choice with | ||
| Choice1Of2 input' -> | ||
return! (asycnF input') |> retry count | ||
| Choice2Of2 ex -> | ||
return captureAndReraise ex | ||
} | ||
|
||
let createClient user password = | ||
async { | ||
let github = new GitHubClient(new ProductHeaderValue("FAKE")) | ||
github.Credentials <- Credentials(user, password) | ||
return github | ||
} | ||
|
||
let createClientWithToken token = | ||
async { | ||
let github = new GitHubClient(new ProductHeaderValue("FAKE")) | ||
github.Credentials <- Credentials(token) | ||
return github | ||
} | ||
|
||
let private makeRelease draft owner project version prerelease (notes:seq<string>) (client : Async<GitHubClient>) = | ||
retryWithArg 5 client <| fun client' -> async { | ||
let data = new NewRelease(version) | ||
data.Name <- version | ||
data.Body <- String.Join(Environment.NewLine, notes) | ||
data.Draft <- draft | ||
data.Prerelease <- prerelease | ||
let! draft = Async.AwaitTask <| client'.Release.Create(owner, project, data) | ||
let draftWord = if data.Draft then " draft" else "" | ||
printfn "Created%s release id %d" draftWord draft.Id | ||
return { | ||
Client = client' | ||
Owner = owner | ||
Project = project | ||
DraftRelease = draft } | ||
} | ||
|
||
let createDraft owner project version prerelease notes client = makeRelease true owner project version prerelease notes client | ||
let createRelease owner project version prerelease notes client = makeRelease false owner project version prerelease notes client | ||
|
||
let uploadFile fileName (draft : Async<Draft>) = | ||
retryWithArg 5 draft <| fun draft' -> async { | ||
let fi = FileInfo(fileName) | ||
let archiveContents = File.OpenRead(fi.FullName) | ||
let assetUpload = new ReleaseAssetUpload(fi.Name,"application/octet-stream",archiveContents,Nullable<TimeSpan>()) | ||
let! asset = Async.AwaitTask <| draft'.Client.Release.UploadAsset(draft'.DraftRelease, assetUpload) | ||
printfn "Uploaded %s" asset.Name | ||
return draft' | ||
} | ||
|
||
let releaseDraft (draft : Async<Draft>) = | ||
retryWithArg 5 draft <| fun draft' -> async { | ||
let update = draft'.DraftRelease.ToUpdate() | ||
update.Draft <- Nullable<bool>(false) | ||
let! released = Async.AwaitTask <| draft'.Client.Release.Edit(draft'.Owner, draft'.Project, draft'.DraftRelease.Id, update) | ||
printfn "Released %d on github" released.Id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
752592c55d7f9e2b7a10f1782cb4128703d7a7d3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,21 @@ | ||
NUGET | ||
remote: https://nuget.org/api/v2 | ||
specs: | ||
FAKE (4.0.0) | ||
FAKE (4.9.3) | ||
FunScript (1.1.94) | ||
Microsoft.Bcl (1.1.10) | ||
Microsoft.Bcl.Build (>= 1.0.14) | ||
Microsoft.Bcl.Build (1.0.21) - import_targets: false | ||
Microsoft.Net.Http (2.2.29) | ||
Microsoft.Bcl (>= 1.1.10) | ||
Microsoft.Bcl.Build (>= 1.0.14) | ||
Node.js (4.0.0) | ||
Npm.js (2.13.1.0) | ||
Npm.js (2.13.1) | ||
Node.js (>= 0.12.7) | ||
Octokit (0.16.0) | ||
Microsoft.Net.Http | ||
GITHUB | ||
remote: fsharp/FAKE | ||
specs: | ||
modules/Octokit/Octokit.fsx (752592c55d7f9e2b7a10f1782cb4128703d7a7d3) | ||
Octokit |