InstagramPharo/Instagram/InstagramUrl.class.st

122 lines
2.4 KiB
Smalltalk
Raw Normal View History

"
I manage instagram URLs information.
InstagramUrl newURL: 'https://instagram.com/restOfURL'
"
Class {
2024-05-26 18:44:40 +00:00
#name : 'InstagramUrl',
#superclass : 'Object',
#instVars : [
'url',
'type'
],
2024-05-26 18:44:40 +00:00
#category : 'Instagram',
#package : 'Instagram'
}
2024-05-26 18:44:40 +00:00
{ #category : 'instance creation' }
InstagramUrl class >> newURL: url [
2024-01-30 17:50:17 +00:00
| instance |
instance := self new.
2024-01-30 17:50:17 +00:00
instance url: (instance urlCheck: url).
^ instance
]
2024-05-26 18:44:40 +00:00
{ #category : 'initialization' }
InstagramUrl >> initialize [
super initialize.
self url.
self type.
]
{ #category : 'testing' }
InstagramUrl >> isRootUrl [
| segments |
self type = 'root' ifFalse: [
segments := self url segments.
segments ifNotNil: [ segments isEmpty ifFalse: [ ^ segments first = $/ ]].
^ true
].
^ true
]
{ #category : 'testing' }
InstagramUrl >> isUserUrl [
| segments |
self type = 'user' ifFalse: [
segments := self url segments.
segments size = 1 ifFalse: [^ segments second = $/].
^ true
].
^ true
]
2024-05-26 18:44:40 +00:00
{ #category : 'opening' }
InstagramUrl >> openWithoutTracking [
WebBrowser openOn: self urlWithoutTracking
]
{ #category : 'initialization' }
InstagramUrl >> setTypeByUrl [
self isRootUrl ifTrue: [ type := 'root'. ^ self ].
self isUserUrl ifTrue: [ type := 'user'. ^ self ].
type := 'UndefinedType'.
^ self
]
{ #category : 'accessing' }
InstagramUrl >> type [
^ type
]
{ #category : 'accessing' }
InstagramUrl >> type: aType [
(self urlTypes includes: aType) ifTrue: [
type := aType.
^ self ].
UIManager default inform:
'" ' , aType , ' " it''s not a correct type. Setting automatic from url.'.
^ self setTypeByUrl
]
2024-05-26 18:44:40 +00:00
{ #category : 'accessing' }
InstagramUrl >> url [
^ url ifNil: [ url := 'https://instagram.com/' asUrl ]
]
2024-05-26 18:44:40 +00:00
{ #category : 'accessing' }
InstagramUrl >> url: anURLString [
| urlCheck |
(anURLString includesSubstring: 'instagram.com')
ifFalse: [ UIManager default inform: '" ', anURLString, ' " it''s not an instagram URL.'.
url := self url.
^ self].
urlCheck := anURLString asUrl.
urlCheck hasHost ifFalse: [ urlCheck host: urlCheck segments first.
urlCheck removeFirstPathSegment. ].
urlCheck hasScheme ifFalse: [ urlCheck scheme: 'https' ].
url := urlCheck
]
{ #category : 'accessing - data' }
InstagramUrl >> urlTypes [
"I have the collection of correct types."
^ { 'root' . 'user' }
2024-01-30 17:50:17 +00:00
]
2024-05-26 18:44:40 +00:00
{ #category : 'accessing' }
InstagramUrl >> urlWithoutTracking [
^ self url queryRemoveAll; asStringOrText
]