SkylabStudio 0.0.14
dotnet add package SkylabStudio --version 0.0.14
NuGet\Install-Package SkylabStudio -Version 0.0.14
<PackageReference Include="SkylabStudio" Version="0.0.14" />
paket add SkylabStudio --version 0.0.14
#r "nuget: SkylabStudio, 0.0.14"
// Install SkylabStudio as a Cake Addin #addin nuget:?package=SkylabStudio&version=0.0.14 // Install SkylabStudio as a Cake Tool #tool nuget:?package=SkylabStudio&version=0.0.14
Skylab Studio .NET Client
.NET client to interface with Skylab Studio Public API
Installation
$ nuget install SkylabStudio
Example Usage
For all examples, assume:
using SkylabStudio;
var apiClient = new StudioClient("YOUR_SKYLAB_API_TOKEN");
// optional: to configure max concurrent downloads (for when using DownloadAllPhotos method)
// - defaults to 5 concurrent downloads at a time
// optional: to resize oversized images to be below Skylab dimension limit
// - defaults to false
var studioOptions = new StudioOptions { MaxConcurrentDownloads = 5, ResizeImageIfOversized = true };
var apiClient = new StudioClient(Environment.GetEnvironmentVariable("SKYLAB_API_TOKEN"), studioOptions);
// Example Job Processing Flow with Callback
// CREATE PROFILE
dynamic profile = await apiClient.CreateProfile(new { name = $"Test Profile", enable_crop = false, enable_color = true });
// CREATE JOB
var jobName = $"test-job";
dynamic job = await apiClient.CreateJob(new { name = jobName, profile_id = profile.id.Value });
// UPLOAD PHOTO
string filePath = "/path/to/photo";
dynamic res = await apiClient.UploadJobPhoto(filePath, job.id.Value);
// QUEUE JOB
dynamic queuedJob = await apiClient.QueueJob(job.id.Value, new { callback_url = "YOUR_CALLBACK_ENDPOINT" });
// NOTE: Once the job is queued, it will get processed then complete
// We will send a response to the specified callback_url with the output photo download urls
// OPTIONAL: If you want this SDK to handle photo downloads to a specified output folder
// FETCH COMPLETED JOB (wait until job status is completed)
dynamic completedJob = await apiClient.GetJob(queuedJob.id.Value);
// DOWNLOAD COMPLETED JOB PHOTOS
JArray photosList = completedJob.photos;
await apiClient.DownloadAllPhotos(photosList, completedJob.profile, "photos/output/");
Error Handling
By default, the API calls return a JSON (JObject) response object no matter the type of response.
Endpoints
List all jobs
api.ListJobs();
Create job
api.CreateJob(new { name = "Test Job", profileId = 123 });
For all payload options, consult the API documentation.
Get job
api.GetJob(jobId);
Update job
api.UpdateJob(jobId, new { name = "Updated Job Name" });
For all payload options, consult the API documentation.
Queue job
api.QueueJob(jobId, new { callback_url = "http://your.endpoint/"});
Delete job
api.DeleteJob(jobId);
Cancel job
api.CancelJob(jobId);
Jobs in front
Use after queueing job to check number of jobs ahead of yours
api.JobsInFront(jobId);
List all profiles
api.ListProfiles();
Create profile
api.CreateProfile(new { name = $"New Profile", enable_crop = false, enable_color = true });
For all payload options, consult the API documentation.
Get profile
api.GetProfile(profileId);
Update profile
api.UpdateProfile(profileId, new { name = $"Test Profile", enable_crop = false, enable_color = true });
For all payload options, consult the API documentation.
Get photo
api.GetPhoto(photoId);
Upload photo
This function handles validating a photo, creating a photo object and uploading it to your job/profile's s3 bucket.
api.UploadJobPhoto("/path/to/photo", jobId);
OR
// Use the following to upload a background photo for a profile (replace bg enabled)
api.UploadProfilePhoto("/path/to/photo", profileId);
If upload fails, the photo object is deleted for you. If upload succeeds and you later decide you no longer want to include that image, use api.DeletePhoto(photoId) to remove it.
Download photo(s)
This function handles downloading the output photos to a specified directory.
JArray photosList = completedJob.photos;
DownloadAllPhotosResult downloadResults = await apiClient.DownloadAllPhotos(photosList, completedJob.profile, "/output/folder/path");
Console.WriteLine($"Success photos: [{string.Join(", ", downloadResults.SuccessPhotos)}]");
Console.WriteLine($"Erorred photos: [{string.Join(", ", downloadResults.ErroredPhotos)}]");
Output:
Success photos: [1.jpg, 2.jpg, 3.jpg]
Erorred photos: [4.jpg]
OR
api.DownloadPhoto(photoId, "/path/to/photo.jpg"); # accepts full path OR
api.DownloadPhoto(photoId, "/path/to/output/folder"); # accepts directory
Delete photo
This will remove the photo from the job/profile's bucket. Useful for when you've accidentally uploaded an image that you'd like removed.
api.DeletePhoto(photoId);
Validate hmac headers
Applicable if you utilize the job callback url. Use to validate the job payload integrity.
secretKey (string): Obtain from Skylab
jobJson (string): Stringified json object obtained from callback PATCH request
requestTimestamp (string): Obtained from callback PATCH request header 'X-Skylab-Timestamp'
signature (string): Signature generated by Skylab to compare. Obtained from callback PATCH request header 'X-Skylab-Signature'
Returns True or False based on whether or not the signatures match.
api.ValidateHmacHeaders(secretKey, jobJson, requestTimestamp, signature);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net47 is compatible. net471 is compatible. net472 is compatible. net48 is compatible. net481 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
.NETFramework 4.7
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
.NETFramework 4.7.1
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
.NETFramework 4.7.2
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
.NETFramework 4.8
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
.NETFramework 4.8.1
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
.NETStandard 2.1
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
net5.0
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
net6.0
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
-
net7.0
- Microsoft.CSharp (>= 4.7.0)
- NetVips (>= 2.4.0)
- NetVips.Native (>= 8.15.1)
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
- System.Drawing.Common (>= 4.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.0.14 | 83 | 10/7/2024 |
0.0.13 | 109 | 6/21/2024 |
0.0.12 | 110 | 6/17/2024 |
0.0.11 | 142 | 3/12/2024 |
0.0.10 | 126 | 3/8/2024 |
0.0.9 | 136 | 3/2/2024 |
0.0.8 | 126 | 3/1/2024 |
0.0.7 | 125 | 2/29/2024 |
0.0.6 | 140 | 2/23/2024 |
0.0.5 | 128 | 2/21/2024 |
0.0.4 | 123 | 1/31/2024 |
0.0.3 | 190 | 11/9/2023 |
0.0.2 | 151 | 10/27/2023 |
0.0.1 | 126 | 10/26/2023 |