]> git.donarmstrong.com Git - debbugs.git/blob - lib/Debbugs/DB/ResultSet/BinVer.pm
Debbugs::DB::Util is now a component of Debbugs::DB
[debbugs.git] / lib / Debbugs / DB / ResultSet / BinVer.pm
1 # This module is part of debbugs, and is released
2 # under the terms of the GPL version 2, or any later version. See the
3 # file README and COPYING for more information.
4 # Copyright 2017 by Don Armstrong <don@donarmstrong.com>.
5 use utf8;
6 package Debbugs::DB::ResultSet::BinVer;
7
8 =head1 NAME
9
10 Debbugs::DB::ResultSet::BinVer - Source Version association
11
12 =head1 SYNOPSIS
13
14
15
16 =head1 DESCRIPTION
17
18
19
20 =cut
21
22 use strict;
23 use warnings;
24
25 use base 'DBIx::Class::ResultSet';
26
27 sub get_bin_ver_id {
28     my ($self,$bin_pkg_id,$bin_ver,$arch_id,$src_ver_id) = @_;
29     return $self->result_source->schema->
30         select_one(<<'SQL',
31 WITH ins AS (
32 INSERT INTO bin_ver (bin_pkg,src_ver,arch,ver)
33 VALUES (?,?,?,?) ON CONFLICT (bin_pkg,arch,ver) DO NOTHING RETURNING id
34 )
35 SELECT id FROM ins
36 UNION ALL
37 SELECT id FROM bin_ver WHERE bin_pkg = ? AND arch = ? AND ver = ?
38 LIMIT 1;
39 SQL
40                    $bin_pkg_id,$src_ver_id,
41                    $arch_id,$bin_ver,
42                    $bin_pkg_id,$arch_id,
43                    $bin_ver);
44 }
45
46 1;
47
48 __END__