Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
tx3-message-reader
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
tx3-message-reader
Commits
cca0b175
Commit
cca0b175
authored
Oct 05, 2020
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rollback delete
parent
31c6c3fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
src/smbreader.ts
src/smbreader.ts
+11
-1
No files found.
src/smbreader.ts
View file @
cca0b175
...
...
@@ -78,7 +78,7 @@ export class SMBReader {
const
insertedFileID
:
number
=
fileMetadata
.
insertId
;
const
previousFilenameArray
:
any
[]
=
await
this
.
db
.
query
(
"
select filename from `filesRead` where fileid = ?
"
,
[
insertedFileID
-
1
]);
let
currentMessages
=
readChatBuffer
((
await
this
.
smb
.
readFile
(
filePath
))
as
Buffer
);
if
(
previousFilenameArray
.
length
&&
files
.
find
(
f
=>
f
.
name
===
previousFilenameArray
[
0
].
filename
))
{
if
(
previousFilenameArray
.
length
&&
files
.
find
(
f
=>
f
.
name
===
previousFilenameArray
[
0
].
filename
))
{
// compare with old file
const
previousFilePath
=
this
.
getFilePath
(
previousFilenameArray
[
0
].
filename
);
console
.
error
(
`
${
this
.
logPrefix
}
Comparing file
${
filePath
}
with old file
${
previousFilePath
}
.`
)
try
{
...
...
@@ -101,6 +101,16 @@ export class SMBReader {
...
message
});
}
const
deleteFilenameArray
:
any
[]
=
await
this
.
db
.
query
(
"
select filename from `filesRead` where fileid = ?
"
,
[
insertedFileID
-
2
]);
if
(
deleteFilenameArray
.
length
&&
files
.
find
(
f
=>
f
.
name
===
deleteFilenameArray
[
0
].
filename
))
{
// delete file with id - 2 because useless
const
deleteFilePath
=
this
.
getFilePath
(
deleteFilenameArray
[
0
].
filename
);
try
{
console
.
error
(
`
${
this
.
logPrefix
}
Deleting file
${
deleteFilePath
}
.`
);
await
this
.
smb
.
unlink
(
deleteFilePath
);
}
catch
(
e
)
{
console
.
error
(
`
${
this
.
logPrefix
}
Failed deleting file
${
deleteFilePath
}
:`
,
e
.
toString
());
}
}
}
catch
(
e
)
{
console
.
error
(
`
${
this
.
logPrefix
}
Errored reading file
${
filePath
}
:`
,
e
.
toString
());
}
...
...
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