Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sven Franck
jio
Commits
5aed83aa
Commit
5aed83aa
authored
Oct 07, 2017
by
Sven Franck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pass token as query parameter
parent
f7257450
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
17 deletions
+79
-17
src/jio.storage/youtubestorage.js
src/jio.storage/youtubestorage.js
+42
-10
test/jio.storage/youtubestorage.tests.js
test/jio.storage/youtubestorage.tests.js
+37
-7
No files found.
src/jio.storage/youtubestorage.js
View file @
5aed83aa
/**
* Youtube (Data) Storage. Type = "youtube".
*/
/*global jIO, RSVP, UriTemplate, JSON */
/*global jIO, RSVP, UriTemplate, JSON
, Query
*/
/*jslint nomen: true*/
(
function
(
jIO
,
RSVP
,
UriTemplate
,
JSON
)
{
(
function
(
jIO
,
RSVP
,
UriTemplate
,
JSON
,
Query
)
{
"
use strict
"
;
var
GET_URL
=
"
https://www.googleapis.com/youtube/v3/videos?
"
+
...
...
@@ -13,6 +13,22 @@
"
part=snippet{&pageToken}&q={search}&type=video&maxResults=10{&key}
"
,
ALLDOCS_TEMPLATE
=
UriTemplate
.
parse
(
ALLDOCS_URL
);
function
handleError
(
error
,
id
)
{
if
(
error
.
target
&&
error
.
target
.
status
===
404
)
{
throw
new
jIO
.
util
.
jIOError
(
"
Cannot find document:
"
+
id
,
404
);
}
throw
error
;
}
function
getValue
(
query_list
,
key
)
{
var
i
;
for
(
i
=
0
;
i
<
query_list
.
length
;
i
+=
1
)
{
if
(
query_list
[
i
].
key
===
key
)
{
return
query_list
[
i
].
value
;
}
}
}
/**
* The JIO Youtube Storage extension
*
...
...
@@ -53,15 +69,33 @@
};
YoutubeStorage
.
prototype
.
buildQuery
=
function
(
options
)
{
var
key
=
this
.
_api_key
;
var
key
,
query
;
if
(
options
.
query
===
undefined
)
{
throw
new
jIO
.
util
.
jIOError
(
"
query parameter is required
"
,
400
);
}
key
=
this
.
_api_key
;
query
=
Query
.
parseStringToObject
(
options
.
query
);
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
var
token
,
search
;
if
(
query
.
type
===
"
simple
"
)
{
search
=
query
.
value
;
token
=
""
;
}
else
{
search
=
getValue
(
query
.
query_list
,
"
q
"
);
token
=
getValue
(
query
.
query_list
,
"
token
"
);
}
return
jIO
.
util
.
ajax
({
"
type
"
:
"
GET
"
,
"
url
"
:
ALLDOCS_TEMPLATE
.
expand
({
"
search
"
:
options
.
query
,
"
search
"
:
search
,
"
key
"
:
key
,
"
pageToken
"
:
options
.
token
||
""
"
pageToken
"
:
token
})
});
})
...
...
@@ -73,10 +107,8 @@
}
obj
.
items
.
nextPageToken
=
obj
.
nextPageToken
;
return
obj
.
items
;
})
.
push
(
undefined
,
function
(
error
)
{
throw
error
;
});
},
handleError
);
};
YoutubeStorage
.
prototype
.
hasCapacity
=
function
(
name
)
{
...
...
@@ -85,4 +117,4 @@
jIO
.
addStorage
(
'
youtube
'
,
YoutubeStorage
);
}(
jIO
,
RSVP
,
UriTemplate
,
JSON
));
}(
jIO
,
RSVP
,
UriTemplate
,
JSON
,
Query
));
test/jio.storage/youtubestorage.tests.js
View file @
5aed83aa
/*jslint nomen: true */
/*global Blob, sinon, JSON*/
(
function
(
jIO
,
QUnit
,
sinon
,
JSON
)
{
/*global Blob, sinon, JSON
, Query, SimpleQuery, ComplexQuery
*/
(
function
(
jIO
,
QUnit
,
sinon
,
JSON
,
Query
,
SimpleQuery
,
ComplexQuery
)
{
"
use strict
"
;
var
test
=
QUnit
.
test
,
...
...
@@ -42,6 +42,9 @@
function
getItem
(
id
)
{
return
{
"
id
"
:
id
,
"
value
"
:
{}};
}
function
setQuery
(
key
,
value
)
{
return
new
SimpleQuery
({
"
key
"
:
key
,
"
value
"
:
value
,
"
type
"
:
"
simple
"
});
}
function
getResponse
(
item
,
has_token
)
{
var
obj
=
{
"
data
"
:
{
"
rows
"
:
[],
"
total_rows
"
:
1
}};
obj
.
data
.
rows
.
push
(
item
);
...
...
@@ -50,7 +53,6 @@
}
return
obj
;
}
function
error404Tester
(
fun
,
encl
,
blob
)
{
stop
();
expect
(
3
);
...
...
@@ -153,6 +155,23 @@
delete
this
.
server
;
}
});
test
(
"
allDocs without query
"
,
function
()
{
stop
();
expect
(
3
);
this
.
jio
.
allDocs
()
.
fail
(
function
(
error
)
{
ok
(
error
instanceof
jIO
.
util
.
jIOError
);
equal
(
error
.
message
,
"
query parameter is required
"
);
equal
(
error
.
status_code
,
400
);
})
.
fail
(
function
(
error
)
{
ok
(
false
,
error
);
})
.
always
(
function
()
{
start
();
});
});
test
(
"
get all docs
"
,
function
()
{
var
object_result_1
=
getResponse
(
getItem
(
"
0B4kh3jbjOf5LamRlVCYXM
"
)),
...
...
@@ -163,7 +182,7 @@
stop
();
expect
(
7
);
this
.
jio
.
allDocs
()
this
.
jio
.
allDocs
(
{
"
query
"
:
Query
.
objectToSearchText
(
setQuery
(
"
q
"
,
""
))}
)
.
then
(
function
(
res
)
{
equal
(
server
.
requests
.
length
,
1
);
equal
(
server
.
requests
[
0
].
method
,
"
GET
"
);
...
...
@@ -195,8 +214,9 @@
object_result_2
=
getResponse
(
getItem
(
"
0B4kh3jbjOf5LamRlX21MZ
"
,
true
));
context
.
jio
.
allDocs
()
context
.
jio
.
allDocs
(
{
"
query
"
:
Query
.
objectToSearchText
(
setQuery
(
"
q
"
,
""
))}
)
.
then
(
function
(
res
)
{
var
query
;
equal
(
server
.
requests
.
length
,
1
);
equal
(
server
.
requests
[
0
].
method
,
"
GET
"
);
equal
(
server
.
requests
[
0
].
url
,
listUrl
(
""
));
...
...
@@ -205,8 +225,18 @@
equal
(
server
.
requests
[
0
].
responseText
,
getSample
());
deepEqual
(
res
,
object_result_2
);
// build complex query with query and token
query
=
Query
.
objectToSearchText
(
new
ComplexQuery
({
"
operator
"
:
"
AND
"
,
"
type
"
:
"
complex
"
,
"
query_list
"
:
[
setQuery
(
"
q
"
,
""
),
setQuery
(
"
token
"
,
token
)
]
}));
object_result_2
=
getResponse
(
getItem
(
"
0B4kh3jbjOf5LamRlVCYXM
"
));
return
context
.
jio
.
allDocs
({
"
token
"
:
token
});
return
context
.
jio
.
allDocs
({
"
query
"
:
query
});
})
.
then
(
function
(
res
)
{
equal
(
server
.
requests
.
length
,
2
);
...
...
@@ -225,4 +255,4 @@
});
});
}(
jIO
,
QUnit
,
sinon
,
JSON
));
}(
jIO
,
QUnit
,
sinon
,
JSON
,
Query
,
SimpleQuery
,
ComplexQuery
));
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment