mirror of
https://github.com/bellingcat/reddit-post-scraping-tool.git
synced 2026-06-12 13:38:28 +03:00
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1f3d8f41eb | ||
|
|
4ac58f0fc4 | ||
|
|
7696dd923a | ||
|
|
45b82e57ac | ||
|
|
6d6e616640 | ||
|
|
4ba402a129 | ||
|
|
52d36baae2 | ||
|
|
1086ba1db1 | ||
|
|
d8919b4357 | ||
|
|
8952c7910b | ||
|
|
5d144fcd00 | ||
|
|
4c86206d0f | ||
|
|
6f77623681 |
@@ -1,11 +1,9 @@
|
|||||||
# RPST (Reddit Post Scraping Tool)
|
# RPST (Reddit Post Scraping Tool)
|
||||||
Given a subreddit name and a keyword, this script will return all posts from a specified listing (default is 'top') that contain the provided keyword.
|
Given a subreddit name and a keyword, RPST will return all posts from a specified listing (default is 'top') that contain the provided keyword.
|
||||||
|
|
||||||
[](https://github.com/rly0nheart/reddit-post-scraping-tool/actions/workflows/python-publish.yml) [](https://github.com/rly0nheart/reddit-post-scraping-tool/actions/workflows/codeql.yml)  
|
[](https://github.com/rly0nheart/reddit-post-scraping-tool/actions/workflows/python-publish.yml) [](https://github.com/rly0nheart/reddit-post-scraping-tool/actions/workflows/codeql.yml)  
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ✅ Features
|
# ✅ Features
|
||||||
|
|||||||
171
RPST GUI/RPST/AboutBox.Designer.vb
generated
171
RPST GUI/RPST/AboutBox.Designer.vb
generated
@@ -23,99 +23,103 @@ Partial Class AboutBox
|
|||||||
<System.Diagnostics.DebuggerStepThrough()> _
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
Dim resources As ComponentModel.ComponentResourceManager = New ComponentModel.ComponentResourceManager(GetType(AboutBox))
|
Dim resources As ComponentModel.ComponentResourceManager = New ComponentModel.ComponentResourceManager(GetType(AboutBox))
|
||||||
PictureBox1 = New PictureBox()
|
PictureBoxLogo = New PictureBox()
|
||||||
|
LabelProgramName = New Label()
|
||||||
|
LabelProgramDescription = New Label()
|
||||||
|
LabelVersion = New Label()
|
||||||
|
LinkLabelReadtheWiki = New LinkLabel()
|
||||||
|
Panel1 = New Panel()
|
||||||
LicenseRichTextBox = New RichTextBox()
|
LicenseRichTextBox = New RichTextBox()
|
||||||
LicenseLabel = New Label()
|
CType(PictureBoxLogo, ComponentModel.ISupportInitialize).BeginInit()
|
||||||
ProgramNameLabel = New Label()
|
Panel1.SuspendLayout()
|
||||||
DescriptionLabel = New Label()
|
|
||||||
VersionLabel = New Label()
|
|
||||||
WikiLinkLabel = New LinkLabel()
|
|
||||||
CType(PictureBox1, ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
SuspendLayout()
|
SuspendLayout()
|
||||||
'
|
'
|
||||||
' PictureBox1
|
' PictureBoxLogo
|
||||||
'
|
'
|
||||||
PictureBox1.Image = CType(resources.GetObject("PictureBox1.Image"), Image)
|
PictureBoxLogo.BackColor = Color.Transparent
|
||||||
PictureBox1.Location = New Point(28, 38)
|
PictureBoxLogo.Image = CType(resources.GetObject("PictureBoxLogo.Image"), Image)
|
||||||
PictureBox1.Name = "PictureBox1"
|
PictureBoxLogo.Location = New Point(12, 12)
|
||||||
PictureBox1.Size = New Size(82, 88)
|
PictureBoxLogo.Name = "PictureBoxLogo"
|
||||||
PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage
|
PictureBoxLogo.Size = New Size(99, 111)
|
||||||
PictureBox1.TabIndex = 0
|
PictureBoxLogo.SizeMode = PictureBoxSizeMode.StretchImage
|
||||||
PictureBox1.TabStop = False
|
PictureBoxLogo.TabIndex = 0
|
||||||
|
PictureBoxLogo.TabStop = False
|
||||||
|
'
|
||||||
|
' LabelProgramName
|
||||||
|
'
|
||||||
|
LabelProgramName.AutoSize = True
|
||||||
|
LabelProgramName.Font = New Font("Ink Free", 14.25F, FontStyle.Bold, GraphicsUnit.Point)
|
||||||
|
LabelProgramName.ForeColor = SystemColors.ControlText
|
||||||
|
LabelProgramName.Location = New Point(4, 11)
|
||||||
|
LabelProgramName.Name = "LabelProgramName"
|
||||||
|
LabelProgramName.Size = New Size(60, 23)
|
||||||
|
LabelProgramName.TabIndex = 3
|
||||||
|
LabelProgramName.Text = "Name"
|
||||||
|
'
|
||||||
|
' LabelProgramDescription
|
||||||
|
'
|
||||||
|
LabelProgramDescription.AutoSize = True
|
||||||
|
LabelProgramDescription.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold, GraphicsUnit.Point)
|
||||||
|
LabelProgramDescription.ForeColor = SystemColors.ControlText
|
||||||
|
LabelProgramDescription.Location = New Point(4, 54)
|
||||||
|
LabelProgramDescription.Name = "LabelProgramDescription"
|
||||||
|
LabelProgramDescription.Size = New Size(68, 15)
|
||||||
|
LabelProgramDescription.TabIndex = 4
|
||||||
|
LabelProgramDescription.Text = "Description"
|
||||||
|
'
|
||||||
|
' LabelVersion
|
||||||
|
'
|
||||||
|
LabelVersion.AutoSize = True
|
||||||
|
LabelVersion.Font = New Font("Segoe UI", 9F, FontStyle.Underline, GraphicsUnit.Point)
|
||||||
|
LabelVersion.ForeColor = SystemColors.ControlText
|
||||||
|
LabelVersion.Location = New Point(372, 17)
|
||||||
|
LabelVersion.Name = "LabelVersion"
|
||||||
|
LabelVersion.Size = New Size(45, 15)
|
||||||
|
LabelVersion.TabIndex = 5
|
||||||
|
LabelVersion.Text = "Version"
|
||||||
|
'
|
||||||
|
' LinkLabelReadtheWiki
|
||||||
|
'
|
||||||
|
LinkLabelReadtheWiki.AutoSize = True
|
||||||
|
LinkLabelReadtheWiki.Font = New Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point)
|
||||||
|
LinkLabelReadtheWiki.Location = New Point(337, 54)
|
||||||
|
LinkLabelReadtheWiki.Name = "LinkLabelReadtheWiki"
|
||||||
|
LinkLabelReadtheWiki.Size = New Size(79, 15)
|
||||||
|
LinkLabelReadtheWiki.TabIndex = 6
|
||||||
|
LinkLabelReadtheWiki.TabStop = True
|
||||||
|
LinkLabelReadtheWiki.Text = "Read the Wiki"
|
||||||
|
'
|
||||||
|
' Panel1
|
||||||
|
'
|
||||||
|
Panel1.BackColor = SystemColors.Control
|
||||||
|
Panel1.Controls.Add(LabelProgramDescription)
|
||||||
|
Panel1.Controls.Add(LabelProgramName)
|
||||||
|
Panel1.Controls.Add(LinkLabelReadtheWiki)
|
||||||
|
Panel1.Controls.Add(LabelVersion)
|
||||||
|
Panel1.Location = New Point(117, 12)
|
||||||
|
Panel1.Name = "Panel1"
|
||||||
|
Panel1.Size = New Size(440, 111)
|
||||||
|
Panel1.TabIndex = 7
|
||||||
'
|
'
|
||||||
' LicenseRichTextBox
|
' LicenseRichTextBox
|
||||||
'
|
'
|
||||||
LicenseRichTextBox.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold, GraphicsUnit.Point)
|
LicenseRichTextBox.Font = New Font("Cambria", 9.75F, FontStyle.Regular, GraphicsUnit.Point)
|
||||||
LicenseRichTextBox.Location = New Point(28, 170)
|
LicenseRichTextBox.Location = New Point(12, 135)
|
||||||
LicenseRichTextBox.Name = "LicenseRichTextBox"
|
LicenseRichTextBox.Name = "LicenseRichTextBox"
|
||||||
LicenseRichTextBox.ReadOnly = True
|
LicenseRichTextBox.ReadOnly = True
|
||||||
LicenseRichTextBox.Size = New Size(513, 342)
|
LicenseRichTextBox.Size = New Size(545, 305)
|
||||||
LicenseRichTextBox.TabIndex = 1
|
LicenseRichTextBox.TabIndex = 1
|
||||||
LicenseRichTextBox.Text = "License notice"
|
LicenseRichTextBox.Text = "License notice"
|
||||||
'
|
'
|
||||||
' LicenseLabel
|
|
||||||
'
|
|
||||||
LicenseLabel.AutoSize = True
|
|
||||||
LicenseLabel.Font = New Font("Microsoft JhengHei UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point)
|
|
||||||
LicenseLabel.Location = New Point(28, 150)
|
|
||||||
LicenseLabel.Name = "LicenseLabel"
|
|
||||||
LicenseLabel.Size = New Size(52, 17)
|
|
||||||
LicenseLabel.TabIndex = 2
|
|
||||||
LicenseLabel.Text = "License"
|
|
||||||
'
|
|
||||||
' ProgramNameLabel
|
|
||||||
'
|
|
||||||
ProgramNameLabel.AutoSize = True
|
|
||||||
ProgramNameLabel.Font = New Font("Microsoft JhengHei", 14.25F, FontStyle.Bold, GraphicsUnit.Point)
|
|
||||||
ProgramNameLabel.Location = New Point(126, 47)
|
|
||||||
ProgramNameLabel.Name = "ProgramNameLabel"
|
|
||||||
ProgramNameLabel.Size = New Size(66, 24)
|
|
||||||
ProgramNameLabel.TabIndex = 3
|
|
||||||
ProgramNameLabel.Text = "Name"
|
|
||||||
'
|
|
||||||
' DescriptionLabel
|
|
||||||
'
|
|
||||||
DescriptionLabel.AutoSize = True
|
|
||||||
DescriptionLabel.Font = New Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point)
|
|
||||||
DescriptionLabel.Location = New Point(126, 81)
|
|
||||||
DescriptionLabel.Name = "DescriptionLabel"
|
|
||||||
DescriptionLabel.Size = New Size(67, 15)
|
|
||||||
DescriptionLabel.TabIndex = 4
|
|
||||||
DescriptionLabel.Text = "Description"
|
|
||||||
'
|
|
||||||
' VersionLabel
|
|
||||||
'
|
|
||||||
VersionLabel.AutoSize = True
|
|
||||||
VersionLabel.Font = New Font("Segoe UI", 9F, FontStyle.Italic, GraphicsUnit.Point)
|
|
||||||
VersionLabel.Location = New Point(500, 54)
|
|
||||||
VersionLabel.Name = "VersionLabel"
|
|
||||||
VersionLabel.Size = New Size(46, 15)
|
|
||||||
VersionLabel.TabIndex = 5
|
|
||||||
VersionLabel.Text = "Version"
|
|
||||||
'
|
|
||||||
' WikiLinkLabel
|
|
||||||
'
|
|
||||||
WikiLinkLabel.AutoSize = True
|
|
||||||
WikiLinkLabel.Location = New Point(511, 81)
|
|
||||||
WikiLinkLabel.Name = "WikiLinkLabel"
|
|
||||||
WikiLinkLabel.Size = New Size(30, 15)
|
|
||||||
WikiLinkLabel.TabIndex = 6
|
|
||||||
WikiLinkLabel.TabStop = True
|
|
||||||
WikiLinkLabel.Text = "Wiki"
|
|
||||||
'
|
|
||||||
' AboutBox
|
' AboutBox
|
||||||
'
|
'
|
||||||
AutoScaleDimensions = New SizeF(7F, 15F)
|
AutoScaleDimensions = New SizeF(7F, 15F)
|
||||||
AutoScaleMode = AutoScaleMode.Font
|
AutoScaleMode = AutoScaleMode.Font
|
||||||
BackColor = Color.Gainsboro
|
BackColor = Color.Gainsboro
|
||||||
ClientSize = New Size(569, 541)
|
ClientSize = New Size(569, 454)
|
||||||
Controls.Add(WikiLinkLabel)
|
|
||||||
Controls.Add(VersionLabel)
|
|
||||||
Controls.Add(DescriptionLabel)
|
|
||||||
Controls.Add(ProgramNameLabel)
|
|
||||||
Controls.Add(LicenseLabel)
|
|
||||||
Controls.Add(LicenseRichTextBox)
|
Controls.Add(LicenseRichTextBox)
|
||||||
Controls.Add(PictureBox1)
|
Controls.Add(Panel1)
|
||||||
|
Controls.Add(PictureBoxLogo)
|
||||||
FormBorderStyle = FormBorderStyle.FixedSingle
|
FormBorderStyle = FormBorderStyle.FixedSingle
|
||||||
Icon = CType(resources.GetObject("$this.Icon"), Icon)
|
Icon = CType(resources.GetObject("$this.Icon"), Icon)
|
||||||
MaximizeBox = False
|
MaximizeBox = False
|
||||||
@@ -124,16 +128,17 @@ Partial Class AboutBox
|
|||||||
ShowInTaskbar = False
|
ShowInTaskbar = False
|
||||||
StartPosition = FormStartPosition.CenterScreen
|
StartPosition = FormStartPosition.CenterScreen
|
||||||
Text = "About"
|
Text = "About"
|
||||||
CType(PictureBox1, ComponentModel.ISupportInitialize).EndInit()
|
CType(PictureBoxLogo, ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Panel1.ResumeLayout(False)
|
||||||
|
Panel1.PerformLayout()
|
||||||
ResumeLayout(False)
|
ResumeLayout(False)
|
||||||
PerformLayout()
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend WithEvents PictureBox1 As PictureBox
|
Friend WithEvents PictureBoxLogo As PictureBox
|
||||||
|
Friend WithEvents LabelProgramName As Label
|
||||||
|
Friend WithEvents LabelProgramDescription As Label
|
||||||
|
Friend WithEvents LabelVersion As Label
|
||||||
|
Friend WithEvents LinkLabelReadtheWiki As LinkLabel
|
||||||
|
Friend WithEvents Panel1 As Panel
|
||||||
Friend WithEvents LicenseRichTextBox As RichTextBox
|
Friend WithEvents LicenseRichTextBox As RichTextBox
|
||||||
Friend WithEvents LicenseLabel As Label
|
|
||||||
Friend WithEvents ProgramNameLabel As Label
|
|
||||||
Friend WithEvents DescriptionLabel As Label
|
|
||||||
Friend WithEvents VersionLabel As Label
|
|
||||||
Friend WithEvents WikiLinkLabel As LinkLabel
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -118,10 +118,10 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<data name="PictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="PictureBoxLogo.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAYAAAD0eNT6AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAN
|
iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAYAAAD0eNT6AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAN
|
||||||
0wAADdMBvdUcagAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAFPuSURBVHhe7d0J
|
0AAADdABEGw9BwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAFPuSURBVHhe7d0J
|
||||||
nBxVvTZ+ExbZVPTPX0Svonjd5b0qV0UEARXR60Xvq2yyi4DsskR2QfZNEEE2gbAIAgEEAgQIS4BAQEh6
|
nBxVvTZ+ExbZVPTPX0Svonjd5b0qV0UEARXR60Xvq2yyi4DsskR2QfZNEEE2gbAIAgEEAgQIS4BAQEh6
|
||||||
uqfXmUkySaYHbyCsCXuSep9fJyOdzjMz3dW1nKp++Hy+H+AH6e4659T5nao6dc57PM8TERGRDkODIiIi
|
uqfXmUkySaYHbyCsCXuSep9fJyOdzjMz3dW1nKp++Hy+H+AH6e4659T5nao6dc57PM8TERGRDkODIiIi
|
||||||
km40KCIiIulGgyIiIpJuNCgiIiLpRoMiIiKSbjQoIiIi6UaDIiIikm40KCIiIulGgyIiIpJuNCgiIiLp
|
km40KCIiIulGgyIiIpJuNCgiIiLpRoMiIiKSbjQoIiIi6UaDIiIikm40KCIiIulGgyIiIpJuNCgiIiLp
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
Public Class AboutBox
|
Imports System.Runtime
|
||||||
Public Property LicenseText As String = "MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2023-2024 Richard Mwewa
|
Public Class AboutBox
|
||||||
|
ReadOnly settings As New SettingsManager()
|
||||||
|
Public Property LicenseText As String = $"MIT License
|
||||||
|
|
||||||
|
{My.Application.Info.Copyright}
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the ""Software""), to deal
|
of this software and associated documentation files (the ""Software""), to deal
|
||||||
@@ -18,19 +21,33 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
|
||||||
SOFTWARE."
|
|
||||||
|
|
||||||
Private Sub AboutForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
|
||||||
ProgramNameLabel.Text = My.Application.Info.AssemblyName
|
''' <summary>
|
||||||
DescriptionLabel.Text = "Given a subreddit name and a keyword,
|
''' Handles the Load event for the AboutBox form.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="sender">The source of the event.</param>
|
||||||
|
''' <param name="e">The event data.</param>
|
||||||
|
Private Sub AboutBox_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
settings.LoadSettings()
|
||||||
|
settings.ToggleDarkMode(settings.DarkMode)
|
||||||
|
|
||||||
|
LabelProgramName.Text = My.Application.Info.ProductName
|
||||||
|
LabelProgramDescription.Text = "Given a subreddit name and a keyword,
|
||||||
RPST returns all top posts
|
RPST returns all top posts
|
||||||
(by default) that contain the specified keyword."
|
(by default) that contain the specified keyword."
|
||||||
VersionLabel.Text = $"v{My.Application.Info.Version}"
|
LabelVersion.Text = $"v{My.Application.Info.Version}"
|
||||||
LicenseRichTextBox.Text = LicenseText
|
LicenseRichTextBox.Text = LicenseText
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub LinkLabel1_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles WikiLinkLabel.LinkClicked
|
''' <summary>
|
||||||
|
''' Handles the LinkClicked event for the LinkLabelReadtheWiki control.
|
||||||
|
''' Opens the Wiki URL in the default browser.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="sender">The source of the event.</param>
|
||||||
|
''' <param name="e">The event data.</param>
|
||||||
|
Private Sub LinkLabelReadtheWiki_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabelReadtheWiki.LinkClicked
|
||||||
Shell("cmd /c start https://github.com/bellingcat/reddit-post-scraping-tool/wiki")
|
Shell("cmd /c start https://github.com/bellingcat/reddit-post-scraping-tool/wiki")
|
||||||
End Sub
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
@@ -7,31 +7,31 @@ Public Class DataGridViewHandler
|
|||||||
''' <param name="dataGridView">The DataGridView to be initialized.</param>
|
''' <param name="dataGridView">The DataGridView to be initialized.</param>
|
||||||
Public Shared Sub AddColumn(dataGridView As DataGridView)
|
Public Shared Sub AddColumn(dataGridView As DataGridView)
|
||||||
' Clear the Columns and Rows before adding Items to them
|
' Clear the Columns and Rows before adding Items to them
|
||||||
PostsForm.DataGridViewPosts.Rows.Clear()
|
dataGridView.Rows.Clear()
|
||||||
PostsForm.DataGridViewPosts.Columns.Clear()
|
dataGridView.Columns.Clear()
|
||||||
|
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostCount", "Post Number")
|
dataGridView.Columns.Add("PostCount", "Index")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostAuthor", "Author")
|
dataGridView.Columns.Add("PostAuthor", "Author")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostID", "ID")
|
dataGridView.Columns.Add("PostID", "Post ID")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostSubreddit", "Subreddit")
|
dataGridView.Columns.Add("PostText", "Post Text")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("SubredditVisibility", "Subreddit Visibility")
|
dataGridView.Columns.Add("PostSubreddit", "Subreddit")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostThumbnail", "Thumbnail")
|
dataGridView.Columns.Add("SubredditVisibility", "Subreddit Visibility")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostIsNSFW", "NSFW")
|
dataGridView.Columns.Add("PostThumbnail", "Thumbnail")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostIsGilded", "Gilded")
|
dataGridView.Columns.Add("PostIsNSFW", "NSFW")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostUpvotes", "Upvotes")
|
dataGridView.Columns.Add("PostIsGilded", "Gilded")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostUpvoteRatio", "Upvote Ratio")
|
dataGridView.Columns.Add("PostUpvotes", "Upvotes")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostDownvotes", "Downvotes")
|
dataGridView.Columns.Add("PostUpvoteRatio", "Upvote Ratio")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostAwards", "Awards")
|
dataGridView.Columns.Add("PostDownvotes", "Downvotes")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostTopAward", "Top Award")
|
dataGridView.Columns.Add("PostAwards", "Awards")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostIsCrosspostable", "Is Crosspostable?")
|
dataGridView.Columns.Add("PostTopAward", "Top Award")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostScore", "Score")
|
dataGridView.Columns.Add("PostIsCrosspostable", "Is Crosspostable?")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostText", "Text")
|
dataGridView.Columns.Add("PostScore", "Score")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostCategory", "Category")
|
dataGridView.Columns.Add("PostCategory", "Category")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostDomain", "Domain")
|
dataGridView.Columns.Add("PostDomain", "Domain")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostPermalink", "Permalink")
|
dataGridView.Columns.Add("PostPermalink", "Permalink")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostCreatedAt", "Created At")
|
dataGridView.Columns.Add("PostCreatedAt", "Created At")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostApprovedAt", "Approved At")
|
dataGridView.Columns.Add("PostApprovedAt", "Approved At")
|
||||||
PostsForm.DataGridViewPosts.Columns.Add("PostApprovedBy", "Approved By")
|
dataGridView.Columns.Add("PostApprovedBy", "Approved By")
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Shared Sub AddRow(dataGridView As DataGridView, post As JObject, postNumber As Integer)
|
Public Shared Sub AddRow(dataGridView As DataGridView, post As JObject, postNumber As Integer)
|
||||||
@@ -41,9 +41,10 @@ Public Class DataGridViewHandler
|
|||||||
''' <param name="dataGridView">The DataGridView to which the row will be added.</param>
|
''' <param name="dataGridView">The DataGridView to which the row will be added.</param>
|
||||||
''' <param name="post">A JObject representing the Reddit post.</param>
|
''' <param name="post">A JObject representing the Reddit post.</param>
|
||||||
''' <param name="postNumber">The number of the post.</param>
|
''' <param name="postNumber">The number of the post.</param>
|
||||||
PostsForm.DataGridViewPosts.Rows.Add(postNumber,
|
dataGridView.Rows.Add(postNumber,
|
||||||
post("data")("author"),
|
post("data")("author"),
|
||||||
post("data")("id"),
|
post("data")("id"),
|
||||||
|
post("data")("selftext"),
|
||||||
post("data")("subreddit_name_prefixed"),
|
post("data")("subreddit_name_prefixed"),
|
||||||
post("data")("subreddit_type"),
|
post("data")("subreddit_type"),
|
||||||
post("data")("thumbnail"),
|
post("data")("thumbnail"),
|
||||||
@@ -56,7 +57,6 @@ Public Class DataGridViewHandler
|
|||||||
post("data")("top_awarded_type"),
|
post("data")("top_awarded_type"),
|
||||||
post("data")("is_crosspostable"),
|
post("data")("is_crosspostable"),
|
||||||
post("data")("score"),
|
post("data")("score"),
|
||||||
post("data")("selftext"),
|
|
||||||
post("data")("category"),
|
post("data")("category"),
|
||||||
post("data")("domain"),
|
post("data")("domain"),
|
||||||
post("data")("permalink"),
|
post("data")("permalink"),
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
||||||
Partial Class DeveloperForm
|
Partial Class DeveloperBox
|
||||||
Inherits System.Windows.Forms.Form
|
Inherits System.Windows.Forms.Form
|
||||||
|
|
||||||
'Form overrides dispose to clean up the component list.
|
'Form overrides dispose to clean up the component list.
|
||||||
@@ -22,9 +22,9 @@ Partial Class DeveloperForm
|
|||||||
'Do not modify it using the code editor.
|
'Do not modify it using the code editor.
|
||||||
<System.Diagnostics.DebuggerStepThrough()>
|
<System.Diagnostics.DebuggerStepThrough()>
|
||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
Dim resources As ComponentModel.ComponentResourceManager = New ComponentModel.ComponentResourceManager(GetType(DeveloperForm))
|
Dim resources As ComponentModel.ComponentResourceManager = New ComponentModel.ComponentResourceManager(GetType(DeveloperBox))
|
||||||
AboutMeLinkLabel = New LinkLabel()
|
AboutMeLinkLabel = New LinkLabel()
|
||||||
BuyMeACoffeeLinkLabel = New LinkLabel()
|
LinkLabelBuyMeACoffee = New LinkLabel()
|
||||||
GreetingLabel = New Label()
|
GreetingLabel = New Label()
|
||||||
SuspendLayout()
|
SuspendLayout()
|
||||||
'
|
'
|
||||||
@@ -32,37 +32,42 @@ Partial Class DeveloperForm
|
|||||||
'
|
'
|
||||||
AboutMeLinkLabel.AutoSize = True
|
AboutMeLinkLabel.AutoSize = True
|
||||||
AboutMeLinkLabel.BackColor = Color.White
|
AboutMeLinkLabel.BackColor = Color.White
|
||||||
|
AboutMeLinkLabel.Font = New Font("Comic Sans MS", 9F, FontStyle.Regular, GraphicsUnit.Point)
|
||||||
AboutMeLinkLabel.Location = New Point(33, 426)
|
AboutMeLinkLabel.Location = New Point(33, 426)
|
||||||
AboutMeLinkLabel.Name = "AboutMeLinkLabel"
|
AboutMeLinkLabel.Name = "AboutMeLinkLabel"
|
||||||
AboutMeLinkLabel.Size = New Size(60, 15)
|
AboutMeLinkLabel.Size = New Size(57, 17)
|
||||||
AboutMeLinkLabel.TabIndex = 0
|
AboutMeLinkLabel.TabIndex = 0
|
||||||
AboutMeLinkLabel.TabStop = True
|
AboutMeLinkLabel.TabStop = True
|
||||||
AboutMeLinkLabel.Text = "About.me"'
|
AboutMeLinkLabel.Text = "About.me"
|
||||||
' BuyMeACoffeeLinkLabel
|
'
|
||||||
|
' LinkLabelBuyMeACoffee
|
||||||
|
'
|
||||||
|
LinkLabelBuyMeACoffee.AutoSize = True
|
||||||
|
LinkLabelBuyMeACoffee.Font = New Font("Comic Sans MS", 9F, FontStyle.Regular, GraphicsUnit.Point)
|
||||||
|
LinkLabelBuyMeACoffee.Location = New Point(33, 451)
|
||||||
|
LinkLabelBuyMeACoffee.Name = "LinkLabelBuyMeACoffee"
|
||||||
|
LinkLabelBuyMeACoffee.Size = New Size(101, 17)
|
||||||
|
LinkLabelBuyMeACoffee.TabIndex = 1
|
||||||
|
LinkLabelBuyMeACoffee.TabStop = True
|
||||||
|
LinkLabelBuyMeACoffee.Text = "Buy Me A Coffee"
|
||||||
'
|
'
|
||||||
BuyMeACoffeeLinkLabel.AutoSize = True
|
|
||||||
BuyMeACoffeeLinkLabel.Location = New Point(33, 451)
|
|
||||||
BuyMeACoffeeLinkLabel.Name = "BuyMeACoffeeLinkLabel"
|
|
||||||
BuyMeACoffeeLinkLabel.Size = New Size(96, 15)
|
|
||||||
BuyMeACoffeeLinkLabel.TabIndex = 1
|
|
||||||
BuyMeACoffeeLinkLabel.TabStop = True
|
|
||||||
BuyMeACoffeeLinkLabel.Text = "Buy Me A Coffee"'
|
|
||||||
' GreetingLabel
|
' GreetingLabel
|
||||||
'
|
'
|
||||||
GreetingLabel.AutoSize = True
|
GreetingLabel.AutoSize = True
|
||||||
GreetingLabel.Font = New Font("Verdana", 27.75F, FontStyle.Bold, GraphicsUnit.Point)
|
GreetingLabel.Font = New Font("Ink Free", 27.75F, FontStyle.Bold, GraphicsUnit.Point)
|
||||||
GreetingLabel.Location = New Point(62, 22)
|
GreetingLabel.Location = New Point(62, 22)
|
||||||
GreetingLabel.Name = "GreetingLabel"
|
GreetingLabel.Name = "GreetingLabel"
|
||||||
GreetingLabel.Size = New Size(382, 45)
|
GreetingLabel.Size = New Size(355, 46)
|
||||||
GreetingLabel.TabIndex = 3
|
GreetingLabel.TabIndex = 3
|
||||||
GreetingLabel.Text = "Hello, I'm Ritchie"'
|
GreetingLabel.Text = "👋🏾Hello, I'm Ritchie"
|
||||||
|
'
|
||||||
' DeveloperForm
|
' DeveloperForm
|
||||||
'
|
'
|
||||||
AutoScaleDimensions = New SizeF(7F, 15F)
|
AutoScaleDimensions = New SizeF(7F, 15F)
|
||||||
AutoScaleMode = AutoScaleMode.Font
|
AutoScaleMode = AutoScaleMode.Font
|
||||||
BackgroundImage = CType(resources.GetObject("$this.BackgroundImage"), Image)
|
BackgroundImage = CType(resources.GetObject("$this.BackgroundImage"), Image)
|
||||||
ClientSize = New Size(510, 510)
|
ClientSize = New Size(510, 510)
|
||||||
Controls.Add(BuyMeACoffeeLinkLabel)
|
Controls.Add(LinkLabelBuyMeACoffee)
|
||||||
Controls.Add(AboutMeLinkLabel)
|
Controls.Add(AboutMeLinkLabel)
|
||||||
Controls.Add(GreetingLabel)
|
Controls.Add(GreetingLabel)
|
||||||
FormBorderStyle = FormBorderStyle.FixedSingle
|
FormBorderStyle = FormBorderStyle.FixedSingle
|
||||||
@@ -78,7 +83,7 @@ Partial Class DeveloperForm
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend WithEvents AboutMeLinkLabel As LinkLabel
|
Friend WithEvents AboutMeLinkLabel As LinkLabel
|
||||||
Friend WithEvents BuyMeACoffeeLinkLabel As LinkLabel
|
Friend WithEvents LinkLabelBuyMeACoffee As LinkLabel
|
||||||
Friend WithEvents PictureBox1 As PictureBox
|
Friend WithEvents PictureBox1 As PictureBox
|
||||||
Friend WithEvents GreetingLabel As Label
|
Friend WithEvents GreetingLabel As Label
|
||||||
End Class
|
End Class
|
||||||
@@ -1,4 +1,64 @@
|
|||||||
<root>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing"">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
Public Class DeveloperForm
|
Public Class DeveloperBox
|
||||||
Private Sub DeveloperForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
Private Sub DeveloperForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
GreetingLabel.BackColor = Color.Transparent
|
GreetingLabel.BackColor = Color.Transparent
|
||||||
AboutMeLinkLabel.BackColor = Color.Transparent
|
AboutMeLinkLabel.BackColor = Color.Transparent
|
||||||
BuyMeACoffeeLinkLabel.BackColor = Color.Transparent
|
LinkLabelBuyMeACoffee.BackColor = Color.Transparent
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub AboutMeLinkLabel_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles AboutMeLinkLabel.LinkClicked
|
Private Sub AboutMeLinkLabel_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles AboutMeLinkLabel.LinkClicked
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
Shell("cmd /c start https://about.me/rly0nheart")
|
Shell("cmd /c start https://about.me/rly0nheart")
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BuyMeACoffeeLinkLabel_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles BuyMeACoffeeLinkLabel.LinkClicked
|
Private Sub BuyMeACoffeeLinkLabel_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabelBuyMeACoffee.LinkClicked
|
||||||
Shell("cmd /c start https://buymeacoffee.com/_rly0nheart")
|
Shell("cmd /c start https://buymeacoffee.com/_rly0nheart")
|
||||||
End Sub
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
57
RPST GUI/RPST/PostsForm.Designer.vb
generated
57
RPST GUI/RPST/PostsForm.Designer.vb
generated
@@ -1,57 +0,0 @@
|
|||||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
|
||||||
Partial Class PostsForm
|
|
||||||
Inherits System.Windows.Forms.Form
|
|
||||||
|
|
||||||
'Form overrides dispose to clean up the component list.
|
|
||||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
|
||||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
|
||||||
Try
|
|
||||||
If disposing AndAlso components IsNot Nothing Then
|
|
||||||
components.Dispose()
|
|
||||||
End If
|
|
||||||
Finally
|
|
||||||
MyBase.Dispose(disposing)
|
|
||||||
End Try
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
'Required by the Windows Form Designer
|
|
||||||
Private components As System.ComponentModel.IContainer
|
|
||||||
|
|
||||||
'NOTE: The following procedure is required by the Windows Form Designer
|
|
||||||
'It can be modified using the Windows Form Designer.
|
|
||||||
'Do not modify it using the code editor.
|
|
||||||
<System.Diagnostics.DebuggerStepThrough()> _
|
|
||||||
Private Sub InitializeComponent()
|
|
||||||
DataGridViewPosts = New DataGridView()
|
|
||||||
CType(DataGridViewPosts, ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
SuspendLayout()
|
|
||||||
'
|
|
||||||
' DataGridViewPosts
|
|
||||||
'
|
|
||||||
DataGridViewPosts.BackgroundColor = Color.Gainsboro
|
|
||||||
DataGridViewPosts.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize
|
|
||||||
DataGridViewPosts.Dock = DockStyle.Fill
|
|
||||||
DataGridViewPosts.Location = New Point(0, 0)
|
|
||||||
DataGridViewPosts.Name = "DataGridViewPosts"
|
|
||||||
DataGridViewPosts.ReadOnly = True
|
|
||||||
DataGridViewPosts.RowHeadersVisible = False
|
|
||||||
DataGridViewPosts.RowTemplate.Height = 25
|
|
||||||
DataGridViewPosts.Size = New Size(800, 450)
|
|
||||||
DataGridViewPosts.TabIndex = 3
|
|
||||||
'
|
|
||||||
' PostsForm
|
|
||||||
'
|
|
||||||
AutoScaleDimensions = New SizeF(7F, 15F)
|
|
||||||
AutoScaleMode = AutoScaleMode.Font
|
|
||||||
ClientSize = New Size(800, 450)
|
|
||||||
Controls.Add(DataGridViewPosts)
|
|
||||||
Name = "PostsForm"
|
|
||||||
ShowIcon = False
|
|
||||||
ShowInTaskbar = False
|
|
||||||
Text = "PostsForm"
|
|
||||||
CType(DataGridViewPosts, ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
ResumeLayout(False)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Friend WithEvents DataGridViewPosts As DataGridView
|
|
||||||
End Class
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
<root>
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
</root>
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
Public Class PostsForm
|
|
||||||
|
|
||||||
End Class
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
Imports Newtonsoft.Json.Linq
|
Imports Newtonsoft.Json.Linq
|
||||||
|
|
||||||
Public Class PostsProcessor
|
Public Class PostsProcessor
|
||||||
Private ApiHandler As New ApiHandler
|
Private ReadOnly ApiHandler As New ApiHandler
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Fetches Reddit posts based on the given parameters and returns them as a JObject.
|
''' Fetches Reddit posts based on the given parameters and returns them as a JObject.
|
||||||
@@ -23,7 +23,7 @@ Public Class PostsProcessor
|
|||||||
''' <param name="keyword">The keyword to check for.</param>
|
''' <param name="keyword">The keyword to check for.</param>
|
||||||
''' <returns>True if the post contains the keyword, False otherwise.</returns>
|
''' <returns>True if the post contains the keyword, False otherwise.</returns>
|
||||||
Public Shared Function PostContainsKeyword(post As JObject, keyword As String) As Boolean
|
Public Shared Function PostContainsKeyword(post As JObject, keyword As String) As Boolean
|
||||||
Return post("data")("selftext").ToString.ToLower(System.Globalization.CultureInfo.InvariantCulture).Contains(keyword.ToLower(System.Globalization.CultureInfo.InvariantCulture))
|
Return post("data")("selftext").ToString.ToLower(Globalization.CultureInfo.InvariantCulture).Contains(keyword.ToLower(System.Globalization.CultureInfo.InvariantCulture))
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -1,29 +1,33 @@
|
|||||||
# Reddit Post Scraping Tool
|
# RPST (Reddit Post Scraping Tool)
|
||||||
Given a subreddit name and a keyword, this script will return all posts from a specified listing (default is 'top') that contain the provided keyword.
|
Given a subreddit name and a keyword, RPST will return all posts from a specified listing (default is 'top') that contain the provided keyword.
|
||||||
|
|
||||||
[](https://github.com/rly0nheart/reddit-post-scraping-tool/actions/workflows/python-publish.yml) [](https://github.com/rly0nheart/reddit-post-scraping-tool/actions/workflows/codeql.yml)  
|
[](https://github.com/rly0nheart/reddit-post-scraping-tool/actions/workflows/python-publish.yml) [](https://github.com/rly0nheart/reddit-post-scraping-tool/actions/workflows/codeql.yml)  
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
# Features (GUI)
|
# ✅ Features
|
||||||
- [x] Auto dark mode from 6pm - 6am
|
## GUI
|
||||||
- [x] Saves results to a JSON
|
- [x] Dark mode (Right-click)
|
||||||
- [ ] Other features coming soon...
|
- [x] Saves results to a JSON (Right-click)
|
||||||
|
- [x] Logs errors to a file
|
||||||
|
|
||||||
# TODO (GUI)
|
## CLI
|
||||||
- [ ] Make it a stand alone executable
|
- [x] Saves results to a JSON (-j/--json)
|
||||||
- [ ] Add manual dark mode option, that will be remembered in all sessions
|
- [x] Automatically checks for new updates. Notifies user if update were found.
|
||||||
|
|
||||||
# Wiki
|
# 📃 TODO
|
||||||
|
## GUI
|
||||||
|
- [ ] Make it installable with a setup.exe/setup.msi file.
|
||||||
|
- [x] Add manual dark mode option, that will be persistent in all sessions
|
||||||
|
- [ ] Make it save results to a CSV file
|
||||||
|
|
||||||
|
# 📖 Wiki
|
||||||
[Refer to the Wiki](https://github.com/rly0nheart/reddit-post-scraping-tool/wiki) for installation instructions, in addition to all other documentation.
|
[Refer to the Wiki](https://github.com/rly0nheart/reddit-post-scraping-tool/wiki) for installation instructions, in addition to all other documentation.
|
||||||
|
|
||||||
# Note
|
# 😁 Donations
|
||||||
> This is one of the projects I am working on, while learning Visual Basic, so the implementation/code may be messed up. If that's the case, please feel free to open a pull request using the available templates. Otherwise, enjoy!
|
If you like `RPST` and would like to show support, you can Buy A Coffee for the developer using the button below
|
||||||
|
|
||||||
# Donations
|
<a href="https://www.buymeacoffee.com/_rly0nheart" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>
|
||||||
If you like `Reddit Post Scraping Tool` and would like to show support, you can Buy A Coffee for the developer using the button below
|
|
||||||
|
|
||||||
<a href="https://www.buymeacoffee.com/189381184" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>
|
|
||||||
|
|
||||||
Your support will be much appreciated😊
|
Your support will be much appreciated😊
|
||||||
|
|||||||
@@ -13,19 +13,19 @@
|
|||||||
<PackageProjectUrl>https://github.com/bellingcat/reddit-post-scraping-tool</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/bellingcat/reddit-post-scraping-tool</PackageProjectUrl>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<RepositoryUrl>https://github.com/bellingcat/reddit-post-scraping-tool</RepositoryUrl>
|
<RepositoryUrl>https://github.com/bellingcat/reddit-post-scraping-tool</RepositoryUrl>
|
||||||
<AssemblyVersion>1.4.0.0</AssemblyVersion>
|
<AssemblyVersion>1.5.0.0</AssemblyVersion>
|
||||||
<FileVersion>1.4.0.0</FileVersion>
|
<FileVersion>1.5.0.0</FileVersion>
|
||||||
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
||||||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
|
||||||
<Version>1.4.0</Version>
|
<Version>1.5.0</Version>
|
||||||
<PackageTags>reddit;scraper;reddit-scraper;osint</PackageTags>
|
<PackageTags>reddit;scraper;reddit-scraper;osint</PackageTags>
|
||||||
<PackageReleaseNotes></PackageReleaseNotes>
|
<PackageReleaseNotes></PackageReleaseNotes>
|
||||||
<AnalysisLevel>6.0-recommended</AnalysisLevel>
|
<AnalysisLevel>6.0-recommended</AnalysisLevel>
|
||||||
<PackageId>RPST (Reddit Post Scraping Tool)</PackageId>
|
<PackageId>RPST</PackageId>
|
||||||
<Authors>Richard Mwewa</Authors>
|
<Authors>Richard Mwewa</Authors>
|
||||||
<NeutralLanguage>en</NeutralLanguage>
|
<NeutralLanguage>en</NeutralLanguage>
|
||||||
<Product>$(AssemblyName)</Product>
|
<Product>$(AssemblyName) (Reddit Post Scraping Tool)</Product>
|
||||||
<AssemblyName>RPST (Reddit Post Scraping Tool)</AssemblyName>
|
<AssemblyName>RPST</AssemblyName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -4,10 +4,7 @@
|
|||||||
<Compile Update="AboutBox.vb">
|
<Compile Update="AboutBox.vb">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Update="DeveloperForm.vb">
|
<Compile Update="DeveloperBox.vb">
|
||||||
<SubType>Form</SubType>
|
|
||||||
</Compile>
|
|
||||||
<Compile Update="PostsForm.vb">
|
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Update="StartForm.vb">
|
<Compile Update="StartForm.vb">
|
||||||
|
|||||||
57
RPST GUI/RPST/ResultsForm.Designer.vb
generated
Normal file
57
RPST GUI/RPST/ResultsForm.Designer.vb
generated
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
||||||
|
Partial Class ResultsForm
|
||||||
|
Inherits System.Windows.Forms.Form
|
||||||
|
|
||||||
|
'Form overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()>
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
Try
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
Finally
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Try
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Windows Form Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Windows Form Designer
|
||||||
|
'It can be modified using the Windows Form Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()>
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
DataGridViewResults = New DataGridView()
|
||||||
|
CType(DataGridViewResults, ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
SuspendLayout()
|
||||||
|
'
|
||||||
|
' DataGridViewResults
|
||||||
|
'
|
||||||
|
DataGridViewResults.BackgroundColor = Color.Gainsboro
|
||||||
|
DataGridViewResults.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize
|
||||||
|
DataGridViewResults.Dock = DockStyle.Fill
|
||||||
|
DataGridViewResults.Location = New Point(0, 0)
|
||||||
|
DataGridViewResults.Name = "DataGridViewResults"
|
||||||
|
DataGridViewResults.ReadOnly = True
|
||||||
|
DataGridViewResults.RowHeadersVisible = False
|
||||||
|
DataGridViewResults.RowTemplate.Height = 25
|
||||||
|
DataGridViewResults.Size = New Size(800, 450)
|
||||||
|
DataGridViewResults.TabIndex = 3
|
||||||
|
'
|
||||||
|
' ResultsForm
|
||||||
|
'
|
||||||
|
AutoScaleDimensions = New SizeF(7.0F, 15.0F)
|
||||||
|
AutoScaleMode = AutoScaleMode.Font
|
||||||
|
ClientSize = New Size(800, 450)
|
||||||
|
Controls.Add(DataGridViewResults)
|
||||||
|
Name = "ResultsForm"
|
||||||
|
ShowIcon = False
|
||||||
|
ShowInTaskbar = False
|
||||||
|
Text = "ResultsForm"
|
||||||
|
CType(DataGridViewResults, ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
ResumeLayout(False)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Friend WithEvents DataGridViewResults As DataGridView
|
||||||
|
End Class
|
||||||
120
RPST GUI/RPST/ResultsForm.resx
Normal file
120
RPST GUI/RPST/ResultsForm.resx
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing"">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
1
RPST GUI/RPST/ResultsForm.vb
Normal file
1
RPST GUI/RPST/ResultsForm.vb
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
@@ -1,16 +1,22 @@
|
|||||||
Imports Newtonsoft.Json
|
Imports System.IO
|
||||||
Imports Newtonsoft.Json.Linq
|
|
||||||
Imports System.IO
|
|
||||||
Imports System.Runtime
|
|
||||||
Imports System.Text.Json
|
Imports System.Text.Json
|
||||||
|
Imports Newtonsoft.Json.Linq
|
||||||
|
|
||||||
|
|
||||||
Public Class SettingsManager
|
Public Class SettingsManager
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Represents the Dark Mode property.
|
||||||
|
''' Indicates whether the dark mode is enabled or disabled.
|
||||||
|
''' </summary>
|
||||||
Public Property DarkMode As Boolean
|
Public Property DarkMode As Boolean
|
||||||
|
|
||||||
Private ReadOnly settingsFilePath As String = Path.Combine(Environment.CurrentDirectory, "settings.json")
|
Private ReadOnly settingsFilePath As String = Path.Combine(Environment.CurrentDirectory, "settings.json")
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
' Load settings from the 'settings.json' file
|
''' Loads application settings from the 'settings.json' file.
|
||||||
|
''' If the settings file doesn't exist, it creates a new file with default settings.
|
||||||
|
''' </summary>
|
||||||
Public Sub LoadSettings()
|
Public Sub LoadSettings()
|
||||||
' Check if the settings.json file exists
|
' Check if the settings.json file exists
|
||||||
' and load the configurations from it
|
' and load the configurations from it
|
||||||
@@ -19,7 +25,7 @@ Public Class SettingsManager
|
|||||||
Dim options As New JsonSerializerOptions With {.PropertyNameCaseInsensitive = True}
|
Dim options As New JsonSerializerOptions With {.PropertyNameCaseInsensitive = True}
|
||||||
Dim settings = Text.Json.JsonSerializer.Deserialize(Of SettingsManager)(json, options)
|
Dim settings = Text.Json.JsonSerializer.Deserialize(Of SettingsManager)(json, options)
|
||||||
Me.DarkMode = settings.DarkMode
|
Me.DarkMode = settings.DarkMode
|
||||||
StartForm.DarkModeToolStripMenuItem.Checked = settings.DarkMode
|
StartForm.ToolStripMenuItemDarkMode.Checked = settings.DarkMode
|
||||||
Else
|
Else
|
||||||
' Settings file does not exist
|
' Settings file does not exist
|
||||||
' Create a new file with default settings 'False'
|
' Create a new file with default settings 'False'
|
||||||
@@ -28,84 +34,176 @@ Public Class SettingsManager
|
|||||||
File.WriteAllText(settingsFilePath, jsonOutput)
|
File.WriteAllText(settingsFilePath, jsonOutput)
|
||||||
|
|
||||||
Me.DarkMode = False
|
Me.DarkMode = False
|
||||||
StartForm.DarkModeToolStripMenuItem.Checked = False
|
StartForm.ToolStripMenuItemDarkMode.Checked = False
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
' Toggle Dark mode
|
''' <summary>
|
||||||
|
''' Toggles the Dark Mode setting on or off based on the provided parameter.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="enabled">A Boolean indicating if Dark Mode should be enabled or not.</param>
|
||||||
Public Sub ToggleDarkMode(enabled As Boolean)
|
Public Sub ToggleDarkMode(enabled As Boolean)
|
||||||
Dim json As String = File.ReadAllText(settingsFilePath)
|
Dim json As String = File.ReadAllText(settingsFilePath)
|
||||||
Dim options As New JsonSerializerOptions With {.PropertyNameCaseInsensitive = True}
|
Dim options As New JsonSerializerOptions With {.PropertyNameCaseInsensitive = True}
|
||||||
Dim settings As SettingsManager = Text.Json.JsonSerializer.Deserialize(Of SettingsManager)(json, options)
|
Dim settings As SettingsManager = JsonSerializer.Deserialize(Of SettingsManager)(json, options)
|
||||||
settings.DarkMode = enabled
|
settings.DarkMode = enabled
|
||||||
SaveSettings(settings)
|
SaveSettings(settings)
|
||||||
ApplyTheme()
|
ApplyTheme()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
' Save current settings to settings.json
|
''' Saves the provided settings to the 'settings.json' file.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="settings">An instance of the SettingsManager containing the configurations to be saved.</param>
|
||||||
Private Sub SaveSettings(settings)
|
Private Sub SaveSettings(settings)
|
||||||
Dim jsonOutput = Text.Json.JsonSerializer.Serialize(settings)
|
Dim jsonOutput = JsonSerializer.Serialize(settings)
|
||||||
File.WriteAllText(settingsFilePath, jsonOutput)
|
File.WriteAllText(settingsFilePath, jsonOutput)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
' Apply theme
|
''' <summary>
|
||||||
|
''' Applies the visual theme based on the Dark Mode setting.
|
||||||
|
''' If Dark Mode is enabled, a dark theme is applied. If it's disabled, a light theme is set.
|
||||||
|
''' </summary>
|
||||||
Public Sub ApplyTheme()
|
Public Sub ApplyTheme()
|
||||||
Dim DarkMode As Boolean = GetDarkMode()
|
Dim DarkMode As Boolean = GetDarkMode()
|
||||||
If DarkMode Then
|
If DarkMode Then
|
||||||
|
' Enable dark mode for the Main form
|
||||||
|
' Background colours (I know 'Colours'/'Colors'😆)
|
||||||
StartForm.BackColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.ToolsToolStripMenuTools.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.KeywordTextBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
|
||||||
StartForm.KeywordTextBox.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.SubredditTextBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
StartForm.SubredditTextBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
||||||
StartForm.SubredditTextBox.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
StartForm.KeywordTextBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
||||||
StartForm.LimitNumericUpDown.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
StartForm.LimitNumericUpDown.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
||||||
StartForm.LimitNumericUpDown.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.LimitNumericUpDown.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
StartForm.LimitNumericUpDown.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
||||||
StartForm.LimitNumericUpDown.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.ListingComboBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
StartForm.ListingComboBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
||||||
StartForm.ListingComboBox.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.TimeframeComboBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
StartForm.TimeframeComboBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
||||||
StartForm.TimeframeComboBox.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
' Foreground colours
|
||||||
StartForm.Label1.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
StartForm.KeywordTextBox.ForeColor = SystemColors.Control
|
||||||
StartForm.Label2.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
StartForm.SubredditTextBox.ForeColor = SystemColors.Control
|
||||||
StartForm.Label3.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
StartForm.LimitNumericUpDown.ForeColor = SystemColors.Control
|
||||||
StartForm.Label4.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
StartForm.LimitNumericUpDown.ForeColor = SystemColors.Control
|
||||||
StartForm.Label5.ForeColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
StartForm.ListingComboBox.ForeColor = SystemColors.Control
|
||||||
|
StartForm.TimeframeComboBox.ForeColor = SystemColors.Control
|
||||||
|
StartForm.LabelRPST.ForeColor = SystemColors.Control
|
||||||
|
StartForm.LabelKeyword.ForeColor = SystemColors.Control
|
||||||
|
StartForm.LabelSubreddit.ForeColor = SystemColors.Control
|
||||||
|
StartForm.LabelLimit.ForeColor = SystemColors.Control
|
||||||
|
StartForm.LabelListing.ForeColor = SystemColors.Control
|
||||||
|
StartForm.LabelTimeframe.ForeColor = SystemColors.Control
|
||||||
|
|
||||||
|
ResultsForm.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
|
||||||
|
' Enable dark mode on 'Right Click Menu' items
|
||||||
|
' Background colours
|
||||||
|
StartForm.ToolStripMenuItemDarkMode.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
StartForm.ToolStripMenuItemSavePosts.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
StartForm.ToolStripMenuItemtoJSON.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
StartForm.ToolStripMenuItemtoCSV.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
StartForm.ToolStripMenuItemAbout.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
StartForm.ToolStripMenuItemDeveloper.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
StartForm.ToolStripMenuItemCheckUpdates.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
StartForm.ToolStripMenuItemQuit.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
' Foreground colours
|
||||||
|
StartForm.ToolStripMenuItemDarkMode.ForeColor = SystemColors.Control
|
||||||
|
StartForm.ToolStripMenuItemSavePosts.ForeColor = SystemColors.Control
|
||||||
|
StartForm.ToolStripMenuItemtoJSON.ForeColor = SystemColors.Control
|
||||||
|
StartForm.ToolStripMenuItemtoCSV.ForeColor = SystemColors.Control
|
||||||
|
StartForm.ToolStripMenuItemAbout.ForeColor = SystemColors.Control
|
||||||
|
StartForm.ToolStripMenuItemDeveloper.ForeColor = SystemColors.Control
|
||||||
|
StartForm.ToolStripMenuItemCheckUpdates.ForeColor = SystemColors.Control
|
||||||
|
StartForm.ToolStripMenuItemQuit.ForeColor = SystemColors.Control
|
||||||
|
|
||||||
|
|
||||||
|
' Enable dark mode for the About box
|
||||||
|
' Background colours
|
||||||
|
AboutBox.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
AboutBox.LicenseRichTextBox.BackColor = ColorTranslator.FromHtml("#FF2E2E2E")
|
||||||
|
AboutBox.Panel1.BackColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
' Foreground colours
|
||||||
|
AboutBox.ForeColor = SystemColors.Control
|
||||||
|
AboutBox.LicenseRichTextBox.ForeColor = SystemColors.Control
|
||||||
|
AboutBox.LabelProgramName.ForeColor = SystemColors.Control
|
||||||
|
AboutBox.LabelProgramDescription.ForeColor = SystemColors.Control
|
||||||
|
AboutBox.LabelVersion.ForeColor = SystemColors.Control
|
||||||
|
|
||||||
|
' If dark mode is enabled, set the 'Dark Mode' text value to 'Light mode'
|
||||||
|
StartForm.ToolStripMenuItemDarkMode.Text = "Light Mode"
|
||||||
Else
|
Else
|
||||||
StartForm.BackColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
' Disable dark mode for the Main Form
|
||||||
StartForm.ToolsToolStripMenuTools.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
' Background colours
|
||||||
StartForm.KeywordTextBox.BackColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
StartForm.BackColor = Color.Gainsboro
|
||||||
|
StartForm.KeywordTextBox.BackColor = SystemColors.Control
|
||||||
|
StartForm.SubredditTextBox.BackColor = SystemColors.Control
|
||||||
|
StartForm.LimitNumericUpDown.BackColor = SystemColors.Control
|
||||||
|
StartForm.LimitNumericUpDown.BackColor = SystemColors.Control
|
||||||
|
StartForm.TimeframeComboBox.BackColor = SystemColors.Control
|
||||||
|
StartForm.ListingComboBox.BackColor = SystemColors.Control
|
||||||
|
' Foreground colours
|
||||||
StartForm.KeywordTextBox.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.KeywordTextBox.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.SubredditTextBox.BackColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.SubredditTextBox.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.SubredditTextBox.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.LimitNumericUpDown.BackColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.LimitNumericUpDown.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.LimitNumericUpDown.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.LimitNumericUpDown.BackColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.LimitNumericUpDown.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.LimitNumericUpDown.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.ListingComboBox.BackColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.ListingComboBox.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.ListingComboBox.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.TimeframeComboBox.BackColor = ColorTranslator.FromHtml("#FFFFFFFF")
|
|
||||||
StartForm.TimeframeComboBox.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.TimeframeComboBox.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.Label1.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.LabelRPST.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.Label2.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.LabelKeyword.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.Label3.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.LabelSubreddit.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.Label4.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.LabelLimit.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
StartForm.Label5.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
StartForm.LabelListing.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
StartForm.LabelTimeframe.ForeColor = ColorTranslator.FromHtml("#FF121212")
|
||||||
|
|
||||||
|
' Disable dark mode on 'Right Click Menu' items
|
||||||
|
' Background colours
|
||||||
|
StartForm.ToolStripMenuItemDarkMode.BackColor = Color.Gainsboro
|
||||||
|
StartForm.ToolStripMenuItemSavePosts.BackColor = Color.Gainsboro
|
||||||
|
StartForm.ToolStripMenuItemtoJSON.BackColor = Color.Gainsboro
|
||||||
|
StartForm.ToolStripMenuItemtoCSV.BackColor = Color.Gainsboro
|
||||||
|
StartForm.ToolStripMenuItemAbout.BackColor = Color.Gainsboro
|
||||||
|
StartForm.ToolStripMenuItemDeveloper.BackColor = Color.Gainsboro
|
||||||
|
StartForm.ToolStripMenuItemCheckUpdates.BackColor = Color.Gainsboro
|
||||||
|
StartForm.ToolStripMenuItemQuit.BackColor = Color.Gainsboro
|
||||||
|
' Foreground colours
|
||||||
|
StartForm.ToolStripMenuItemDarkMode.ForeColor = Color.Black
|
||||||
|
StartForm.ToolStripMenuItemSavePosts.ForeColor = Color.Black
|
||||||
|
StartForm.ToolStripMenuItemtoJSON.ForeColor = Color.Black
|
||||||
|
StartForm.ToolStripMenuItemtoCSV.ForeColor = Color.Black
|
||||||
|
StartForm.ToolStripMenuItemAbout.ForeColor = Color.Black
|
||||||
|
StartForm.ToolStripMenuItemDeveloper.ForeColor = Color.Black
|
||||||
|
StartForm.ToolStripMenuItemCheckUpdates.ForeColor = Color.Black
|
||||||
|
StartForm.ToolStripMenuItemQuit.ForeColor = Color.Black
|
||||||
|
|
||||||
|
' Disable dark mode for the About box
|
||||||
|
' Background colours
|
||||||
|
AboutBox.BackColor = Color.Gainsboro
|
||||||
|
AboutBox.ForeColor = SystemColors.WindowText
|
||||||
|
AboutBox.LicenseRichTextBox.BackColor = SystemColors.Control
|
||||||
|
AboutBox.LicenseRichTextBox.ForeColor = SystemColors.WindowText
|
||||||
|
AboutBox.Panel1.BackColor = Color.Gainsboro
|
||||||
|
' Foreground colours
|
||||||
|
AboutBox.Panel1.ForeColor = SystemColors.WindowText
|
||||||
|
AboutBox.LabelProgramName.ForeColor = SystemColors.WindowText
|
||||||
|
AboutBox.LabelProgramDescription.ForeColor = SystemColors.WindowText
|
||||||
|
AboutBox.LabelVersion.ForeColor = SystemColors.WindowText
|
||||||
|
|
||||||
|
' If dark mode is disabled, set the 'Light Mode' text value to 'Dark Mode'
|
||||||
|
StartForm.ToolStripMenuItemDarkMode.Text = "Dark Mode"
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
' Get dark mode state from settings.json's key 'DarkMode'
|
|
||||||
|
''' <summary>
|
||||||
|
''' Retrieves the Dark Mode setting value from 'settings.json'.
|
||||||
|
''' If the settings file doesn't exist, defaults to returning 'False' (Dark Mode off).
|
||||||
|
''' </summary>
|
||||||
|
''' <returns>A Boolean indicating if Dark Mode is enabled or not.</returns>
|
||||||
Private Function GetDarkMode() As Boolean
|
Private Function GetDarkMode() As Boolean
|
||||||
If File.Exists(settingsFilePath) Then
|
If File.Exists(settingsFilePath) Then
|
||||||
Dim json As String = File.ReadAllText(settingsFilePath)
|
Dim json As String = File.ReadAllText(settingsFilePath)
|
||||||
Dim settings As JObject = JObject.Parse(json)
|
Dim settings As JObject = JObject.Parse(json)
|
||||||
Return settings("DarkMode").ToObject(Of Boolean)()
|
Return settings(NameOf(DarkMode)).ToObject(Of Boolean)()
|
||||||
Else
|
Else
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
382
RPST GUI/RPST/StartForm.Designer.vb
generated
382
RPST GUI/RPST/StartForm.Designer.vb
generated
@@ -26,38 +26,36 @@ Partial Class StartForm
|
|||||||
Dim resources As ComponentModel.ComponentResourceManager = New ComponentModel.ComponentResourceManager(GetType(StartForm))
|
Dim resources As ComponentModel.ComponentResourceManager = New ComponentModel.ComponentResourceManager(GetType(StartForm))
|
||||||
KeywordTextBox = New TextBox()
|
KeywordTextBox = New TextBox()
|
||||||
SubredditTextBox = New TextBox()
|
SubredditTextBox = New TextBox()
|
||||||
ScrapeButton = New Button()
|
ButtonScrape = New Button()
|
||||||
TimeframeComboBox = New ComboBox()
|
TimeframeComboBox = New ComboBox()
|
||||||
ListingComboBox = New ComboBox()
|
ListingComboBox = New ComboBox()
|
||||||
Label1 = New Label()
|
LabelKeyword = New Label()
|
||||||
Label2 = New Label()
|
LabelSubreddit = New Label()
|
||||||
Label3 = New Label()
|
LabelLimit = New Label()
|
||||||
Label4 = New Label()
|
LabelListing = New Label()
|
||||||
Label5 = New Label()
|
LabelTimeframe = New Label()
|
||||||
ContextMenuStrip1 = New ContextMenuStrip(components)
|
ContextMenuStripRightClick = New ContextMenuStrip(components)
|
||||||
SaveResultsStripMenuItem = New ToolStripMenuItem()
|
ToolStripMenuItemDarkMode = New ToolStripMenuItem()
|
||||||
JSONToolStripMenuItem = New ToolStripMenuItem()
|
ToolStripMenuItemSavePosts = New ToolStripMenuItem()
|
||||||
CSVToolStripMenuItem = New ToolStripMenuItem()
|
ToolStripMenuItemtoJSON = New ToolStripMenuItem()
|
||||||
DarkModeToolStripMenuItem = New ToolStripMenuItem()
|
ToolStripMenuItemtoCSV = New ToolStripMenuItem()
|
||||||
FileMenuStrip = New MenuStrip()
|
ToolStripMenuItemAbout = New ToolStripMenuItem()
|
||||||
ToolsToolStripMenuTools = New ToolStripMenuItem()
|
ToolStripMenuItemDeveloper = New ToolStripMenuItem()
|
||||||
AboutToolStripMenuItem = New ToolStripMenuItem()
|
ToolStripMenuItemCheckUpdates = New ToolStripMenuItem()
|
||||||
DeveloperToolStripMenuItem = New ToolStripMenuItem()
|
ToolStripMenuItemQuit = New ToolStripMenuItem()
|
||||||
CheckUpdatesToolStripMenuItem = New ToolStripMenuItem()
|
|
||||||
ToolStripSeparator2 = New ToolStripSeparator()
|
|
||||||
QuitToolStripMenuItem = New ToolStripMenuItem()
|
|
||||||
LimitNumericUpDown = New NumericUpDown()
|
LimitNumericUpDown = New NumericUpDown()
|
||||||
ToolTip1 = New ToolTip(components)
|
PictureBoxLogo = New PictureBox()
|
||||||
ContextMenuStrip1.SuspendLayout()
|
LabelRPST = New Label()
|
||||||
FileMenuStrip.SuspendLayout()
|
ContextMenuStripRightClick.SuspendLayout()
|
||||||
CType(LimitNumericUpDown, ComponentModel.ISupportInitialize).BeginInit()
|
CType(LimitNumericUpDown, ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(PictureBoxLogo, ComponentModel.ISupportInitialize).BeginInit()
|
||||||
SuspendLayout()
|
SuspendLayout()
|
||||||
'
|
'
|
||||||
' KeywordTextBox
|
' KeywordTextBox
|
||||||
'
|
'
|
||||||
KeywordTextBox.BackColor = SystemColors.Window
|
KeywordTextBox.BackColor = SystemColors.Window
|
||||||
KeywordTextBox.ForeColor = SystemColors.WindowText
|
KeywordTextBox.ForeColor = SystemColors.WindowText
|
||||||
KeywordTextBox.Location = New Point(89, 60)
|
KeywordTextBox.Location = New Point(159, 75)
|
||||||
KeywordTextBox.Name = "KeywordTextBox"
|
KeywordTextBox.Name = "KeywordTextBox"
|
||||||
KeywordTextBox.PlaceholderText = "Keyword"
|
KeywordTextBox.PlaceholderText = "Keyword"
|
||||||
KeywordTextBox.Size = New Size(100, 23)
|
KeywordTextBox.Size = New Size(100, 23)
|
||||||
@@ -65,26 +63,26 @@ Partial Class StartForm
|
|||||||
'
|
'
|
||||||
' SubredditTextBox
|
' SubredditTextBox
|
||||||
'
|
'
|
||||||
SubredditTextBox.Location = New Point(89, 92)
|
SubredditTextBox.Location = New Point(159, 106)
|
||||||
SubredditTextBox.Name = "SubredditTextBox"
|
SubredditTextBox.Name = "SubredditTextBox"
|
||||||
SubredditTextBox.PlaceholderText = "Subreddit"
|
SubredditTextBox.PlaceholderText = "Subreddit"
|
||||||
SubredditTextBox.Size = New Size(100, 23)
|
SubredditTextBox.Size = New Size(100, 23)
|
||||||
SubredditTextBox.TabIndex = 4
|
SubredditTextBox.TabIndex = 4
|
||||||
'
|
'
|
||||||
' ScrapeButton
|
' ButtonScrape
|
||||||
'
|
'
|
||||||
ScrapeButton.Location = New Point(257, 191)
|
ButtonScrape.Location = New Point(208, 29)
|
||||||
ScrapeButton.Name = "ScrapeButton"
|
ButtonScrape.Name = "ButtonScrape"
|
||||||
ScrapeButton.Size = New Size(76, 28)
|
ButtonScrape.Size = New Size(51, 28)
|
||||||
ScrapeButton.TabIndex = 6
|
ButtonScrape.TabIndex = 6
|
||||||
ScrapeButton.Text = "Scrape"
|
ButtonScrape.Text = "Scrape"
|
||||||
ScrapeButton.UseVisualStyleBackColor = True
|
ButtonScrape.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
' TimeframeComboBox
|
' TimeframeComboBox
|
||||||
'
|
'
|
||||||
TimeframeComboBox.FormattingEnabled = True
|
TimeframeComboBox.FormattingEnabled = True
|
||||||
TimeframeComboBox.Items.AddRange(New Object() {"Hour", "Day", "Week", "Month", "Year"})
|
TimeframeComboBox.Items.AddRange(New Object() {"Hour", "Day", "Week", "Month", "Year"})
|
||||||
TimeframeComboBox.Location = New Point(89, 191)
|
TimeframeComboBox.Location = New Point(159, 200)
|
||||||
TimeframeComboBox.Name = "TimeframeComboBox"
|
TimeframeComboBox.Name = "TimeframeComboBox"
|
||||||
TimeframeComboBox.Size = New Size(100, 23)
|
TimeframeComboBox.Size = New Size(100, 23)
|
||||||
TimeframeComboBox.TabIndex = 8
|
TimeframeComboBox.TabIndex = 8
|
||||||
@@ -94,168 +92,145 @@ Partial Class StartForm
|
|||||||
'
|
'
|
||||||
ListingComboBox.FormattingEnabled = True
|
ListingComboBox.FormattingEnabled = True
|
||||||
ListingComboBox.Items.AddRange(New Object() {"Controversial", "Hot", "Best", "New", "Rising"})
|
ListingComboBox.Items.AddRange(New Object() {"Controversial", "Hot", "Best", "New", "Rising"})
|
||||||
ListingComboBox.Location = New Point(89, 157)
|
ListingComboBox.Location = New Point(159, 168)
|
||||||
ListingComboBox.Name = "ListingComboBox"
|
ListingComboBox.Name = "ListingComboBox"
|
||||||
ListingComboBox.Size = New Size(100, 23)
|
ListingComboBox.Size = New Size(100, 23)
|
||||||
ListingComboBox.TabIndex = 9
|
ListingComboBox.TabIndex = 9
|
||||||
ListingComboBox.Text = "Top"
|
ListingComboBox.Text = "Top"
|
||||||
'
|
'
|
||||||
' Label1
|
' LabelKeyword
|
||||||
'
|
'
|
||||||
Label1.AutoEllipsis = True
|
LabelKeyword.AutoEllipsis = True
|
||||||
Label1.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Underline, GraphicsUnit.Point)
|
LabelKeyword.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold Or FontStyle.Underline, GraphicsUnit.Point)
|
||||||
Label1.ForeColor = Color.Black
|
LabelKeyword.ForeColor = Color.Black
|
||||||
Label1.Location = New Point(12, 60)
|
LabelKeyword.Location = New Point(19, 78)
|
||||||
Label1.Name = "Label1"
|
LabelKeyword.Name = "LabelKeyword"
|
||||||
Label1.Size = New Size(56, 23)
|
LabelKeyword.Size = New Size(71, 20)
|
||||||
Label1.TabIndex = 10
|
LabelKeyword.TabIndex = 10
|
||||||
Label1.Text = "Keyword"
|
LabelKeyword.Text = "Keyword:"
|
||||||
'
|
'
|
||||||
' Label2
|
' LabelSubreddit
|
||||||
'
|
'
|
||||||
Label2.AutoEllipsis = True
|
LabelSubreddit.AutoEllipsis = True
|
||||||
Label2.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Underline, GraphicsUnit.Point)
|
LabelSubreddit.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold Or FontStyle.Underline, GraphicsUnit.Point)
|
||||||
Label2.ForeColor = Color.Black
|
LabelSubreddit.ForeColor = Color.Black
|
||||||
Label2.Location = New Point(12, 92)
|
LabelSubreddit.Location = New Point(19, 109)
|
||||||
Label2.Name = "Label2"
|
LabelSubreddit.Name = "LabelSubreddit"
|
||||||
Label2.Size = New Size(63, 23)
|
LabelSubreddit.Size = New Size(71, 23)
|
||||||
Label2.TabIndex = 11
|
LabelSubreddit.TabIndex = 11
|
||||||
Label2.Text = "Subreddit"
|
LabelSubreddit.Text = "Subreddit:"
|
||||||
'
|
'
|
||||||
' Label3
|
' LabelLimit
|
||||||
'
|
'
|
||||||
Label3.AutoEllipsis = True
|
LabelLimit.AutoEllipsis = True
|
||||||
Label3.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold Or FontStyle.Underline, GraphicsUnit.Point)
|
LabelLimit.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold Or FontStyle.Underline, GraphicsUnit.Point)
|
||||||
Label3.ForeColor = Color.Black
|
LabelLimit.ForeColor = Color.Black
|
||||||
Label3.Location = New Point(12, 125)
|
LabelLimit.Location = New Point(19, 137)
|
||||||
Label3.Name = "Label3"
|
LabelLimit.Name = "LabelLimit"
|
||||||
Label3.Size = New Size(56, 23)
|
LabelLimit.Size = New Size(56, 23)
|
||||||
Label3.TabIndex = 12
|
LabelLimit.TabIndex = 12
|
||||||
Label3.Text = "Limit"
|
LabelLimit.Text = "Limit:"
|
||||||
'
|
'
|
||||||
' Label4
|
' LabelListing
|
||||||
'
|
'
|
||||||
Label4.AutoEllipsis = True
|
LabelListing.AutoEllipsis = True
|
||||||
Label4.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold Or FontStyle.Underline, GraphicsUnit.Point)
|
LabelListing.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold Or FontStyle.Underline, GraphicsUnit.Point)
|
||||||
Label4.ForeColor = Color.Black
|
LabelListing.ForeColor = Color.Black
|
||||||
Label4.Location = New Point(12, 157)
|
LabelListing.Location = New Point(19, 168)
|
||||||
Label4.Name = "Label4"
|
LabelListing.Name = "LabelListing"
|
||||||
Label4.Size = New Size(56, 23)
|
LabelListing.Size = New Size(56, 23)
|
||||||
Label4.TabIndex = 13
|
LabelListing.TabIndex = 13
|
||||||
Label4.Text = "Listing"
|
LabelListing.Text = "Listing:"
|
||||||
'
|
'
|
||||||
' Label5
|
' LabelTimeframe
|
||||||
'
|
'
|
||||||
Label5.AutoEllipsis = True
|
LabelTimeframe.AutoEllipsis = True
|
||||||
Label5.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold Or FontStyle.Underline, GraphicsUnit.Point)
|
LabelTimeframe.Font = New Font("Segoe UI Semibold", 9F, FontStyle.Bold Or FontStyle.Underline, GraphicsUnit.Point)
|
||||||
Label5.ForeColor = Color.Black
|
LabelTimeframe.ForeColor = Color.Black
|
||||||
Label5.Location = New Point(12, 191)
|
LabelTimeframe.Location = New Point(19, 200)
|
||||||
Label5.Name = "Label5"
|
LabelTimeframe.Name = "LabelTimeframe"
|
||||||
Label5.Size = New Size(71, 23)
|
LabelTimeframe.Size = New Size(81, 23)
|
||||||
Label5.TabIndex = 14
|
LabelTimeframe.TabIndex = 14
|
||||||
Label5.Text = "Timeframe"
|
LabelTimeframe.Text = "Timeframe:"
|
||||||
'
|
'
|
||||||
' ContextMenuStrip1
|
' ContextMenuStripRightClick
|
||||||
'
|
'
|
||||||
ContextMenuStrip1.Items.AddRange(New ToolStripItem() {SaveResultsStripMenuItem, DarkModeToolStripMenuItem})
|
ContextMenuStripRightClick.Items.AddRange(New ToolStripItem() {ToolStripMenuItemDarkMode, ToolStripMenuItemSavePosts, ToolStripMenuItemAbout, ToolStripMenuItemDeveloper, ToolStripMenuItemCheckUpdates, ToolStripMenuItemQuit})
|
||||||
ContextMenuStrip1.Name = "ContextMenuStrip1"
|
ContextMenuStripRightClick.Name = "ContextMenuStrip1"
|
||||||
ContextMenuStrip1.Size = New Size(144, 48)
|
ContextMenuStripRightClick.Size = New Size(154, 136)
|
||||||
'
|
'
|
||||||
' SaveResultsStripMenuItem
|
' ToolStripMenuItemDarkMode
|
||||||
'
|
'
|
||||||
SaveResultsStripMenuItem.AutoToolTip = True
|
ToolStripMenuItemDarkMode.AutoToolTip = True
|
||||||
SaveResultsStripMenuItem.DropDownItems.AddRange(New ToolStripItem() {JSONToolStripMenuItem, CSVToolStripMenuItem})
|
ToolStripMenuItemDarkMode.CheckOnClick = True
|
||||||
SaveResultsStripMenuItem.Image = CType(resources.GetObject("SaveResultsStripMenuItem.Image"), Image)
|
ToolStripMenuItemDarkMode.Image = CType(resources.GetObject("ToolStripMenuItemDarkMode.Image"), Image)
|
||||||
SaveResultsStripMenuItem.Name = "SaveResultsStripMenuItem"
|
ToolStripMenuItemDarkMode.Name = "ToolStripMenuItemDarkMode"
|
||||||
SaveResultsStripMenuItem.Size = New Size(143, 22)
|
ToolStripMenuItemDarkMode.Size = New Size(153, 22)
|
||||||
SaveResultsStripMenuItem.Text = "Save posts to"
|
ToolStripMenuItemDarkMode.Text = "Dark Mode"
|
||||||
'
|
'
|
||||||
' JSONToolStripMenuItem
|
' ToolStripMenuItemSavePosts
|
||||||
'
|
'
|
||||||
JSONToolStripMenuItem.AutoToolTip = True
|
ToolStripMenuItemSavePosts.AutoToolTip = True
|
||||||
JSONToolStripMenuItem.CheckOnClick = True
|
ToolStripMenuItemSavePosts.DropDownItems.AddRange(New ToolStripItem() {ToolStripMenuItemtoJSON, ToolStripMenuItemtoCSV})
|
||||||
JSONToolStripMenuItem.Image = CType(resources.GetObject("JSONToolStripMenuItem.Image"), Image)
|
ToolStripMenuItemSavePosts.Image = CType(resources.GetObject("ToolStripMenuItemSavePosts.Image"), Image)
|
||||||
JSONToolStripMenuItem.Name = "JSONToolStripMenuItem"
|
ToolStripMenuItemSavePosts.Name = "ToolStripMenuItemSavePosts"
|
||||||
JSONToolStripMenuItem.Size = New Size(185, 22)
|
ToolStripMenuItemSavePosts.Size = New Size(153, 22)
|
||||||
JSONToolStripMenuItem.Text = "JSON"
|
ToolStripMenuItemSavePosts.Text = "Save Posts"
|
||||||
|
ToolStripMenuItemSavePosts.ToolTipText = "Save found posts to..."
|
||||||
'
|
'
|
||||||
' CSVToolStripMenuItem
|
' ToolStripMenuItemtoJSON
|
||||||
'
|
'
|
||||||
CSVToolStripMenuItem.AutoToolTip = True
|
ToolStripMenuItemtoJSON.AutoToolTip = True
|
||||||
CSVToolStripMenuItem.Enabled = False
|
ToolStripMenuItemtoJSON.CheckOnClick = True
|
||||||
CSVToolStripMenuItem.Image = CType(resources.GetObject("CSVToolStripMenuItem.Image"), Image)
|
ToolStripMenuItemtoJSON.Image = CType(resources.GetObject("ToolStripMenuItemtoJSON.Image"), Image)
|
||||||
CSVToolStripMenuItem.Name = "CSVToolStripMenuItem"
|
ToolStripMenuItemtoJSON.Name = "ToolStripMenuItemtoJSON"
|
||||||
CSVToolStripMenuItem.Size = New Size(185, 22)
|
ToolStripMenuItemtoJSON.Size = New Size(116, 22)
|
||||||
CSVToolStripMenuItem.Text = "CSV (coming soon...)"
|
ToolStripMenuItemtoJSON.Text = "to JSON"
|
||||||
'
|
'
|
||||||
' DarkModeToolStripMenuItem
|
' ToolStripMenuItemtoCSV
|
||||||
'
|
'
|
||||||
DarkModeToolStripMenuItem.AutoToolTip = True
|
ToolStripMenuItemtoCSV.AutoToolTip = True
|
||||||
DarkModeToolStripMenuItem.CheckOnClick = True
|
ToolStripMenuItemtoCSV.Enabled = False
|
||||||
DarkModeToolStripMenuItem.Image = CType(resources.GetObject("DarkModeToolStripMenuItem.Image"), Image)
|
ToolStripMenuItemtoCSV.Image = CType(resources.GetObject("ToolStripMenuItemtoCSV.Image"), Image)
|
||||||
DarkModeToolStripMenuItem.Name = "DarkModeToolStripMenuItem"
|
ToolStripMenuItemtoCSV.Name = "ToolStripMenuItemtoCSV"
|
||||||
DarkModeToolStripMenuItem.Size = New Size(143, 22)
|
ToolStripMenuItemtoCSV.Size = New Size(116, 22)
|
||||||
DarkModeToolStripMenuItem.Text = "Dark mode"
|
ToolStripMenuItemtoCSV.Text = "to CSV"
|
||||||
'
|
'
|
||||||
' FileMenuStrip
|
' ToolStripMenuItemAbout
|
||||||
'
|
'
|
||||||
FileMenuStrip.BackColor = Color.Transparent
|
ToolStripMenuItemAbout.AutoToolTip = True
|
||||||
FileMenuStrip.Items.AddRange(New ToolStripItem() {ToolsToolStripMenuTools})
|
ToolStripMenuItemAbout.Image = CType(resources.GetObject("ToolStripMenuItemAbout.Image"), Image)
|
||||||
FileMenuStrip.Location = New Point(0, 0)
|
ToolStripMenuItemAbout.Name = "ToolStripMenuItemAbout"
|
||||||
FileMenuStrip.Name = "FileMenuStrip"
|
ToolStripMenuItemAbout.Size = New Size(153, 22)
|
||||||
FileMenuStrip.Size = New Size(355, 24)
|
ToolStripMenuItemAbout.Text = "About"
|
||||||
FileMenuStrip.TabIndex = 0
|
|
||||||
FileMenuStrip.Text = "MenuStrip1"
|
|
||||||
'
|
'
|
||||||
' ToolsToolStripMenuTools
|
' ToolStripMenuItemDeveloper
|
||||||
'
|
'
|
||||||
ToolsToolStripMenuTools.DropDownItems.AddRange(New ToolStripItem() {AboutToolStripMenuItem, DeveloperToolStripMenuItem, CheckUpdatesToolStripMenuItem, ToolStripSeparator2, QuitToolStripMenuItem})
|
ToolStripMenuItemDeveloper.AutoToolTip = True
|
||||||
ToolsToolStripMenuTools.Font = New Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point)
|
ToolStripMenuItemDeveloper.Image = CType(resources.GetObject("ToolStripMenuItemDeveloper.Image"), Image)
|
||||||
ToolsToolStripMenuTools.ForeColor = Color.White
|
ToolStripMenuItemDeveloper.Name = "ToolStripMenuItemDeveloper"
|
||||||
ToolsToolStripMenuTools.Image = CType(resources.GetObject("ToolsToolStripMenuTools.Image"), Image)
|
ToolStripMenuItemDeveloper.Size = New Size(153, 22)
|
||||||
ToolsToolStripMenuTools.Name = "ToolsToolStripMenuTools"
|
ToolStripMenuItemDeveloper.Text = "Developer"
|
||||||
ToolsToolStripMenuTools.Size = New Size(28, 20)
|
|
||||||
'
|
'
|
||||||
' AboutToolStripMenuItem
|
' ToolStripMenuItemCheckUpdates
|
||||||
'
|
'
|
||||||
AboutToolStripMenuItem.AutoToolTip = True
|
ToolStripMenuItemCheckUpdates.AutoToolTip = True
|
||||||
AboutToolStripMenuItem.Image = CType(resources.GetObject("AboutToolStripMenuItem.Image"), Image)
|
ToolStripMenuItemCheckUpdates.Image = CType(resources.GetObject("ToolStripMenuItemCheckUpdates.Image"), Image)
|
||||||
AboutToolStripMenuItem.Name = "AboutToolStripMenuItem"
|
ToolStripMenuItemCheckUpdates.Name = "ToolStripMenuItemCheckUpdates"
|
||||||
AboutToolStripMenuItem.Size = New Size(180, 22)
|
ToolStripMenuItemCheckUpdates.Size = New Size(153, 22)
|
||||||
AboutToolStripMenuItem.Text = "About"
|
ToolStripMenuItemCheckUpdates.Text = "Check Updates"
|
||||||
'
|
'
|
||||||
' DeveloperToolStripMenuItem
|
' ToolStripMenuItemQuit
|
||||||
'
|
'
|
||||||
DeveloperToolStripMenuItem.AutoToolTip = True
|
ToolStripMenuItemQuit.AutoToolTip = True
|
||||||
DeveloperToolStripMenuItem.Image = CType(resources.GetObject("DeveloperToolStripMenuItem.Image"), Image)
|
ToolStripMenuItemQuit.Image = CType(resources.GetObject("ToolStripMenuItemQuit.Image"), Image)
|
||||||
DeveloperToolStripMenuItem.Name = "DeveloperToolStripMenuItem"
|
ToolStripMenuItemQuit.Name = "ToolStripMenuItemQuit"
|
||||||
DeveloperToolStripMenuItem.Size = New Size(180, 22)
|
ToolStripMenuItemQuit.Size = New Size(153, 22)
|
||||||
DeveloperToolStripMenuItem.Text = "Developer"
|
ToolStripMenuItemQuit.Text = "Quit"
|
||||||
'
|
|
||||||
' CheckUpdatesToolStripMenuItem
|
|
||||||
'
|
|
||||||
CheckUpdatesToolStripMenuItem.AutoToolTip = True
|
|
||||||
CheckUpdatesToolStripMenuItem.Image = CType(resources.GetObject("CheckUpdatesToolStripMenuItem.Image"), Image)
|
|
||||||
CheckUpdatesToolStripMenuItem.Name = "CheckUpdatesToolStripMenuItem"
|
|
||||||
CheckUpdatesToolStripMenuItem.Size = New Size(180, 22)
|
|
||||||
CheckUpdatesToolStripMenuItem.Text = "Check updates"
|
|
||||||
'
|
|
||||||
' ToolStripSeparator2
|
|
||||||
'
|
|
||||||
ToolStripSeparator2.Name = "ToolStripSeparator2"
|
|
||||||
ToolStripSeparator2.Size = New Size(177, 6)
|
|
||||||
'
|
|
||||||
' QuitToolStripMenuItem
|
|
||||||
'
|
|
||||||
QuitToolStripMenuItem.AutoToolTip = True
|
|
||||||
QuitToolStripMenuItem.Image = CType(resources.GetObject("QuitToolStripMenuItem.Image"), Image)
|
|
||||||
QuitToolStripMenuItem.Name = "QuitToolStripMenuItem"
|
|
||||||
QuitToolStripMenuItem.Size = New Size(180, 22)
|
|
||||||
QuitToolStripMenuItem.Text = "Quit"
|
|
||||||
'
|
'
|
||||||
' LimitNumericUpDown
|
' LimitNumericUpDown
|
||||||
'
|
'
|
||||||
LimitNumericUpDown.Location = New Point(89, 125)
|
LimitNumericUpDown.Location = New Point(159, 137)
|
||||||
LimitNumericUpDown.Minimum = New Decimal(New Integer() {5, 0, 0, 0})
|
LimitNumericUpDown.Minimum = New Decimal(New Integer() {5, 0, 0, 0})
|
||||||
LimitNumericUpDown.Name = "LimitNumericUpDown"
|
LimitNumericUpDown.Name = "LimitNumericUpDown"
|
||||||
LimitNumericUpDown.ReadOnly = True
|
LimitNumericUpDown.ReadOnly = True
|
||||||
@@ -263,62 +238,81 @@ Partial Class StartForm
|
|||||||
LimitNumericUpDown.TabIndex = 15
|
LimitNumericUpDown.TabIndex = 15
|
||||||
LimitNumericUpDown.Value = New Decimal(New Integer() {10, 0, 0, 0})
|
LimitNumericUpDown.Value = New Decimal(New Integer() {10, 0, 0, 0})
|
||||||
'
|
'
|
||||||
|
' PictureBoxLogo
|
||||||
|
'
|
||||||
|
PictureBoxLogo.BackColor = Color.Transparent
|
||||||
|
PictureBoxLogo.Image = CType(resources.GetObject("PictureBoxLogo.Image"), Image)
|
||||||
|
PictureBoxLogo.Location = New Point(19, 12)
|
||||||
|
PictureBoxLogo.Name = "PictureBoxLogo"
|
||||||
|
PictureBoxLogo.Size = New Size(41, 45)
|
||||||
|
PictureBoxLogo.SizeMode = PictureBoxSizeMode.StretchImage
|
||||||
|
PictureBoxLogo.TabIndex = 17
|
||||||
|
PictureBoxLogo.TabStop = False
|
||||||
|
'
|
||||||
|
' LabelRPST
|
||||||
|
'
|
||||||
|
LabelRPST.AutoSize = True
|
||||||
|
LabelRPST.BackColor = Color.Transparent
|
||||||
|
LabelRPST.Font = New Font("Ink Free", 9F, FontStyle.Regular, GraphicsUnit.Point)
|
||||||
|
LabelRPST.Location = New Point(50, 51)
|
||||||
|
LabelRPST.Name = "LabelRPST"
|
||||||
|
LabelRPST.Size = New Size(36, 15)
|
||||||
|
LabelRPST.TabIndex = 18
|
||||||
|
LabelRPST.Text = "RPST"
|
||||||
|
'
|
||||||
' StartForm
|
' StartForm
|
||||||
'
|
'
|
||||||
AutoScaleDimensions = New SizeF(7F, 15F)
|
AutoScaleDimensions = New SizeF(7F, 15F)
|
||||||
AutoScaleMode = AutoScaleMode.Font
|
AutoScaleMode = AutoScaleMode.Font
|
||||||
BackColor = Color.White
|
BackColor = SystemColors.Control
|
||||||
ClientSize = New Size(355, 255)
|
ClientSize = New Size(281, 244)
|
||||||
ContextMenuStrip = ContextMenuStrip1
|
ContextMenuStrip = ContextMenuStripRightClick
|
||||||
Controls.Add(LimitNumericUpDown)
|
Controls.Add(LabelRPST)
|
||||||
Controls.Add(FileMenuStrip)
|
Controls.Add(PictureBoxLogo)
|
||||||
Controls.Add(Label5)
|
|
||||||
Controls.Add(Label4)
|
|
||||||
Controls.Add(Label3)
|
|
||||||
Controls.Add(Label2)
|
|
||||||
Controls.Add(Label1)
|
|
||||||
Controls.Add(ListingComboBox)
|
|
||||||
Controls.Add(TimeframeComboBox)
|
Controls.Add(TimeframeComboBox)
|
||||||
Controls.Add(SubredditTextBox)
|
|
||||||
Controls.Add(ScrapeButton)
|
|
||||||
Controls.Add(KeywordTextBox)
|
Controls.Add(KeywordTextBox)
|
||||||
|
Controls.Add(LabelTimeframe)
|
||||||
|
Controls.Add(LabelKeyword)
|
||||||
|
Controls.Add(ListingComboBox)
|
||||||
|
Controls.Add(LimitNumericUpDown)
|
||||||
|
Controls.Add(LabelListing)
|
||||||
|
Controls.Add(ButtonScrape)
|
||||||
|
Controls.Add(LabelLimit)
|
||||||
|
Controls.Add(LabelSubreddit)
|
||||||
|
Controls.Add(SubredditTextBox)
|
||||||
FormBorderStyle = FormBorderStyle.FixedSingle
|
FormBorderStyle = FormBorderStyle.FixedSingle
|
||||||
Icon = CType(resources.GetObject("$this.Icon"), Icon)
|
Icon = CType(resources.GetObject("$this.Icon"), Icon)
|
||||||
MainMenuStrip = FileMenuStrip
|
|
||||||
MaximizeBox = False
|
MaximizeBox = False
|
||||||
Name = "StartForm"
|
Name = "StartForm"
|
||||||
StartPosition = FormStartPosition.CenterScreen
|
StartPosition = FormStartPosition.CenterScreen
|
||||||
Text = "ProgramName ProgramVersion"
|
Text = "ProgramName ProgramVersion"
|
||||||
ContextMenuStrip1.ResumeLayout(False)
|
ContextMenuStripRightClick.ResumeLayout(False)
|
||||||
FileMenuStrip.ResumeLayout(False)
|
|
||||||
FileMenuStrip.PerformLayout()
|
|
||||||
CType(LimitNumericUpDown, ComponentModel.ISupportInitialize).EndInit()
|
CType(LimitNumericUpDown, ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(PictureBoxLogo, ComponentModel.ISupportInitialize).EndInit()
|
||||||
ResumeLayout(False)
|
ResumeLayout(False)
|
||||||
PerformLayout()
|
PerformLayout()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend WithEvents KeywordTextBox As TextBox
|
Friend WithEvents KeywordTextBox As TextBox
|
||||||
Friend WithEvents SubredditTextBox As TextBox
|
Friend WithEvents SubredditTextBox As TextBox
|
||||||
Friend WithEvents ScrapeButton As Button
|
Friend WithEvents ButtonScrape As Button
|
||||||
Friend WithEvents TimeframeComboBox As ComboBox
|
Friend WithEvents TimeframeComboBox As ComboBox
|
||||||
Friend WithEvents ListingComboBox As ComboBox
|
Friend WithEvents ListingComboBox As ComboBox
|
||||||
Friend WithEvents Label1 As Label
|
Friend WithEvents LabelKeyword As Label
|
||||||
Friend WithEvents Label2 As Label
|
Friend WithEvents LabelSubreddit As Label
|
||||||
Friend WithEvents Label3 As Label
|
Friend WithEvents LabelLimit As Label
|
||||||
Friend WithEvents Label4 As Label
|
Friend WithEvents LabelListing As Label
|
||||||
Friend WithEvents Label5 As Label
|
Friend WithEvents LabelTimeframe As Label
|
||||||
Friend WithEvents ContextMenuStrip1 As ContextMenuStrip
|
Friend WithEvents ContextMenuStripRightClick As ContextMenuStrip
|
||||||
Friend WithEvents FileMenuStrip As MenuStrip
|
Friend WithEvents ToolStripMenuItemSavePosts As ToolStripMenuItem
|
||||||
Friend WithEvents ToolsToolStripMenuTools As ToolStripMenuItem
|
Friend WithEvents ToolStripMenuItemtoJSON As ToolStripMenuItem
|
||||||
Friend WithEvents AboutToolStripMenuItem As ToolStripMenuItem
|
Friend WithEvents ToolStripMenuItemtoCSV As ToolStripMenuItem
|
||||||
Friend WithEvents DeveloperToolStripMenuItem As ToolStripMenuItem
|
|
||||||
Friend WithEvents ToolStripSeparator2 As ToolStripSeparator
|
|
||||||
Friend WithEvents QuitToolStripMenuItem As ToolStripMenuItem
|
|
||||||
Friend WithEvents SaveResultsStripMenuItem As ToolStripMenuItem
|
|
||||||
Friend WithEvents CheckUpdatesToolStripMenuItem As ToolStripMenuItem
|
|
||||||
Friend WithEvents JSONToolStripMenuItem As ToolStripMenuItem
|
|
||||||
Friend WithEvents CSVToolStripMenuItem As ToolStripMenuItem
|
|
||||||
Friend WithEvents LimitNumericUpDown As NumericUpDown
|
Friend WithEvents LimitNumericUpDown As NumericUpDown
|
||||||
Friend WithEvents DarkModeToolStripMenuItem As ToolStripMenuItem
|
Friend WithEvents ToolStripMenuItemDarkMode As ToolStripMenuItem
|
||||||
Friend WithEvents ToolTip1 As ToolTip
|
Friend WithEvents ToolStripMenuItemAbout As ToolStripMenuItem
|
||||||
|
Friend WithEvents ToolStripMenuItemDeveloper As ToolStripMenuItem
|
||||||
|
Friend WithEvents ToolStripMenuItemCheckUpdates As ToolStripMenuItem
|
||||||
|
Friend WithEvents ToolStripMenuItemQuit As ToolStripMenuItem
|
||||||
|
Friend WithEvents PictureBoxLogo As PictureBox
|
||||||
|
Friend WithEvents LabelRPST As Label
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -13,8 +13,8 @@ Public Class StartForm
|
|||||||
''' </summary>
|
''' </summary>
|
||||||
''' <param name="sender">The sender of the event.</param>
|
''' <param name="sender">The sender of the event.</param>
|
||||||
''' <param name="e">The EventArgs instance containing the event data.</param>
|
''' <param name="e">The EventArgs instance containing the event data.</param>
|
||||||
Private Sub ScrapeButton_Click(sender As Object, e As EventArgs) Handles ScrapeButton.Click
|
Private Sub ButtonScrape_Click(sender As Object, e As EventArgs) Handles ButtonScrape.Click
|
||||||
Utilities.ProcessRedditPosts(JSONToolStripMenuItem)
|
Utilities.ProcessRedditPosts(ToolStripMenuItemtoJSON)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
@@ -29,67 +29,7 @@ Public Class StartForm
|
|||||||
settings.ToggleDarkMode(settings.DarkMode)
|
settings.ToggleDarkMode(settings.DarkMode)
|
||||||
Utilities.PathFinder()
|
Utilities.PathFinder()
|
||||||
Utilities.LogFirstTimeLaunch()
|
Utilities.LogFirstTimeLaunch()
|
||||||
Me.Text = My.Application.Info.AssemblyName
|
Me.Text = $"{My.Application.Info.AssemblyName} v{My.Application.Info.Version}"
|
||||||
End Sub
|
|
||||||
|
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Event handler for the 'About' menu item click.
|
|
||||||
''' It shows the 'About' dialog box.
|
|
||||||
''' </summary>
|
|
||||||
''' <param name="sender">The source of the event.</param>
|
|
||||||
''' <param name="e">An EventArgs that contains the event data.</param>
|
|
||||||
Private Sub AboutToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles AboutToolStripMenuItem.Click
|
|
||||||
AboutBox.ShowDialog()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Event handler for the 'Quit' menu item click.
|
|
||||||
''' It asks the user for confirmation and closes the program if the user agrees.
|
|
||||||
''' </summary>
|
|
||||||
''' <param name="sender">The source of the event.</param>
|
|
||||||
''' <param name="e">An EventArgs that contains the event data.</param>
|
|
||||||
Private Sub QuitToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles QuitToolStripMenuItem.Click
|
|
||||||
Dim result As DialogResult = MessageBox.Show("This will close the program, continue?", "Quit", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
|
||||||
If result = DialogResult.Yes Then
|
|
||||||
Me.Close()
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Event handler for the 'Developer' menu item click.
|
|
||||||
''' It shows the 'Developer' dialog box.
|
|
||||||
''' </summary>
|
|
||||||
''' <param name="sender">The source of the event.</param>
|
|
||||||
''' <param name="e">An EventArgs that contains the event data.</param>
|
|
||||||
Private Sub DeveloperToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles DeveloperToolStripMenuItem.Click
|
|
||||||
DeveloperForm.ShowDialog()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Event handler for the 'Check Updates' menu item click.
|
|
||||||
''' It checks for application updates and provides update information if a newer version is available.
|
|
||||||
''' </summary>
|
|
||||||
''' <param name="sender">The source of the event.</param>
|
|
||||||
''' <param name="e">An EventArgs that contains the event data.</param>
|
|
||||||
Private Sub CheckUpdatesToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles CheckUpdatesToolStripMenuItem.Click
|
|
||||||
|
|
||||||
Dim data As JObject = ApiHandler.CheckUpdates()
|
|
||||||
If data("tag_name").ToString = $"{My.Application.Info.Version}" Then
|
|
||||||
MessageBox.Show($"You're running the current version v{My.Application.Info.Version} of {My.Application.Info.ProductName}. Check again soon! :)", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information)
|
|
||||||
Else
|
|
||||||
Dim confirm As DialogResult = MessageBox.Show($"A new version v{data("tag_name")} of {My.Application.Info.ProductName} is available, would you like to get it?
|
|
||||||
|
|
||||||
What's new in v{data("tag_name")}?
|
|
||||||
{data("body")}
|
|
||||||
", "Update", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
|
||||||
If confirm = DialogResult.Yes Then
|
|
||||||
Shell($"cmd /c start https://github.com/bellingcat/reddit-post-scraping-tool/releases/tag/{data("tag_name")}")
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
@@ -99,7 +39,65 @@ What's new in v{data("tag_name")}?
|
|||||||
''' </summary>
|
''' </summary>
|
||||||
''' <param name="sender">The source of the event.</param>
|
''' <param name="sender">The source of the event.</param>
|
||||||
''' <param name="e">An EventArgs that contains the event data.</param>
|
''' <param name="e">An EventArgs that contains the event data.</param>
|
||||||
Private Sub DarkModeToolStripMenuItem_CheckedChanged(sender As Object, e As EventArgs) Handles DarkModeToolStripMenuItem.CheckedChanged
|
Private Sub DarkModeToolStripMenuItem_CheckedChanged(sender As Object, e As EventArgs) Handles ToolStripMenuItemDarkMode.CheckedChanged
|
||||||
settings.ToggleDarkMode(DarkModeToolStripMenuItem.Checked)
|
settings.ToggleDarkMode(ToolStripMenuItemDarkMode.Checked)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Event handler for the 'About' menu item click.
|
||||||
|
''' It shows the 'About' box.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="sender">The source of the event.</param>
|
||||||
|
''' <param name="e">An EventArgs that contains the event data.</param>
|
||||||
|
Private Sub ToolStripMenuItemAbout_Click(sender As Object, e As EventArgs) Handles ToolStripMenuItemAbout.Click
|
||||||
|
AboutBox.Show()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Event handler for the 'Developer' menu item click.
|
||||||
|
''' It shows the 'Developer' dialog box.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="sender">The source of the event.</param>
|
||||||
|
''' <param name="e">An EventArgs that contains the event data.</param>
|
||||||
|
Private Sub ToolStripMenuItemDeveloper_Click(sender As Object, e As EventArgs) Handles ToolStripMenuItemDeveloper.Click
|
||||||
|
DeveloperBox.ShowDialog()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Event handler for the 'Check Updates' menu item click.
|
||||||
|
''' It checks for application updates and provides update information if a newer version is available.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="sender">The source of the event.</param>
|
||||||
|
''' <param name="e">An EventArgs that contains the event data.</param>
|
||||||
|
Private Sub ToolStripMenuItemCheckUpdates_Click(sender As Object, e As EventArgs) Handles ToolStripMenuItemCheckUpdates.Click
|
||||||
|
Dim data As JObject = ApiHandler.CheckUpdates()
|
||||||
|
If data("tag_name").ToString = $"{My.Application.Info.Version}" Then
|
||||||
|
MessageBox.Show($"You're running the current version v{My.Application.Info.Version} of {My.Application.Info.ProductName}. Check again soon! :)", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information)
|
||||||
|
Else
|
||||||
|
Dim confirm As DialogResult = MessageBox.Show($"A new version v{data("tag_name")} of {My.Application.Info.ProductName} is available, would you like to get it?
|
||||||
|
|
||||||
|
{data("body")}
|
||||||
|
", "Update", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||||
|
If confirm = DialogResult.Yes Then
|
||||||
|
Shell($"cmd /c start {data("html_url")}")
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Event handler for the 'Quit' menu item click.
|
||||||
|
''' It asks the user for confirmation and closes the program if the user agrees.
|
||||||
|
''' </summary>
|
||||||
|
''' <param name="sender">The source of the event.</param>
|
||||||
|
''' <param name="e">An EventArgs that contains the event data.</param>
|
||||||
|
Private Sub ToolStripMenuItemQuit_Click(sender As Object, e As EventArgs) Handles ToolStripMenuItemQuit.Click
|
||||||
|
Dim result As DialogResult = MessageBox.Show("This will close the program, continue?", "Quit", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||||
|
If result = DialogResult.Yes Then
|
||||||
|
Me.Close()
|
||||||
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ Public Class Utilities
|
|||||||
|
|
||||||
If inputs.HasValue Then
|
If inputs.HasValue Then
|
||||||
' Initialize the DataGridView
|
' Initialize the DataGridView
|
||||||
DataGridViewHandler.AddColumn(PostsForm.DataGridViewPosts)
|
DataGridViewHandler.AddColumn(ResultsForm.DataGridViewResults)
|
||||||
|
|
||||||
' Fetch Reddit posts based on the inputs
|
' Fetch Reddit posts based on the inputs
|
||||||
Dim processor As New PostsProcessor()
|
Dim processor As New PostsProcessor()
|
||||||
@@ -29,17 +29,17 @@ Public Class Utilities
|
|||||||
For Each post In posts("data")("children")
|
For Each post In posts("data")("children")
|
||||||
totalPosts += 1
|
totalPosts += 1
|
||||||
' Check if the post contains the keyword
|
' Check if the post contains the keyword
|
||||||
If PostsProcessor.PostContainsKeyword(post, inputs.Value.Keyword.ToLower(System.Globalization.CultureInfo.InvariantCulture)) Then
|
If PostsProcessor.PostContainsKeyword(post, inputs.Value.Keyword.ToLower(Globalization.CultureInfo.InvariantCulture)) Then
|
||||||
' Add the post to the DataGridView
|
' Add the post to the DataGridView
|
||||||
DataGridViewHandler.AddRow(PostsForm.DataGridViewPosts, post, totalPosts)
|
DataGridViewHandler.AddRow(ResultsForm.DataGridViewResults, post, totalPosts)
|
||||||
PostsForm.Show()
|
ResultsForm.Show()
|
||||||
keywordFound = True
|
keywordFound = True
|
||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
' Check if the keyword was found in any posts
|
' Check if the keyword was found in any posts
|
||||||
If Not keywordFound Then
|
If Not keywordFound Then
|
||||||
MessageBox.Show($"Keyword `{inputs.Value.Keyword}` was not found in any of the " + posts("data")("children").Count.ToString(System.Globalization.CultureInfo.InvariantCulture) _
|
MessageBox.Show($"Keyword `{inputs.Value.Keyword}` was not found in any of the " + posts("data")("children").Count.ToString(Globalization.CultureInfo.InvariantCulture) _
|
||||||
+ $" {inputs.Value.Listing} posts from r/{inputs.Value.Subreddit}", "Not Found", MessageBoxButtons.OK, MessageBoxIcon.Warning)
|
+ $" {inputs.Value.Listing} posts from r/{inputs.Value.Subreddit}", "Not Found", MessageBoxButtons.OK, MessageBoxIcon.Warning)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -48,7 +48,6 @@ Public Class Utilities
|
|||||||
Utilities.SavePostsToJson(posts("data"))
|
Utilities.SavePostsToJson(posts("data"))
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
MessageBox.Show("Inputs cannot be empty. Please enter a keyword and a subreddit.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
|
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -88,25 +87,22 @@ Public Class Utilities
|
|||||||
Public Shared Function CollectInputs() As (Keyword As String, Subreddit As String, Listing As String, Limit As Integer, Timeframe As String)?
|
Public Shared Function CollectInputs() As (Keyword As String, Subreddit As String, Listing As String, Limit As Integer, Timeframe As String)?
|
||||||
Dim keyword As String = StartForm.KeywordTextBox.Text.Trim()
|
Dim keyword As String = StartForm.KeywordTextBox.Text.Trim()
|
||||||
Dim subreddit As String = StartForm.SubredditTextBox.Text.Trim()
|
Dim subreddit As String = StartForm.SubredditTextBox.Text.Trim()
|
||||||
' Convert the Keyword and Subreddit to lowercase using InvariantCulture
|
' Convert the Listing and Subreddit to lowercase using InvariantCulture
|
||||||
Dim listing As String = If(String.IsNullOrEmpty(StartForm.ListingComboBox.Text), "top", StartForm.ListingComboBox.Text.ToLower(System.Globalization.CultureInfo.InvariantCulture).Trim())
|
Dim listing As String = If(String.IsNullOrEmpty(StartForm.ListingComboBox.Text), "top", StartForm.ListingComboBox.Text.ToLower(Globalization.CultureInfo.InvariantCulture).Trim())
|
||||||
|
Dim timeframe As String = If(String.IsNullOrEmpty(StartForm.TimeframeComboBox.Text), "all", StartForm.TimeframeComboBox.Text.ToLower(Globalization.CultureInfo.InvariantCulture).Trim())
|
||||||
Dim limit As Integer = StartForm.LimitNumericUpDown.Value
|
Dim limit As Integer = StartForm.LimitNumericUpDown.Value
|
||||||
Dim timeframe As String = If(String.IsNullOrEmpty(StartForm.TimeframeComboBox.Text), "all", StartForm.TimeframeComboBox.Text.ToLower(System.Globalization.CultureInfo.InvariantCulture).Trim())
|
|
||||||
|
|
||||||
' Validate inputs
|
' Validate inputs
|
||||||
If String.IsNullOrEmpty(keyword) Then
|
If String.IsNullOrEmpty(keyword) AndAlso String.IsNullOrEmpty(subreddit) Then
|
||||||
MessageBox.Show("Keyword should not be empty", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning)
|
MessageBox.Show("Keyword and Subreddit fields should not be empty.", "Invalid Inputs", MessageBoxButtons.OK, MessageBoxIcon.Warning)
|
||||||
|
Return Nothing
|
||||||
|
ElseIf String.IsNullOrEmpty(keyword) Then
|
||||||
|
MessageBox.Show("Keyword field should not be empty.", "Invalid Input", MessageBoxButtons.OK, MessageBoxIcon.Warning)
|
||||||
|
Return Nothing
|
||||||
|
ElseIf String.IsNullOrEmpty(subreddit) Then
|
||||||
|
MessageBox.Show("Subreddit field should not be empty.", "Invalid Input", MessageBoxButtons.OK, MessageBoxIcon.Warning)
|
||||||
Return Nothing
|
Return Nothing
|
||||||
End If
|
End If
|
||||||
If String.IsNullOrEmpty(subreddit) Then
|
|
||||||
MessageBox.Show("Subreddit should not be empty", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning)
|
|
||||||
Return Nothing
|
|
||||||
End If
|
|
||||||
If limit > 100 Then
|
|
||||||
MessageBox.Show("Limit should not be over 100. Defaulting to 10", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning)
|
|
||||||
limit = 10
|
|
||||||
End If
|
|
||||||
|
|
||||||
Return (keyword, subreddit, listing, limit, timeframe)
|
Return (keyword, subreddit, listing, limit, timeframe)
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
@@ -174,7 +170,6 @@ First launched on: {DateTime.Now}"
|
|||||||
LicenseNotice()
|
LicenseNotice()
|
||||||
File.WriteAllText(filePath, textToWrite)
|
File.WriteAllText(filePath, textToWrite)
|
||||||
Else
|
Else
|
||||||
' DO NOTHING
|
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ packages = ["rpst"]
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "reddit-post-scraping-tool"
|
name = "reddit-post-scraping-tool"
|
||||||
version = "1.4.0.0"
|
version = "1.5.0.0"
|
||||||
description = "Given a subreddit name and a keyword, RPST returns all top (by default) posts that contain the specified keyword."
|
description = "Given a subreddit name and a keyword, RPST returns all top (by default) posts that contain the specified keyword."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ def run():
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
# Check for updates
|
# Check for updates
|
||||||
check_updates(version_tag="1.4.0.0")
|
check_updates(version_tag="1.5.0.0")
|
||||||
|
|
||||||
# Get posts with the provided/parsed arguments
|
# Get posts with the provided/parsed arguments
|
||||||
get_posts(arguments=arguments)
|
get_posts(arguments=arguments)
|
||||||
|
|||||||
Reference in New Issue
Block a user