Fixing NitterUser asDictonary for export with template.

This commit is contained in:
ruidajo 2022-04-01 17:37:54 -05:00
parent d66cc2a62c
commit 292cb444b4
8 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
accessing
downloadProfileImage
self exportProfileImageOn: self folder / self userName, '.jpg'
^ self exportProfileImageOn: self folder / self userName, 'jpg'

View File

@ -7,6 +7,5 @@ exportProfileImageOn: fileReference
file exists ifFalse: [ file ensureCreateFile ].
file binaryWriteStreamDo: [ :stream |
stream nextPutAll: profileImageUrl retrieveContents ].
profileImageFile := file.
super class inform: 'Exported as: ', String cr, file fullName.
^ file

View File

@ -1,9 +1,7 @@
accessing
exportWithTemplate: mustacheFile On: folder
| mustacheDoc |
self exportProfileImageOn:folder / userName, '-profileImage.jpg'.
mustacheDoc := mustacheFile asMustacheTemplate value: self asDictionary.
MarkupFile
exportAsFileOn: (folder / self userName , 'tex')
containing: mustacheDoc
containing:(mustacheFile asMustacheTemplate value:
self asDictionary)

View File

@ -14,7 +14,7 @@ externalWordCloud
'--background' . 'white' .
'--mode' . 'RGBA' .
'--stopwords' . 'stopwords-es.txt' .
'--mask' . 'nube-mascara.jpg'};
'--mask' . '../commons/nube-mascara.jpg'};
workingDirectory: self folder fullName;
redirectStdout;
redirectStderr;

View File

@ -1,4 +1,4 @@
accessing
profileBio
^ profileBio := (self documentTree xpath: '/html/body/div/div/div[2]/div[1]/div[2]/div[1]') stringValue
^ profileBio ifNil: [ profileBio := (self documentTree xpath: '/html/body/div/div/div[2]/div[1]/div[2]/div[1]') stringValue]

View File

@ -0,0 +1,7 @@
accessing
profileImageFile
| file |
file := (self folder / self userName, 'jpg').
file exists ifTrue: [ ^ file ].
^ self downloadProfileImage

View File

@ -1,3 +0,0 @@
accessing
profileImageFile
^ profileImageFile

View File

@ -16,7 +16,6 @@
"createdAt",
"groups",
"url",
"profileImageFile",
"profileBio"
],
"name" : "TwitterUser",