Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
officejs
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
nexedi
officejs
Commits
a0b4d3f0
Commit
a0b4d3f0
authored
Jul 31, 2012
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating Crypt Storage
parent
c40c23d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
54 deletions
+55
-54
OfficeJS/src/jio.storage/cryptstorage.js
OfficeJS/src/jio.storage/cryptstorage.js
+55
-54
No files found.
OfficeJS/src/jio.storage/cryptstorage.js
View file @
a0b4d3f0
...
...
@@ -64,7 +64,7 @@ var newCryptedStorage = function ( spec, my ) {
message
:
'
Unable to decrypt.
'
});
return
;
}
callback
(
tmp
);
callback
(
undefined
,
tmp
);
};
priv
.
newAsyncModule
=
function
()
{
...
...
@@ -113,9 +113,8 @@ var newCryptedStorage = function ( spec, my ) {
};
o
.
save
=
function
()
{
var
settings
=
command
.
cloneOption
(),
newcommand
;
settings
.
onResponse
=
function
(){};
settings
.
onDone
=
function
()
{
that
.
done
();
};
settings
.
onFail
=
function
(
r
)
{
that
.
fail
(
r
);
};
settings
.
success
=
function
()
{
that
.
success
();
};
settings
.
error
=
function
(
r
)
{
that
.
error
(
r
);
};
newcommand
=
that
.
newCommand
(
'
saveDocument
'
,
{
path
:
new_file_name
,
content
:
new_file_content
,
option
:
settings
});
...
...
@@ -142,39 +141,37 @@ var newCryptedStorage = function ( spec, my ) {
};
o
.
loadDocument
=
function
()
{
var
settings
=
command
.
cloneOption
(),
newcommand
;
settings
.
onResponse
=
function
(){};
settings
.
onFail
=
o
.
loadOnFail
;
settings
.
onDone
=
o
.
loadOnDone
;
settings
.
error
=
o
.
loadOnError
;
settings
.
success
=
o
.
loadOnSuccess
;
newcommand
=
that
.
newCommand
(
'
loadDocument
'
,
{
path
:
new_file_name
,
option
:
settings
});
that
.
addJob
(
that
.
newStorage
(
priv
.
secondstorage_spec
),
newcommand
);
};
o
.
loadOn
Done
=
function
(
result
)
{
o
.
loadOn
Success
=
function
(
result
)
{
result
.
name
=
command
.
getPath
();
if
(
command
.
getOption
(
'
metadata_only
'
))
{
that
.
done
(
result
);
that
.
success
(
result
);
}
else
{
priv
.
decrypt
(
result
.
content
,
function
(
res
){
if
(
typeof
res
===
'
object
'
)
{
that
.
fail
({
status
:
0
,
statusText
:
'
Decrypt Fail
'
,
message
:
'
Unable to decrypt
'
});
priv
.
decrypt
(
result
.
content
,
function
(
err
,
res
){
if
(
err
)
{
that
.
error
(
err
);
}
else
{
result
.
content
=
res
;
// content only: the second storage should
// manage content_only option, so it is not
// necessary to manage it.
that
.
done
(
result
);
that
.
success
(
result
);
}
});
}
};
o
.
loadOn
Fail
=
function
(
error
)
{
o
.
loadOn
Error
=
function
(
error
)
{
// NOTE : we can re create an error object instead of
// keep the old ex:status=404,message="document 1y59gyl8g
// not found in localStorage"...
that
.
fail
(
error
);
that
.
error
(
error
);
};
am
.
call
(
o
,
'
encryptFilePath
'
);
};
// end loadDocument
...
...
@@ -186,51 +183,57 @@ var newCryptedStorage = function ( spec, my ) {
that
.
getDocumentList
=
function
(
command
)
{
var
result_array
=
[],
am
=
priv
.
newAsyncModule
(),
o
=
{};
o
.
getDocumentList
=
function
()
{
var
newcommand
=
command
.
clone
();
newcommand
.
onResponseDo
(
function
(){});
newcommand
.
onDoneDo
(
o
.
getListOnDone
);
newcommand
.
onFailDo
(
o
.
getListOnFail
);
var
settings
=
command
.
cloneOption
();
settings
.
success
=
o
.
getListOnSuccess
;
settings
.
error
=
o
.
getListOnError
;
that
.
addJob
(
that
.
newStorage
(
priv
.
secondstorage_spec
),
newcommand
);
that
.
newStorage
(
priv
.
secondstorage_spec
),
that
.
newCommand
(
'
getDocumentList
'
,
{
path
:
command
.
getPath
(),
option
:
settings
})
);
};
o
.
getListOn
Done
=
function
(
result
)
{
o
.
getListOn
Success
=
function
(
result
)
{
result_array
=
result
;
var
i
,
fun
=
function
()
{
var
c
=
i
;
priv
.
decrypt
(
result
[
c
].
name
,
function
(
res
)
{
am
.
call
(
o
,
'
pushResult
'
,[
res
,
c
,
'
name
'
]);
var
i
,
decrypt
=
function
(
c
)
{
priv
.
decrypt
(
result_array
[
c
].
name
,
function
(
err
,
res
)
{
if
(
err
)
{
am
.
call
(
o
,
'
error
'
,[
err
]);
}
else
{
am
.
call
(
o
,
'
pushResult
'
,[
res
,
c
,
'
name
'
]);
}
});
if
(
!
command
.
getOption
(
'
metadata_only
'
))
{
priv
.
decrypt
(
result
[
c
].
content
,
function
(
res
)
{
am
.
call
(
o
,
'
pushResult
'
,[
res
,
c
,
'
content
'
]);
priv
.
decrypt
(
result_array
[
c
].
content
,
function
(
err
,
res
)
{
if
(
err
)
{
am
.
call
(
o
,
'
error
'
,[
err
]);
}
else
{
am
.
call
(
o
,
'
pushResult
'
,[
res
,
c
,
'
content
'
]);
}
});
}
};
if
(
command
.
getOption
(
'
metadata_only
'
))
{
am
.
wait
(
o
,
'
done
'
,
result
.
length
-
1
);
am
.
wait
(
o
,
'
success
'
,
result
.
length
-
1
);
}
else
{
am
.
wait
(
o
,
'
done
'
,
result
.
length
*
2
-
1
);
am
.
wait
(
o
,
'
success
'
,
result
.
length
*
2
-
1
);
}
for
(
i
=
0
;
i
<
result_array
.
length
;
i
+=
1
)
{
decrypt
(
i
);
}
for
(
i
=
0
;
i
<
result
.
length
;
i
+=
1
)
{
fun
();
}
};
o
.
getListOn
Fail
=
function
(
error
)
{
am
.
call
(
o
,
'
fail
'
,[
error
]);
o
.
getListOn
Error
=
function
(
error
)
{
am
.
call
(
o
,
'
error
'
,[
error
]);
};
o
.
pushResult
=
function
(
result
,
index
,
key
)
{
if
(
typeof
result
===
'
object
'
)
{
return
am
.
call
(
o
,
'
fail
'
,[{
status
:
0
,
statusText
:
'
Decrypt Fail
'
,
message
:
'
Unable to decrypt.
'
}]);
}
result_array
[
index
][
key
]
=
result
;
am
.
call
(
o
,
'
done
'
);
am
.
call
(
o
,
'
success
'
);
};
o
.
fail
=
function
(
error
)
{
o
.
error
=
function
(
error
)
{
am
.
end
();
that
.
fail
(
error
);
that
.
error
(
error
);
};
o
.
done
=
function
()
{
o
.
success
=
function
()
{
am
.
end
();
that
.
done
(
result_array
);
that
.
success
(
result_array
);
};
am
.
call
(
o
,
'
getDocumentList
'
);
};
// end getDocumentList
...
...
@@ -240,32 +243,30 @@ var newCryptedStorage = function ( spec, my ) {
* @method removeDocument
*/
that
.
removeDocument
=
function
(
command
)
{
var
new_file_name
,
am
=
priv
.
newAsyncModule
(),
o
=
{};
var
new_file_name
,
o
=
{};
o
.
encryptFilePath
=
function
()
{
priv
.
encrypt
(
command
.
getPath
(),
function
(
res
)
{
new_file_name
=
res
;
am
.
call
(
o
,
'
removeDocument
'
);
o
.
removeDocument
(
);
});
};
o
.
removeDocument
=
function
()
{
var
cloned_option
=
command
.
cloneOption
();
cloned_option
.
onResponse
=
o
.
removeOnResponse
;
cloned_option
.
onFail
=
function
()
{};
cloned_option
.
onDone
=
function
()
{};
cloned_option
.
error
=
o
.
removeOnError
;
cloned_option
.
success
=
o
.
removeOnSuccess
;
that
.
addJob
(
that
.
newStorage
(
priv
.
secondstorage_spec
),
that
.
newCommand
(
'
removeDocument
'
,
{
path
:
new_file_name
,
option
:
cloned_option
}));
};
o
.
removeOnResponse
=
function
(
result
)
{
if
(
result
.
status
.
isDone
())
{
that
.
done
();
}
else
{
that
.
fail
(
result
.
error
);
}
o
.
removeOnSuccess
=
function
(
result
)
{
that
.
success
();
};
am
.
call
(
o
,
'
encryptFilePath
'
);
o
.
removeOnError
=
function
(
error
)
{
that
.
error
(
error
);
};
o
.
encryptFilePath
();
};
return
that
;
};
...
...
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