shadertoy_client
A Shadertoy API HTTP client implementation
Introduction
This package implements the client APIs defined in the shadertoy_api package providing access to the Shadertoy REST and Site APIs.
Capabilities
The following clients are provided:
WS Client
Find shader
by idFind shaders
by a list of id'sQuery shaders
by term, tags and sort them by name, likes, views, newness and by hotness (proportional to popularity and inversely proportional to lifetime). All the query results are paginated through thefrom
andnum
parametersFind all shader ids
Query shader ids
by term, tags and sort them by name, likes, views, newness and by hotness (proportional to popularity and inversely proportional to lifetime). All the query results are paginated through thefrom
andnum
parameters
Site Client
All the WS client features plus the following:
Login
Logout
Find user by id
Query shaders by user id
, tags and sort them by name, likes, views, newness and by hotness (proportional to popularity and inversely proportional to lifetime). All the query results are paginated through thefrom
andnum
parametersQuery shaders by user id
, tags and sort them by name, likes, views, newness and by hotness (proportional to popularity and inversely proportional to lifetime). All the query results are paginated through thefrom
andnum
parametersFind all shader ids by user id
Find comments
by shader idFind playlist
by id.Query shaders by playlist id
. All the query results are paginated through thefrom
andnum
parametersQuery shader ids by playlist id
. All the query results are paginated through thefrom
andnum
parametersDownload preview
, i.e. the the shader thumbnailsDownload media
, any other media provided by the Shadertoy website
Hybrid Client
All the WS and site client features but optionally constraining the requests to shaders with public+api privacy settings.
Getting Started
Add this to your pubspec.yaml
(or create it):
dependencies:
shadertoy_client: ^1.0.12
Run the following command to install dependencies:
pub get
Finally, to start developing import the library:
import 'package:shadertoy_client/shadertoy_client.dart';
Usage
You can use this library with one of the following classes:
ShadertoyWSClient
, for the REST API. This client can only provide shaders made available with thepublic+api
privacy settingsShadertoySiteClient
for the Site API. This client provides all the shaders currently available in the Shadertoy websiteShadertoyHybridClient
, which allows the user to constrain the requests to shaders withpublic+api
privacy settings while complementing the base REST API with some additional operations only available in the Site API.
ShadertoyWSClient
Note: replace
apiKey
with the API key obtained in your user apps page
Find shader by id
final apiKey = '<apiKey>';
final client = newShadertoyWSClient(apiKey);
final fsr = await client.findShaderById('3lsSzf');
if (fsr.ok) {
print('${fsr?.shader?.info?.id}');
print('\tName: ${fsr?.shader?.info?.name}');
print('\tUserName: ${fsr?.shader?.info?.userId}');
print('\tDate: ${fsr?.shader?.info?.date}');
print('\tDescription: ${fsr?.shader?.info?.description}');
print('\tViews: ${fsr?.shader?.info?.views}');
print('\tLikes: ${fsr?.shader?.info?.likes}');
print('\tPublish Status: ${fsr?.shader?.info?.publishStatus.toString().split('.').last}');
print('\tTags: ${fsr?.shader?.info?.tags?.join(',')}');
print('\tFlags: ${fsr?.shader?.info?.flags}');
print('\tLiked: ${fsr?.shader?.info?.hasLiked}');
print('\tRender Passes: ${fsr?.shader?.renderPasses?.length}');
fsr?.shader?.renderPasses?.forEach((rp) => print('\t\t${rp?.name} has ${rp?.inputs?.length} input(s) and ${rp?.outputs?.length} output(s)'));
} else {
print('Error: ${fsr.error.message}');
}
Output:
3lsSzf
Name: Happy Jumping
UserName: iq
Date: 2019-07-25 00:49:38.000
Description: A happy and blobby creature jumping. It gets off-model very often, but it looks good enough. Making of and related math/shader/art explanations (6 hours long): [url]https://www.youtube.com/watch?v=Cfe5UQ-1L9Q[/url].
Views: 40436
Likes: 358
Publish Status: public_api
Tags: procedural,3d,raymarching,sdf,animation
Flags: 0
Liked: false
Render Passes: 1
Image has 0 input(s) and 1 output(s)
term
:
Query shaders by final apiKey = '<apiKey>';
final client = newShadertoyWSClient(apiKey);
final fsr = await ws.findShaders(term: 'elevated');
if (fsr.ok) {
print('${fsr.total} shader id(s) found');
response?.shaders?.forEach((sh) {
print('${sh?.shader?.info?.name}');
});
} else {
print('Error: ${fsr.error.message}');
}
and the output, with the returned shader id's matching the term
:
10 shader id(s) found
MdX3Rr
MdBGzG
lslBz7
MtK3Wc
XlXGzS
XdKGW1
ltd3Wl
4sdXD4
MsfcR8
XltSWH
ShadertoySiteClient
Find a shader by id using a anonymous site client
final site = newShadertoySiteClient();
final fsr = await site.findShaderById('3lsSzf');
if (fsr.ok) {
print('${fsr?.shader?.info?.id}');
print('\tName: ${fsr?.shader?.info?.name}');
print('\tUserName: ${fsr?.shader?.info?.userId}');
print('\tDate: ${fsr?.shader?.info?.date}');
print('\tDescription: ${fsr?.shader?.info?.description}');
print('\tViews: ${fsr?.shader?.info?.views}');
print('\tLikes: ${fsr?.shader?.info?.likes}');
print('\tPublish Status: ${fsr?.shader?.info?.publishStatus.toString().split('.').last}');
print('\tTags: ${fsr?.shader?.info?.tags?.join(',')}');
print('\tFlags: ${fsr?.shader?.info?.flags}');
print('\tLiked: ${fsr?.shader?.info?.hasLiked}');
print('\tRender Passes: ${fsr?.shader?.renderPasses?.length}');
sr?.shader?.renderPasses?.forEach((rp) => print('\t\t${rp?.name} has ${rp?.inputs?.length} input(s) and ${rp?.outputs?.length} output(s)'));
} else {
print('Error: ${fsr.error.message}');
}
Output:
3lsSzf
Name: Happy Jumping
UserName: iq
Date: 2019-07-25 00:49:38.000
Description: A happy and blobby creature jumping. It gets off-model very often, but it looks good enough. Making of and related math/shader/art explanations (6 hours long): [url]https://www.youtube.com/watch?v=Cfe5UQ-1L9Q[/url].
Views: 40700
Likes: 358
Publish Status: public_api
Tags: procedural,3d,raymarching,sdf,animation
Flags: 0
Liked: false
Render Passes: 1
Image has 0 input(s) and 1 output(s)
Anonymous usage of the site client versus logged in usage
Note: replace
user
andpassword
, with the user credentials, where applicable
final site = newShadertoySiteClient(user: '<user>', password: '<password>');
print('Anonymous');
final fsr = await site.findShaderById('3lsSzf');
print('${fsr?.shader?.info?.id}');
print('\tName: ${fsr?.shader?.info?.name}');
print('\tLiked: ${fsr?.shader?.info?.hasLiked}');
await site.login();
print('Logged In');
site.cookies.forEach((c) => print('${c.name}=${c.value}'));
fsr = await client.findShaderById('3lsSzf');
print('${fsr?.shader?.info?.id}');
print('\tName: ${fsr?.shader?.info?.name}');
print('\tLiked: ${fsr?.shader?.info?.hasLiked}');
Notice that the liked flag flips from false
to true
after the login
Anonymous
3lsSzf
Name: Happy Jumping
Liked: false
Logged In
sdtd=ed42bec0ab3f881fa7f180f1346dd6f9
3lsSzf
Name: Happy Jumping
Liked: true
Find shader comments
final site = newShadertoySiteClient();
final fcr = await site.findCommentsByShaderId('MdX3Rr');
if (fcr.ok) {
print('${fcr?.total} comment(s)');
} else {
print('Error: ${fcr.error.message}');
}
Output:
30 comment(s)
Find a user by id
final site = newShadertoySiteClient();
final fur = await site.findUserById('iq');
if (fur.ok) {
print('${fur?.user?.id}');
print('Name: ${fur?.user?.picture}');
print('Member Since: ${fur?.user?.memberSince}');
print('Shaders: ${fur?.user?.shaders}');
print('Comments: ${fur?.user?.comments}');
print('About:');
print('${fur?.user?.about}');
} else {
print('Error: ${fur.error.message}');
}
Output:
iq
Name: /media/users/iq/profile.png
Member Since: 2013-01-11 00:00:00.000
Shaders: 451
Comments: 4864
About:
*[url]http://www.iquilezles.org[/url]
*[url]https://www.patreon.com/inigoquilez[/url]
*[url]https://www.youtube.com/c/InigoQuilez[/url]
*[url]https://www.facebook.com/inigo.quilez.art[/url]
*[url]https://twitter.com/iquilezles[/url]
Find playlist by id
final site = newShadertoySiteClient();
final fpr = await site.findPlaylistById('week');
if (fcr.ok) {
print('${fpr?.playlist?.name}');
print('${fpr?.playlist?.count} shader id(s)');
fpr.playlist?.shaders?.forEach((shader) => print('$shader'));
} else {
print('Error: ${fpr.error.message}');
}
Output:
Shaders of the Week
339 shader id(s)
ttXGWH
ttlGR4
tsKXR3
WtsGzB
WtfGWn
3ddGzn
...
ShadertoyHybridClient
Note: replace
apiKey
with the API key obtained in your user apps page
term
and obtain the shader comments
Find shader by final hybrid = newShadertoyHybridClient(apiKey: '<apiKey>');
final fsr = await hybrid.findShaders(term: 'Happy Jumping');
if (fsr.ok) {
if (fsr.shaders.isNotEmpty) {
var fsc = await hybrid.findCommentsByShaderId(fsr?.shaders?.first?.shader?.info?.id);
if (fsc.ok) {
print('Found ${fsc.comments.length} comments');
} else {
print('Error retrieving shader comments');
}
} else {
print('Shader not found');
}
} else {
print('Error: ${fsr.error.message}');
}
Output:
3lsSzf
Name: Happy Jumping
Found 62 comments
Contributing
This a unofficial Shadertoy client library. It is developed by best effort, in the motto of "Scratch your own itch!", meaning APIs that are meaningful for the author use cases.
If you would like to contribute with other parts of the API, feel free to make a Github pull request as I'm always looking for contributions for:
- Tests
- Documentation
- New APIs
Features and Bugs
Please file feature requests and bugs at the issue tracker.
License
This project is licensed under the MIT License - see the LICENSE file for details