/usr/share/perl5/TWatch.pm is in libtwatch-perl 0.0.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | package TWatch;
=head1 NAME
TWatch - track for links on tracker and download new torrents.
=cut
our $VERSION = '0.0.7';
use strict;
use warnings;
use utf8;
use TWatch::Config;
use TWatch::Project;
use TWatch::Watch;
=head1 CONSTRUCTOR AND MAIN
=cut
=head2 new
Main constructor
=cut
sub new
{
my ($class, %opts) = @_;
my %obj = %opts;
my $self = bless \%obj ,$class;
$self->load;
return $self;
}
=head2 run
Run execute downloads.
=cut
sub run
{
my ($self) = @_;
my @projects = $self->get;
notify(sprintf 'Total projects: %s', scalar @projects);
for my $project (@projects)
{
notify(sprintf
'Start project: %s (%s), last update %s',
$project->param('name'),
$project->param('url'),
$project->param('update') || 'Never');
notify(sprintf 'Watches: %d', scalar $project->watches);
$project->run
or warn sprintf 'Project "%s" aborted!', $project->param('name');
notify('Project complete');
}
}
=head1 PROJECT METHODS
=cut
=head2 load
Load projects from files. Return count of loaded projects.
=cut
sub load
{
my ($self) = @_;
# Get projects paths
my @pfiles = glob(config->get('Project'));
return unless @pfiles;
# Get completed path
my @cfiles = glob(config->get('Complete'));
# Get executed param
my $execute = config->get('execute');
notify(sprintf 'Execute param set. Run just "%s" project', $execute)
if $execute;
for my $pfile ( @pfiles )
{
# Get complete file by related file name
my ($pname) = $pfile =~ m~^.*/(.*?)$~;
my ($cfile) = grep {m~/$pname$~} @cfiles;
# If set --execute option, then skip project by filename
next if $execute and $pname ne $execute;
# Load project
my $project = TWatch::Project->new(file => $pfile, cfile => $cfile);
# Add in hash
$self->{project}{$project->param('name')} = $project;
}
return scalar keys %{$self->{project}};
}
=head2 get $name
Return project by $name. If $name not defined return a hash or sorted array.
=cut
sub get
{
my ($self, $name) = @_;
return sort {$a->param('order') <=> $b->param('order')}
values %{$self->{project}}
if ! defined $name and wantarray;
return $self->{project} if ! defined $name;
return $self->{project}{$name};
}
=head1 UNSUPPORTED OR JUST FOR TWATCH-GTK COMPATIBLE
=cut
=head2 delete_project $name
Delete project by $name.
=cut
sub delete_project
{
my ($self, $name) = @_;
# Get project
my $project = $self->get($name);
warn 'Can`t delete project: Project does not exists.',
return
unless $project;
# Delete project and unlink it`s files
$project->delete();
# Delete project from projects hash
delete $self->{project}{$name};
return 1;
}
=head2 add_project $new
Add $new project. $new must be TWatch::Project object. Function fail if project
this same name already exists.
=cut
sub add_project
{
my ($self, $new) = @_;
if( $self->get( $new->param('name') ) )
{
warn sprintf('Can`t add project "%s". This project already exists.',
$new->param('name'));
return;
}
$self->{project}{ $new->param('name') } = $new;
}
1;
=head1 REQUESTS & BUGS
Roman V. Nikolaev <rshadow@rambler.ru>
=head1 AUTHORS
Copyright (C) 2008 Roman V. Nikolaev <rshadow@rambler.ru>
=head1 LICENSE
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
=cut
|