Manage Google Drive

This commit is contained in:
benweet 2013-03-24 17:46:48 +00:00
parent d046996a12
commit 4b13be2503
7 changed files with 2385 additions and 25 deletions

View File

@ -3,14 +3,19 @@ body {
font-family: sans-serif;
}
#info-filename {
float:right;
}
#wmd-input, #wmd-preview {
position: absolute;
top: 40px;
top: 50px;
}
#wmd-input {
left: 20px;
font-family: "Courier New", Courier, monospace;
resize: none;
}
#wmd-preview {
@ -18,14 +23,8 @@ body {
overflow: auto;
}
#info-filename {
position: absolute;
right: 30px;
}
.wmd-button-row {
position: absolute;
margin:0;
margin: 10px 30px;
top: 10px;
left: 30px;
padding: 0px;
@ -35,8 +34,7 @@ body {
.wmd-spacer {
width: 1px;
height: 20px;
margin-left: 14px;
position: absolute;
margin: 0 7px;
background-color: Silver;
display: inline-block;
list-style: none;
@ -47,7 +45,6 @@ body {
height: 20px;
padding-left: 2px;
padding-right: 3px;
position: absolute;
display: inline-block;
list-style: none;
cursor: pointer;
@ -60,18 +57,7 @@ body {
width: 20px;
height: 20px;
display: inline-block;
}
.wmd-spacer1 {
left: 50px;
}
.wmd-spacer2 {
left: 175px;
}
.wmd-spacer3 {
left: 300px;
border: 1px solid #e3e3e3;
}
.wmd-prompt-background {

BIN
img/stackedit-128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1002 B

BIN
img/stackedit-16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

BIN
img/stackedit-32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 B

BIN
img/stackedit-64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 752 B

View File

@ -7,10 +7,104 @@
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<link href="css/main.css" rel="stylesheet" media="screen">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/Markdown.Converter.js"></script>
<script type="text/javascript" src="js/Markdown.Sanitizer.js"></script>
<script type="text/javascript" src="js/Markdown.Editor.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript">
var CLIENT_ID = '241271498917-jpto9lls9fqnem1e4h6ppds9uob8rpvu.apps.googleusercontent.com';
var SCOPES = 'https://www.googleapis.com/auth/drive';
/**
* Called when the client library is loaded to start the auth flow.
*/
function handleClientLoad() {
window.setTimeout(checkAuth, 1);
}
/**
* Check if the current user has authorized the application.
*/
function checkAuth() {
gapi.auth.authorize({ 'client_id' : CLIENT_ID, 'scope' : SCOPES,
'immediate' : true }, handleAuthResult);
}
/**
* Called when authorization server replies.
*
* @param {Object} authResult Authorization result.
*/
function handleAuthResult(authResult) {
if (authResult && !authResult.error) {
$("#drive-link").hide();
} else {
$("#drive-link").click(function() {
gapi.auth.authorize({ 'client_id' : CLIENT_ID,
'scope' : SCOPES, 'immediate' : false }, handleAuthResult);
});
}
//alert(authResult);
}
/**
* Start the file upload.
*
* @param {Object} evt Arguments from the file selector.
*/
function uploadFile(evt) {
gapi.client.load('drive', 'v2', function() {
var file = evt.target.files[0];
insertFile(file);
});
}
/**
* Insert new file.
*
* @param {File} fileData File object to read data from.
* @param {Function} callback Function to call when the request is complete.
*/
function insertFile(fileData, callback) {
const
boundary = '-------314159265358979323846';
const
delimiter = "\r\n--" + boundary + "\r\n";
const
close_delim = "\r\n--" + boundary + "--";
var reader = new FileReader();
reader.readAsBinaryString(fileData);
reader.onload = function(e) {
var contentType = fileData.type || 'application/octet-stream';
var metadata = { 'title' : fileData.name, 'mimeType' : contentType };
var base64Data = btoa(reader.result);
var multipartRequestBody = delimiter
+ 'Content-Type: application/json\r\n\r\n'
+ JSON.stringify(metadata) + delimiter + 'Content-Type: '
+ contentType + '\r\n'
+ 'Content-Transfer-Encoding: base64\r\n' + '\r\n' + base64Data
+ close_delim;
var request = gapi.client.request({
'path' : '/upload/drive/v2/files',
'method' : 'POST',
'params' : { 'uploadType' : 'multipart' },
'headers' : { 'Content-Type' : 'multipart/mixed; boundary="'
+ boundary + '"' }, 'body' : multipartRequestBody });
if (!callback) {
callback = function(file) {
console.log(file)
};
}
request.execute(callback);
}
}
</script>
<script type="text/javascript"
src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
@ -29,8 +123,20 @@
</script>
</head>
<body>
<div id="wmd-button-bar"></div>
<h4 id="info-filename"></h4>
<div id="navbar" class="navbar navbar-fixed-top">
<div class="navbar-inner">
<a id="wmd-button-bar" class="nav"></a>
<ul class="nav pull-right">
<li class="divider-vertical"></li>
<li id="menu" class="dropdown"><a class="dropdown-toggle"
data-toggle="dropdown" href="#"><img src="img/stackedit-16.png"/> Menu</a>
<ul class="dropdown-menu">
<li><a id="drive-link" href="javascript:void(0);">Link with Google Drive</a></li>
</ul></li>
</ul>
<a class="brand pull-right" id="info-filename"></a>
</div>
</div>
<textarea id="wmd-input"></textarea>
<div id="wmd-preview" class="well"></div>
</body>

2268
js/bootstrap.js vendored Normal file

File diff suppressed because it is too large Load Diff