Class: ZMediumFetcher

Inherits:
Object
  • Object
show all
Defined in:
lib/ZMediumFetcher.rb

Defined Under Namespace

Classes: Progress

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeZMediumFetcher

Returns a new instance of ZMediumFetcher.



79
80
81
82
83
# File 'lib/ZMediumFetcher.rb', line 79

def initialize
    @progress = Progress.new()
    @usersPostURLs = nil
    @isForJekyll = false
end

Instance Attribute Details

#isForJekyllObject

Returns the value of attribute isForJekyll.



40
41
42
# File 'lib/ZMediumFetcher.rb', line 40

def isForJekyll
  @isForJekyll
end

#progressObject

Returns the value of attribute progress.



40
41
42
# File 'lib/ZMediumFetcher.rb', line 40

def progress
  @progress
end

#usersPostURLsObject

Returns the value of attribute usersPostURLs.



40
41
42
# File 'lib/ZMediumFetcher.rb', line 40

def usersPostURLs
  @usersPostURLs
end

Instance Method Details

#buildParser(imagePathPolicy) ⇒ Object



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/ZMediumFetcher.rb', line 85

def buildParser(imagePathPolicy)
    h1Parser = H1Parser.new()
    h2Parser = H2Parser.new()
        h1Parser.setNext(h2Parser)
    h3Parser = H3Parser.new()
        h2Parser.setNext(h3Parser)
    h4Parser = H4Parser.new()
        h3Parser.setNext(h4Parser)
    ppParser = PParser.new()
        h4Parser.setNext(ppParser)
    uliParser = ULIParser.new()
        ppParser.setNext(uliParser)
    oliParser = OLIParser.new()
        uliParser.setNext(oliParser)
    mixtapeembedParser = MIXTAPEEMBEDParser.new(isForJekyll)
        oliParser.setNext(mixtapeembedParser)
    pqParser = PQParser.new()
        mixtapeembedParser.setNext(pqParser)
    iframeParser = IframeParser.new(isForJekyll)
    iframeParser.pathPolicy = imagePathPolicy
        pqParser.setNext(iframeParser)
    imgParser = IMGParser.new(isForJekyll)
    imgParser.pathPolicy = imagePathPolicy
        iframeParser.setNext(imgParser)
    bqParser = BQParser.new()
        imgParser.setNext(bqParser)
    preParser = PREParser.new(isForJekyll)
        bqParser.setNext(preParser)
    codeBlockParser = CodeBlockParser.new(isForJekyll)
        preParser.setNext(codeBlockParser)
    fallbackParser = FallbackParser.new()
        codeBlockParser.setNext(fallbackParser)


    h1Parser
end

#downloadPost(postURL, pathPolicy, isPin) ⇒ Object



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
# File 'lib/ZMediumFetcher.rb', line 122

def downloadPost(postURL, pathPolicy, isPin)
    postID = Post.getPostIDFromPostURLString(postURL)

    if isForJekyll
        postPath = postID # use only post id is more friendly for url seo
    else
        postPath = Post.getPostPathFromPostURLString(postURL)
    end

    if isForJekyll
        postPathPolicy = PathPolicy.new(pathPolicy.getAbsolutePath("_posts/zmediumtomarkdown"), pathPolicy.getRelativePath("_posts/zmediumtomarkdown"))
        imagePathPolicy = PathPolicy.new(pathPolicy.getAbsolutePath("assets"), "assets")
    else
        postPathPolicy = PathPolicy.new(pathPolicy.getAbsolutePath("zmediumtomarkdown"), pathPolicy.getRelativePath("zmediumtomarkdown"))
        imagePathPolicy = PathPolicy.new(postPathPolicy.getAbsolutePath("assets"), "assets")
    end

    progress.postPath = URI.decode(postPath)
    progress.message = "Downloading Post..."
    progress.printLog()

    postHtml = Request.html(Request.URL(postURL))

    postContent = Post.parsePostContentFromHTML(postHtml)
    if postContent.nil?
        raise "Error: Content is empty! PostURL: #{postURL}"
    end
    
     = Post.parsePostInfoFromPostContent(postContent, postID, imagePathPolicy)

    sourceParagraphs = Post.fetchPostParagraphs(postID)
    if sourceParagraphs.nil?
        raise "Error: Paragraph not found! PostURL: #{postURL}"
    end 
    
    progress.message = "Formatting Data..."
    progress.printLog()

    paragraphs = []
    oliIndex = 0
    previousParagraph = nil
    preTypeParagraphs = []
    sourceParagraphs.each do |sourcParagraph|
      return if (!sourcParagraph || !postID)
        paragraph = Paragraph.new(sourcParagraph, postID)
        if OLIParser.isOLI(paragraph)
            oliIndex += 1
            paragraph.oliIndex = oliIndex
        else
            oliIndex = 0
        end

        # if previous is OLI or ULI or BQ and current is not OLI or ULI or BQ
        # than insert a blank paragraph to keep markdown foramt correct
        if (OLIParser.isOLI(previousParagraph) && !OLIParser.isOLI(paragraph)) ||
            (ULIParser.isULI(previousParagraph) && !ULIParser.isULI(paragraph))||
            (BQParser.isBQ(previousParagraph) && !BQParser.isBQ(paragraph))
            paragraphs.append(Paragraph.makeBlankParagraph(postID))
        end

        # group by PRE paragraph to code block
        # because medium will give continue pre to present code block
        # e.g.
        # type=pre, text=<html>
        # type=pre, text=text
        # type=pre, text=</html>
        
        if !previousParagraph.nil?
            if PREParser.isPRE(paragraph)
                # if current is pre
                preTypeParagraphs.append(paragraph)
            elsif PREParser.isPRE(previousParagraph) && !PREParser.isPRE(paragraph)
                # if current is note pre and previousParagraph is pre and preTypeParagraphs > 1
                if preTypeParagraphs.length > 1
                    lastPreTypeParagraph = preTypeParagraphs.pop

                    # group by preParagraphs text to last preParagraph
                    groupByText = ""
                    preTypeParagraphs.each do |preTypeParagraph|
                        if groupByText != ""
                            groupByText += "\n"
                        end

                        groupByText += preTypeParagraph.orgText
                    end
                    
                    lastPreTypeParagraph.text = "#{groupByText}"
                    lastPreTypeParagraph.type = CodeBlockParser.getTypeString()
                    
                    # remove all preParagraphs
                    preTypeParagraphNames = preTypeParagraphs.map do |preTypeParagraph|
                        preTypeParagraph.name
                    end
                    paragraphs = paragraphs.select do |paragraph| 
                        !preTypeParagraphNames.include? paragraph.name
                    end
                end
                preTypeParagraphs = []
            end
        end

        paragraphs.append(paragraph)
        previousParagraph = paragraph
    end
    
    startParser = buildParser(imagePathPolicy)

    progress.totalPostParagraphsLength = paragraphs.length
    progress.currentPostParagraphIndex = 0
    progress.message = "Converting Post..."
    progress.printLog()

    postWithDatePath = "#{.firstPublishedAt.strftime("%Y-%m-%d")}-#{postPath}"
    absolutePath = URI.decode(postPathPolicy.getAbsolutePath("#{postWithDatePath}")) + ".md"
    
    fileLatestPublishedAt = nil
    filePin = false
    if File.file?(absolutePath)
        lines = File.foreach(absolutePath).first(15)
        if lines.first&.start_with?("---")
            latestPublishedAtLine = lines.select { |line| line.start_with?("last_modified_at:") }.first
            if !latestPublishedAtLine.nil?
                fileLatestPublishedAt = Time.parse(latestPublishedAtLine[/^(last_modified_at:)\s+(\S*)/, 2]).to_i
            end

            pinLine = lines.select { |line| line.start_with?("pin:") }.first
            if !pinLine.nil?
                filePin = pinLine[/^(pin:)\s+(\S*)/, 2].downcase == "true"
            end
        end
    end

    if (!fileLatestPublishedAt.nil? && fileLatestPublishedAt >= .latestPublishedAt.to_i) && (!isPin.nil? && isPin == filePin)
        # Already downloaded and nothing has changed!, Skip!
        progress.currentPostParagraphIndex = paragraphs.length
        progress.message = "Skip, Post already downloaded and nothing has changed!"
        progress.printLog()
    else
        Helper.createDirIfNotExist(postPathPolicy.getAbsolutePath(nil))
        File.open(absolutePath, "w+") do |file|
            # write postInfo into top
             = Helper.createPostInfo(, isPin, isForJekyll)
            if !.nil?
                file.puts()
            end
            
            index = 0
            paragraphs.each do |paragraph|

                if !(CodeBlockParser.isCodeBlock(paragraph) || PREParser.isPRE(paragraph))
                    markupParser = MarkupParser.new(paragraph, isForJekyll)
                    markupParser.usersPostURLs = usersPostURLs
                    paragraph.text = markupParser.parse()
                end

                result = startParser.parse(paragraph)

                file.puts(result)

                index += 1
                progress.currentPostParagraphIndex = index
                progress.message = "Converting Post..."
                progress.printLog()
            end

            postWatermark = Helper.createWatermark(postURL, isForJekyll)
            if !postWatermark.nil?
                file.puts(postWatermark)
            end
        end
        FileUtils.touch absolutePath, :mtime => .latestPublishedAt

        progress.message = "Post Successfully Downloaded!"
        progress.printLog()
    end
    
    progress.postPath = nil
end

#downloadPostsByUsername(username, pathPolicy) ⇒ Object



301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# File 'lib/ZMediumFetcher.rb', line 301

def downloadPostsByUsername(username, pathPolicy)
    progress.username = username
    progress.message = "Fetching posts..."
    progress.printLog()

    userID = User.convertToUserIDFromUsername(username)
    if userID.nil?
        raise "Medium's Username:#{username} not found!"
    end

    postURLS = []
    nextID = nil
    begin
        postPageInfo = User.fetchUserPosts(userID, nextID)
        postPageInfo["postURLs"].each do |postURL|
            postURLS.append(postURL)
        end
        nextID = postPageInfo["nextID"]
    end while !nextID.nil?

    @usersPostURLs = postURLS.map{ |post| post["url"] }

    progress.totalPostsLength = postURLS.length
    progress.currentPostIndex = 0
    progress.message = "Downloading posts..."
    progress.printLog()

    if isForJekyll
        downloadPathPolicy = pathPolicy
    else
        downloadPathPolicy = PathPolicy.new(pathPolicy.getAbsolutePath("users/#{username}"), pathPolicy.getRelativePath("users/#{username}"))
    end
   
    index = 1
    postURLS.each do |postURL|
      begin
        # todo: unless File.exists? Post.getPostPathFromPostURLString(postURL) +".md"
        downloadPost(postURL["url"], downloadPathPolicy, postURL["pin"]) 
      rescue => e
        puts e
      end

      index += 1
      progress.currentPostIndex = index
      progress.message = "Downloading posts..."
      progress.printLog()
    end

    progress.message = "All posts has been downloaded!, Total posts: #{postURLS.length}"
    progress.printLog()
end